diff --git a/.gitattributes b/.gitattributes index a6344aac8c09253b3b630fb776ae94478aa0275b..ee7a09cb49bb2e3d7144bcf5ba5190d2b88aea5d 100644 --- a/.gitattributes +++ b/.gitattributes @@ -33,3 +33,23 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text *.zip filter=lfs diff=lfs merge=lfs -text *.zst filter=lfs diff=lfs merge=lfs -text *tfevents* filter=lfs diff=lfs merge=lfs -text +hw/hw1/data/cifar10_data.mat filter=lfs diff=lfs merge=lfs -text +hw/hw1/data/mnist_data.mat filter=lfs diff=lfs merge=lfs -text +hw/hw1/data/spam_data.mat filter=lfs diff=lfs merge=lfs -text +hw/hw1/models/cifar10.sav filter=lfs diff=lfs merge=lfs -text +hw/hw1/models/mnist.sav filter=lfs diff=lfs merge=lfs -text +hw/hw3/data/mnist_data.mat filter=lfs diff=lfs merge=lfs -text +hw/hw3/data/spam_data.mat filter=lfs diff=lfs merge=lfs -text +hw/hw4/models/wine_model.sav filter=lfs diff=lfs merge=lfs -text +hw/hw5/data/spam_data.mat filter=lfs diff=lfs merge=lfs -text +hw/hw5/models/spam_model.sav filter=lfs diff=lfs merge=lfs -text +hw/hw5/models/titanic_model.sav filter=lfs diff=lfs merge=lfs -text +hw/hw6/data/cifar-10-batches-py/data_batch_1 filter=lfs diff=lfs merge=lfs -text +hw/hw6/data/cifar-10-batches-py/data_batch_2 filter=lfs diff=lfs merge=lfs -text +hw/hw6/data/cifar-10-batches-py/data_batch_3 filter=lfs diff=lfs merge=lfs -text +hw/hw6/data/cifar-10-batches-py/data_batch_4 filter=lfs diff=lfs merge=lfs -text +hw/hw6/data/cifar-10-batches-py/data_batch_5 filter=lfs diff=lfs merge=lfs -text +hw/hw6/data/cifar-10-batches-py/test_batch filter=lfs diff=lfs merge=lfs -text +hw/hw6/data/FashionMNIST/raw/t10k-images-idx3-ubyte filter=lfs diff=lfs merge=lfs -text +hw/hw6/data/FashionMNIST/raw/train-images-idx3-ubyte filter=lfs diff=lfs merge=lfs -text +hw/hw7/data/movie_train.mat filter=lfs diff=lfs merge=lfs -text diff --git a/hw/hw1/data/cifar10_X_test.npy b/hw/hw1/data/cifar10_X_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..b11620ba53a95917c5f68f40fe613c2b3fafc5b3 --- /dev/null +++ b/hw/hw1/data/cifar10_X_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3cf5560378426172380b1edbee0e3d861b31333379d51a29725d3b24ed906bf4 +size 40960128 diff --git a/hw/hw1/data/cifar10_X_train.npy b/hw/hw1/data/cifar10_X_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..61b3b17f68143461f4fab209e82e60f41d75984b --- /dev/null +++ b/hw/hw1/data/cifar10_X_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:25b01319212fb964acc52e838db4e953407686b01109fe2c9933e9d7edf3c515 +size 204800128 diff --git a/hw/hw1/data/cifar10_data.mat b/hw/hw1/data/cifar10_data.mat new file mode 100644 index 0000000000000000000000000000000000000000..902191de023f0c27db5d5810073ec05b8933d575 --- /dev/null +++ b/hw/hw1/data/cifar10_data.mat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:166a2cb3e237b73a5d4b60712e928c91352a7ffa285b04c9a917be2c3b73190e +size 184720344 diff --git a/hw/hw1/data/cifar10_y_train.npy b/hw/hw1/data/cifar10_y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..1da77800a5c6d6132da8f49f9c4954ee43ab934f --- /dev/null +++ b/hw/hw1/data/cifar10_y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:19378cd59c28e53ca96a8ec8a120f824ce97ab4ef20be05f9ccf148bb4de38ee +size 200128 diff --git a/hw/hw1/data/featurize.py b/hw/hw1/data/featurize.py new file mode 100644 index 0000000000000000000000000000000000000000..cbd85bde6cc11108a8ef1c4d157a9c6ee398cc75 --- /dev/null +++ b/hw/hw1/data/featurize.py @@ -0,0 +1,288 @@ +''' +**************** PLEASE READ *************** + +Script that reads in spam and ham messages and converts each training example +into a feature vector + +Code intended for UC Berkeley course CS 189/289A: Machine Learning + +Requirements: +-scipy ('pip install scipy') + +To add your own features, create a function that takes in the raw text and +word frequency dictionary and outputs a int or float. Then add your feature +in the function 'def generate_feature_vector' + +The output of your file will be a .mat file. The data will be accessible using +the following keys: + -'training_data' + -'training_labels' + -'test_data' + +Please direct any bugs to kevintee@berkeley.edu +''' + +from collections import defaultdict +import glob +import re +import scipy.io +import numpy as np + +NUM_TRAINING_EXAMPLES = 5172 +NUM_TEST_EXAMPLES = 5857 + +BASE_DIR = './' +SPAM_DIR = 'spam/' +HAM_DIR = 'ham/' +TEST_DIR = 'test/' + +# ************* Features ************* + +# Features that look for certain words +def freq_pain_feature(text, freq): + return float(freq['pain']) + +def freq_private_feature(text, freq): + return float(freq['private']) + +def freq_bank_feature(text, freq): + return float(freq['bank']) + +def freq_money_feature(text, freq): + return float(freq['money']) + +def freq_drug_feature(text, freq): + return float(freq['drug']) + +def freq_spam_feature(text, freq): + return float(freq['spam']) + +def freq_prescription_feature(text, freq): + return float(freq['prescription']) + +def freq_creative_feature(text, freq): + return float(freq['creative']) + +def freq_height_feature(text, freq): + return float(freq['height']) + +def freq_featured_feature(text, freq): + return float(freq['featured']) + +def freq_differ_feature(text, freq): + return float(freq['differ']) + +def freq_width_feature(text, freq): + return float(freq['width']) + +def freq_other_feature(text, freq): + return float(freq['other']) + +def freq_energy_feature(text, freq): + return float(freq['energy']) + +def freq_business_feature(text, freq): + return float(freq['business']) + +def freq_message_feature(text, freq): + return float(freq['message']) + +def freq_volumes_feature(text, freq): + return float(freq['volumes']) + +def freq_revision_feature(text, freq): + return float(freq['revision']) + +def freq_path_feature(text, freq): + return float(freq['path']) + +def freq_meter_feature(text, freq): + return float(freq['meter']) + +def freq_memo_feature(text, freq): + return float(freq['memo']) + +def freq_planning_feature(text, freq): + return float(freq['planning']) + +def freq_pleased_feature(text, freq): + return float(freq['pleased']) + +def freq_record_feature(text, freq): + return float(freq['record']) + +def freq_out_feature(text, freq): + return float(freq['out']) + +# Features that look for certain characters +def freq_semicolon_feature(text, freq): + return text.count(';') + +def freq_dollar_feature(text, freq): + return text.count('$') + +def freq_sharp_feature(text, freq): + return text.count('#') + +def freq_exclamation_feature(text, freq): + return text.count('!') + +def freq_para_feature(text, freq): + return text.count('(') + +def freq_bracket_feature(text, freq): + return text.count('[') + +def freq_and_feature(text, freq): + return text.count('&') + +# --------- Add your own feature methods ---------- +def freq_free_feature(text, freq): + return text.count('free') + +def freq_insurance_feature(text, freq): + return text.count('insurance') + +def freq_porn_feature(text, freq): + return text.count('porn') + +def freq_fuck_feature(text, freq): + return text.count('fuck') + +def freq_cock_feature(text, freq): + return text.count('cock') + +def freq_dick_feature(text, freq): + return text.count('dick') + +def freq_penis_feature(text, freq): + return text.count('penis') + +def freq_viagra_feature(text, freq): + return text.count('viagra') + +def freq_click_feature(text, freq): + return text.count('click') + +def freq_adult_feature(text, freq): + return text.count('adult') + +def freq_send_feature(text, freq): + return text.count('send') + +def freq_money_feature(text, freq): + return text.count('money') + +def freq_sex_feature(text, freq): + return text.count('sex') + +def freq_sexual_feature(text, freq): + return text.count('sexual') + +def freq_sexy_feature(text, freq): + return text.count('sexy') + +def freq_hard_feature(text, freq): + return text.count('hard') + +# Generates a feature vector +def generate_feature_vector(text, freq): + feature = [] + feature.append(freq_pain_feature(text, freq)) + feature.append(freq_private_feature(text, freq)) + feature.append(freq_bank_feature(text, freq)) + feature.append(freq_money_feature(text, freq)) + feature.append(freq_drug_feature(text, freq)) + feature.append(freq_spam_feature(text, freq)) + feature.append(freq_prescription_feature(text, freq)) + feature.append(freq_creative_feature(text, freq)) + feature.append(freq_height_feature(text, freq)) + feature.append(freq_featured_feature(text, freq)) + feature.append(freq_differ_feature(text, freq)) + feature.append(freq_width_feature(text, freq)) + feature.append(freq_other_feature(text, freq)) + feature.append(freq_energy_feature(text, freq)) + feature.append(freq_business_feature(text, freq)) + feature.append(freq_message_feature(text, freq)) + feature.append(freq_volumes_feature(text, freq)) + feature.append(freq_revision_feature(text, freq)) + feature.append(freq_path_feature(text, freq)) + feature.append(freq_meter_feature(text, freq)) + feature.append(freq_memo_feature(text, freq)) + feature.append(freq_planning_feature(text, freq)) + feature.append(freq_pleased_feature(text, freq)) + feature.append(freq_record_feature(text, freq)) + feature.append(freq_out_feature(text, freq)) + feature.append(freq_semicolon_feature(text, freq)) + feature.append(freq_dollar_feature(text, freq)) + feature.append(freq_sharp_feature(text, freq)) + feature.append(freq_exclamation_feature(text, freq)) + feature.append(freq_para_feature(text, freq)) + feature.append(freq_bracket_feature(text, freq)) + feature.append(freq_and_feature(text, freq)) + feature.append(freq_free_feature(text, freq)) + + feature.append(freq_insurance_feature(text, freq)) + feature.append(freq_porn_feature(text, freq)) + feature.append(freq_fuck_feature(text, freq)) + feature.append(freq_cock_feature(text, freq)) + feature.append(freq_dick_feature(text, freq)) + feature.append(freq_penis_feature(text, freq)) + feature.append(freq_viagra_feature(text, freq)) + feature.append(freq_click_feature(text, freq)) + feature.append(freq_adult_feature(text, freq)) + feature.append(freq_send_feature(text, freq)) + feature.append(freq_money_feature(text, freq)) + feature.append(freq_sexy_feature(text, freq)) + feature.append(freq_sex_feature(text, freq)) + feature.append(freq_sexual_feature(text, freq)) + feature.append(freq_hard_feature(text, freq)) + + + # --------- Add your own features here --------- + # Make sure type is int or float + + return feature + +# This method generates a design matrix with a list of filenames +# Each file is a single training example +def generate_design_matrix(filenames): + design_matrix = [] + for filename in filenames: + with open(filename, 'r', encoding='utf-8', errors='ignore') as f: + try: + text = f.read() # Read in text from file + except Exception as e: + # skip files we have trouble reading. + continue + text = text.replace('\r\n', ' ') # Remove newline character + words = re.findall(r'\w+', text) + word_freq = defaultdict(int) # Frequency of all words + for word in words: + word_freq[word] += 1 + + # Create a feature vector + feature_vector = generate_feature_vector(text, word_freq) + design_matrix.append(feature_vector) + return design_matrix + +# ************** Script starts here ************** +# DO NOT MODIFY ANYTHING BELOW + +spam_filenames = glob.glob(BASE_DIR + SPAM_DIR + '*.txt') +spam_design_matrix = generate_design_matrix(spam_filenames) +ham_filenames = glob.glob(BASE_DIR + HAM_DIR + '*.txt') +ham_design_matrix = generate_design_matrix(ham_filenames) +# Important: the test_filenames must be in numerical order as that is the +# order we will be evaluating your classifier +test_filenames = [BASE_DIR + TEST_DIR + str(x) + '.txt' for x in range(NUM_TEST_EXAMPLES)] +test_design_matrix = generate_design_matrix(test_filenames) + +X = spam_design_matrix + ham_design_matrix +Y = np.array([1]*len(spam_design_matrix) + [0]*len(ham_design_matrix)).reshape((-1, 1)) + +file_dict = {} +file_dict['training_data'] = X +file_dict['training_labels'] = Y +file_dict['test_data'] = test_design_matrix +scipy.io.savemat('spam_data.mat', file_dict) diff --git a/hw/hw1/data/ham/0004.1999-12-14.farmer.ham.txt b/hw/hw1/data/ham/0004.1999-12-14.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f1d61cc07416e27faccdd214a0d853c60eb97f5 --- /dev/null +++ b/hw/hw1/data/ham/0004.1999-12-14.farmer.ham.txt @@ -0,0 +1,29 @@ +Subject: re : issue +fyi - see note below - already done . +stella +- - - - - - - - - - - - - - - - - - - - - - forwarded by stella l morris / hou / ect on 12 / 14 / 99 10 : 18 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : sherlyn schumack on 12 / 14 / 99 10 : 06 am +to : stella l morris / hou / ect @ ect +cc : howard b camp / hou / ect @ ect +subject : re : issue +stella , +this has already been taken care of . you did this for me yesterday . +thanks . +howard b camp +12 / 14 / 99 09 : 10 am +to : stella l morris / hou / ect @ ect +cc : sherlyn schumack / hou / ect @ ect , howard b camp / hou / ect @ ect , stacey +neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect +subject : issue +stella , +can you work with stacey or daren to resolve +hc +- - - - - - - - - - - - - - - - - - - - - - forwarded by howard b camp / hou / ect on 12 / 14 / 99 09 : 08 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : sherlyn schumack 12 / 13 / 99 01 : 14 pm +to : howard b camp / hou / ect @ ect +cc : +subject : issue +i have to create accounting arrangement for purchase from unocal energy at +meter 986782 . deal not tracked for 5 / 99 . volume on deal 114427 expired 4 / 99 . \ No newline at end of file diff --git a/hw/hw1/data/ham/0067.1999-12-27.farmer.ham.txt b/hw/hw1/data/ham/0067.1999-12-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dcd3f95f327dd52bfdfb23a97293d36aea50bd7 --- /dev/null +++ b/hw/hw1/data/ham/0067.1999-12-27.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: hpl nominations for december 28 , 1999 +( see attached file : hpll 228 . xls ) +- hpll 228 . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/0243.2000-01-24.farmer.ham.txt b/hw/hw1/data/ham/0243.2000-01-24.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5786fbc0565448801fcb2f9b36aa4e68aef4b04 --- /dev/null +++ b/hw/hw1/data/ham/0243.2000-01-24.farmer.ham.txt @@ -0,0 +1,18 @@ +Subject: phillips petroleum , inc . +- - - - - - - - - - - - - - - - - - - - - - forwarded by carlos j rodriguez / hou / ect on 01 / 24 / 2000 +01 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +vance l taylor +01 / 24 / 2000 09 : 17 am +to : tom acton / corp / enron @ enron , carlos j rodriguez / hou / ect @ ect +cc : brian m riley / hou / ect @ ect , susan smith / hou / ect @ ect , donald p +reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect +subject : phillips petroleum , inc . +tom , +please generate spot tickets in sitara based upon the follow : +12 / 1 / 99 - 12 / 31 / 99 phillips petroleum company 6673 750 mmbtu / d 100 % if / hsc +less $ 0 . 17 +01 / 1 / 00 - 01 / 31 / 00 phillips petroleum company 6673 750 mmbtu / d 100 % if / hsc +less $ 0 . 17 +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw1/data/ham/0272.2000-01-28.farmer.ham.txt b/hw/hw1/data/ham/0272.2000-01-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..473137f7b16c83ce07c029b5c4e936f52fe58407 --- /dev/null +++ b/hw/hw1/data/ham/0272.2000-01-28.farmer.ham.txt @@ -0,0 +1 @@ +Subject: is this fri feb 11 a problem for taking vacation ? diff --git a/hw/hw1/data/ham/0283.2000-01-31.farmer.ham.txt b/hw/hw1/data/ham/0283.2000-01-31.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4bbbae98ed614d5585be438e0f4fc84037f9baf --- /dev/null +++ b/hw/hw1/data/ham/0283.2000-01-31.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: storage +i updated the storage ticket for feb and created an injection ticket , sitara +# 159640 . +let me know if you have any questions . +dave \ No newline at end of file diff --git a/hw/hw1/data/ham/0301.2000-02-02.farmer.ham.txt b/hw/hw1/data/ham/0301.2000-02-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ea4aa1e1794ba4304018eea38559dc7902b7d94 --- /dev/null +++ b/hw/hw1/data/ham/0301.2000-02-02.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: january 2000 withdrawals from storage +hey vonda , +attached is the worksheet showing your withdrawals for the month of january +2000 . let me know if you have any questions . +lisa kinsey \ No newline at end of file diff --git a/hw/hw1/data/ham/0335.2000-02-04.farmer.ham.txt b/hw/hw1/data/ham/0335.2000-02-04.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a7656705fc42277f4d2fcb31efcab0bab467ae1 --- /dev/null +++ b/hw/hw1/data/ham/0335.2000-02-04.farmer.ham.txt @@ -0,0 +1,7 @@ +Subject: 98 - 1534 +daren , +the above mentioned meter ( delivery ) shows a small flow of 24 dec . on +2 - 1 - 00 . the sitara deal ( 151694 ) has a stop date of 1 / 31 / 2000 . +can you please extend the deal thru 2 - 1 - 00 to cover this small volume ? +thanks +- jackie - \ No newline at end of file diff --git a/hw/hw1/data/ham/0366.2000-02-07.farmer.ham.txt b/hw/hw1/data/ham/0366.2000-02-07.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..14f219f3fe0d672bcccfef57762d833e4b5b9397 --- /dev/null +++ b/hw/hw1/data/ham/0366.2000-02-07.farmer.ham.txt @@ -0,0 +1,9 @@ +Subject: 8 th noms +- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 07 / 2000 +10 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +troy _ a _ benoit @ reliantenergy . com on 02 / 07 / 2000 10 : 19 : 10 am +to : " ami chokshi " +cc : +subject : 8 th noms +( see attached file : hpl - feb . xls ) +- hpl - feb . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/0423.2000-02-16.farmer.ham.txt b/hw/hw1/data/ham/0423.2000-02-16.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9fb3829eb3e503d9ef935b15c19d2ceeb4e186f --- /dev/null +++ b/hw/hw1/data/ham/0423.2000-02-16.farmer.ham.txt @@ -0,0 +1,22 @@ +Subject: re : allocation exceptions +daren - meters 3002 and 3003 have volume from jan 99 thru the current month . +could a deal be created for these volumes ? there is a substanital amount of +volume each month . +- aimee +- - - - - - - - - - - - - - - - - - - - - - forwarded by aimee lannou / hou / ect on 02 / 16 / 2000 02 : 54 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +fred boas +02 / 13 / 2000 02 : 28 pm +to : aimee lannou / hou / ect @ ect +cc : robert e lloyd / hou / ect @ ect , howard b camp / hou / ect @ ect +subject : allocation exceptions +aimee : +following is a list of allocation exceptions on daily swing meters that must +be fixed . +meter 3003 with min gas date 01 / 02 / 99 +meter 3002 with min gas date 01 / 02 / 99 +meter 0598 with min gas date 08 / 01 / 99 +meter 5360 with min gas date 0 / 01 / 00 +do you think that we can get them fixed by tuesday the 15 th of this week ? +let me know , +fred \ No newline at end of file diff --git a/hw/hw1/data/ham/0446.2000-02-18.farmer.ham.txt b/hw/hw1/data/ham/0446.2000-02-18.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..29c85d1b650ac32935ee3cdf8062b9b15a6fb4f3 --- /dev/null +++ b/hw/hw1/data/ham/0446.2000-02-18.farmer.ham.txt @@ -0,0 +1,11 @@ +Subject: 98 - 6736 & 98 - 9638 for 1997 ( ua 4 issues ) +the above referenced meters need to be placed on a k . please note the +information below +98 - 6736 on 089 for 5 / 97 ( activity @ this meter for 1 / 97 - 4 / 97 is on +078 - 29165 - 101 ) the referenced cpr deal # is 1567 which ends 4 / 97 . +98 - 9638 on 089 for 6 / 97 ( activity @ this meter for 1 / 97 - 11 / 97 is also on +089 ) no referenced cpr deal # . the only month that has a k placed on it is +12 / 97 and that is on the 078 - 30100 - 103 k . +thanks for your help . +- jackie - +3 - 9497 \ No newline at end of file diff --git a/hw/hw1/data/ham/0474.2000-02-23.farmer.ham.txt b/hw/hw1/data/ham/0474.2000-02-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..062dedd5406beb9177acd949c0da3a1f200d5e85 --- /dev/null +++ b/hw/hw1/data/ham/0474.2000-02-23.farmer.ham.txt @@ -0,0 +1,18 @@ +Subject: re : potential volume list for march , 2000 +fyi . . . this well should come on the lst week of march , but does have gas daily +mid month pricing for the first month . thanks . +susan +smith +02 / 22 / 2000 01 : 44 pm +to : daren j farmer / hou / ect @ ect +cc : melissa graves / hou / ect @ ect , donald p reinhardt / hou / ect @ ect , vance l +taylor / hou / ect @ ect , jill t zivley / hou / ect @ ect +subject : potential volume list for march , 2000 +darren : +this is potential new volume for march , 2000 : +counterparty meter volume mid month gas daily ? +cico oil & gas co . tba 2117 mmbtu per day yes +this number is not in vance ' s production estimate . this well is anticipated +to come on the first week of march but earlier is possible . +please let me know if you need any additional information . +susan smith x 33321 \ No newline at end of file diff --git a/hw/hw1/data/ham/0487.2000-02-24.farmer.ham.txt b/hw/hw1/data/ham/0487.2000-02-24.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ba458506ddbcc52e3385c0cd78f8c68faec1d62 --- /dev/null +++ b/hw/hw1/data/ham/0487.2000-02-24.farmer.ham.txt @@ -0,0 +1,9 @@ +Subject: follow up 1 / 2 day off - site +please hold thursday , march 9 th 11 : 30 - 5 : 00 pm as tentative for the follow +up meeting to our off - site . as soon as i have more concrete information i +will let you know . +note : +if i manage your calendar , it has been updated . +thank you ! +yvette +x 3 . 5953 \ No newline at end of file diff --git a/hw/hw1/data/ham/0523.2000-03-01.farmer.ham.txt b/hw/hw1/data/ham/0523.2000-03-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8416b7cc2bcb1325a6aca4a52237d200969ccf64 --- /dev/null +++ b/hw/hw1/data/ham/0523.2000-03-01.farmer.ham.txt @@ -0,0 +1,48 @@ +Subject: re : meter 986315 torch rally / el sordo 1 / 00 +daren . . have you had a chance to look at this yet ? +- - - - - - - - - - - - - - - - - - - - - - forwarded by kimberly vaughn / hou / ect on 03 / 01 / 2000 +03 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : sherlyn schumack on 02 / 29 / 2000 08 : 29 am +to : kimberly vaughn / hou / ect @ ect +cc : megan parker / corp / enron @ enron +subject : re : meter 986315 torch rally / el sordo 1 / 00 +kim , +have you received a response on this yet ? +kimberly vaughn +02 / 22 / 2000 04 : 21 pm +to : daren j farmer / hou / ect @ ect , sherlyn schumack / hou / ect @ ect +cc : +subject : meter 986315 torch rally / el sordo 1 / 00 +sheryln , i ' m forwarding this to daren to get your answer . . . daren , deal +141186 ( el sordo ) volume 102 . . . . deal 138605 ( torch ) volume 343 . . . megan +parker thinks that all of this volume should be under torch . . . what do you +think ? +- - - - - - - - - - - - - - - - - - - - - - forwarded by kimberly vaughn / hou / ect on 02 / 22 / 2000 +03 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : sherlyn schumack 02 / 22 / 2000 01 : 15 pm +to : kimberly vaughn / hou / ect @ ect +cc : megan parker / corp / enron @ enron +subject : meter 986315 torch rally / el sordo 1 / 00 +kim , +have you looked at this yet ? +- - - - - - - - - - - - - - - - - - - - - - forwarded by sherlyn schumack / hou / ect on 02 / 22 / 2000 +01 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : megan parker @ enron 02 / 22 / 2000 01 : 00 pm +to : sherlyn schumack / hou / ect @ ect +cc : +subject : meter 986315 torch rally / el sordo 1 / 00 +have you heard anything on this yet ? i need to pay it by thursday . +megan +- - - - - - - - - - - - - - - - - - - - - - forwarded by megan parker / corp / enron on 02 / 22 / 2000 +12 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : megan parker 02 / 17 / 2000 10 : 42 am +to : sherlyn schumack / hou / ect @ ect +cc : +subject : meter 986315 torch rally / el sordo 1 / 00 +i have a volume issue with meter 986315 for 1 / 00 production . the volume has +been split between el sordo and torch rally . i think all of the volume +should be under torch rally . please let me know if you find something +different . the old months have already been corrected . +thanks , +megan \ No newline at end of file diff --git a/hw/hw1/data/ham/0620.2000-03-17.farmer.ham.txt b/hw/hw1/data/ham/0620.2000-03-17.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a232e4f3f4032f51f9868fa09c8f6692e29ae3e --- /dev/null +++ b/hw/hw1/data/ham/0620.2000-03-17.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: nomination into eastrans - 3 / 18 / 2000 +we are reducing our nom into eastrans eff 3 / 18 / 2000 to +72 , 000 mmbtu / d . redeliveries are 50 mmcf / d into pg & e , 7 from fcv , +3 into your cartwheel @ carthage , and 12 into mobil beaumont . . \ No newline at end of file diff --git a/hw/hw1/data/ham/0653.2000-03-21.farmer.ham.txt b/hw/hw1/data/ham/0653.2000-03-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a03f22dbe14f78126e17ebd3c0fb718c543ba740 --- /dev/null +++ b/hw/hw1/data/ham/0653.2000-03-21.farmer.ham.txt @@ -0,0 +1,12 @@ +Subject: transport contracts +d - +the oasis contract # s are : 028 27099 201 +028 27099 202 +028 27099 203 +028 27099 204 +pg & e contract # s are : 5095 - 037 +5098 - 695 +9121 +5203 - 010 +pg & e parking and lending contracts awaiting approval : pleo 0004 +plao 0004 \ No newline at end of file diff --git a/hw/hw1/data/ham/0677.2000-03-22.farmer.ham.txt b/hw/hw1/data/ham/0677.2000-03-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..18ffa30b9237c2729f1f29c5eafe4cb83b601324 --- /dev/null +++ b/hw/hw1/data/ham/0677.2000-03-22.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: vacation scheduled +i will be on vacation friday , march 24 th , 27 th , 28 th and maybe 29 th . in my +absence please call jackie young @ 3 - 9497 . +susan { @ 3 - 5796 } will back up jackie during my absence for industrial +activity . \ No newline at end of file diff --git a/hw/hw1/data/ham/0802.2000-03-31.farmer.ham.txt b/hw/hw1/data/ham/0802.2000-03-31.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..3fdd709f76492ce877419181046c80557a7a9391 --- /dev/null +++ b/hw/hw1/data/ham/0802.2000-03-31.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: re : mitchell gas services 2 / 00 +i ' m not sure , but could you ask craig . +julie +daren j farmer +03 / 31 / 2000 12 : 30 pm +to : julie meyers / hou / ect @ ect +cc : +subject : re : mitchell gas services 2 / 00 +is this still outstanding ? craig is back in the office now . +d +julie meyers +03 / 20 / 2000 02 : 27 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : mitchell gas services 2 / 00 +- - - - - - - - - - - - - - - - - - - - - - forwarded by julie meyers / hou / ect on 03 / 20 / 2000 02 : 26 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : megan parker @ enron 03 / 20 / 2000 02 : 08 pm +to : julie meyers / hou / ect @ ect +cc : william c falbaum / hou / ect @ ect +subject : mitchell gas services 2 / 00 +we have a price difference with mitchell gas services for 2 / 00 production , +deal 156658 . we have hsc - 0 . 05 and mitchell shows hsc - 0 . 04 . can you tell +me what the correct price is ? i need this asap . +megan \ No newline at end of file diff --git a/hw/hw1/data/ham/0863.2000-04-05.farmer.ham.txt b/hw/hw1/data/ham/0863.2000-04-05.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fe05832b0746d80a942bf8c6d470180b2ac4b73 --- /dev/null +++ b/hw/hw1/data/ham/0863.2000-04-05.farmer.ham.txt @@ -0,0 +1,129 @@ +Subject: re : sitara release ( re : changes in global due to consent to +assignment ) +fyi . . . . +this change went in for the deal validation group . it gives them the +ability to change counterparties names after bridge back . +impact to logistics - unify +if a counterparty name change takes place to deals that have been bridge +backed , it could cause problems on edi pipes as that new counterparty name +will flow over to unify and repathing should eventually take place . +one problem may be with the imbalance data sets , which are not in production +yet . . . . . . ( edi imbalance qtys would not match up to paths ) +this may also cause an issue with the scheduled quantities ( especially where +nominations were sent for entire month ) +can ' t remember the rules on this one , but i think unify does have some safe +guards ( idiot proofs ) to force re - pathing . +unify does have the ability to over - ride duns numbers , yet would still cause +an additional step for edi the scheduler would need to think through in order +to get a clean quick response . +what are ( if any ) impacts to vol mgt if counterparty name changes take +place ? ( prior periods ? re - pathing ? ) +i have a call into diane and dave both . after speaking w / them , hopefully i +can get a clear understanding of the true impact . i am sure we ' ll need to +put some processes and procedures together for deal validation to follow when +these type of changes are needed . +will keep you posted . +thanks , +dg +from : thomas engel 04 / 05 / 2000 09 : 44 am +to : kathryn cordes / hou / ect @ ect , dana daigle / corp / enron @ enron , elizabeth l +hernandez / hou / ect @ ect , julie meyers / hou / ect @ ect , b scott palmer / hou / ect @ ect , +stephanie sever / hou / ect @ ect , dianne j swiber / hou / ect @ ect , peggy +hedstrom / cal / ect @ ect , dianne seib / cal / ect @ ect +cc : sylvia a campos / hou / ect @ ect , linda s bryan / hou / ect @ ect , faye +ellis / hou / ect @ ect , donna consemiu / hou / ect @ ect , scott mills / hou / ect @ ect , russ +severson / hou / ect @ ect , martha stevens / hou / ect @ ect , karie hastings / hou / ect @ ect , +regina perkins / hou / ect @ ect , imelda frayre / hou / ect @ ect , william e +kasemervisz / hou / ect @ ect , hunaid engineer / hou / ect @ ect , steven +gullion / hou / ect @ ect , larrissa sharma / hou / ect @ ect , donna greif / hou / ect @ ect +subject : sitara release ( re : changes in global due to consent to assignment ) +regarding the ability to change counterparties on deals in sitara with +confirmed volumes - tom ' s words of caution : +if someone calls you and wants to change a counterparty - we created the +ability for you to invalidate the deal - and +then change the counterparty - however - i did add a warning message : +" warning - changing counterparty on deal with confirmed volumes - make sure +pipeline allows this change . " +some pipelines do not allow us to change counterparties after there is +feedback - i assume for the same reasons +we had this rule - it used to blow up our old scheduling systems +( pre - unify ) . some pipelines will require a new +deal and we will have to zero out the old deal . +before you make the change - make sure the logistics person is aware - just +in case it causes problems with their +pipeline . sorry - i don ' t know which pipes these are - you will have to ask +the unify team . +there is one rule still in place - you can change from ena - im east to ena - im +market east - but not from +ena - im texas to hplc - im hplc - when changing business units - they must be +the same legal entity . +" warning - not the same legal entity " +also - beware of making contract and counterparty changes to service deals +( transport capacity , storage , cash out ) . +once the deal is invalidated - there are no rules . don ' t forget - the items +were locked down for a reason . +if you invalidate a service deal - and change the previously locked down +data that was validated - and someone used these +deals in unify - it is highly likely that the unify deals and paths created +using these deals will get corrupted . always check +with someone from unify to make sure no one used these deals for anything in +unify . +- - - - - - - - - - - - - - - - - - - - - - forwarded by thomas engel / hou / ect on 04 / 05 / 2000 09 : 47 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : scott mills on 04 / 04 / 2000 07 : 38 pm +to : kathryn cordes / hou / ect @ ect , dana daigle / corp / enron @ enron , elizabeth l +hernandez / hou / ect @ ect , julie meyers / hou / ect @ ect , b scott palmer / hou / ect @ ect , +stephanie sever / hou / ect @ ect , dianne j swiber / hou / ect @ ect +cc : steve jackson / hou / ect @ ect , thomas engel / hou / ect @ ect , sylvia a +campos / hou / ect @ ect , linda s bryan / hou / ect @ ect , faye ellis / hou / ect @ ect , donna +consemiu / hou / ect @ ect +subject : sitara release ( re : changes in global due to consent to assignment ) +with the release that was put out tuesday evening , deal validation should be +able to change the counterparty on deals where the volume is something other +than expected ( e . g . confirmed , nominated , scheduled , etc . ) . +in addition , this release will also capture " near - time " the contract changes +that are made in global . this means that need for server bounces will not be +necessary . +new / changes to contracts will show up without having to get out of deal +manager . +new counterparties , and new / changes to facilities will require getting out +of all active sitara apps ( except for launch pad ) . +once out of all apps , start a new app - the respective information that you +are looking for will appear . +i mention " near - time " because we are constrained by the amount of time it +takes for the change in global data to trigger an alert for sitara who then +updates its information +srm ( x 33548 ) +cyndie balfour - flanagan @ enron +04 / 04 / 2000 03 : 41 pm +to : connie sutton / hou / ect @ ect , linda s bryan / hou / ect @ ect , kathryn +cordes / hou / ect @ ect , scott mills / hou / ect @ ect , richard elwood / hou / ect @ ect , dave +nommensen / hou / ect @ ect , kenneth m harmon / hou / ect @ ect , dana +daigle / corp / enron @ enron , kathryn cordes / hou / ect @ ect , elizabeth l +hernandez / hou / ect @ ect , julie meyers / hou / ect @ ect , b scott palmer / hou / ect @ ect , +stephanie sever / hou / ect @ ect , dianne j swiber / hou / ect @ ect , gayle +horn / corp / enron @ enron , brant reves / hou / ect @ ect , russell diamond / hou / ect @ ect , +debbie r brackett / hou / ect @ ect , steve jackson / hou / ect @ ect +cc : +subject : changes in global due to consent to assignment +the following changes will be made in the global contracts database due to +receipt of executed consent to assignment for the following contracts : +current counterparty name contract type contract # ' new ' counterparty +name +ces - commonwealth energy services gisb 96029892 commonwealth energy +services +ces - samuel gary jr . & associates , inc gisb 96029302 samuel gary jr . & +associates +ces - south jersey gas company gisb 96029143 south jersey gas company +cp name change and contract type correction ( contract type different than +that provided by ces ) +per ces +ces - southwest gas corporation 1 / 1 / 98 gisb 96029146 +per contract file +ces - southwest gas corporation 04 / 14 / 93 master purchase / sale interruptible +( will edit global # 96029146 ) +& +ces - southwest gas corporation 12 / 01 / 94 master sale firm ( created new +global record to accommodate this k , # 96037402 ) +please note that southwest gas corporation has consented to the assignment of +both of these contracts . \ No newline at end of file diff --git a/hw/hw1/data/ham/0869.2000-04-06.farmer.ham.txt b/hw/hw1/data/ham/0869.2000-04-06.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7a9a3edad975b7d6500312189f262a1b65e6ba3 --- /dev/null +++ b/hw/hw1/data/ham/0869.2000-04-06.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: hr performance objectives binders +good morning ( afternoon ) , +today , everyone should have received a binder . some were placed in your mail +slots and others were hand delivered . if you did not receive a binder , please +email or call me for one to be delivered to you . +thank you , +octavia +x 78351 \ No newline at end of file diff --git a/hw/hw1/data/ham/1000.2000-04-26.farmer.ham.txt b/hw/hw1/data/ham/1000.2000-04-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..255570d8860b444032bec800447d161460b1cd53 --- /dev/null +++ b/hw/hw1/data/ham/1000.2000-04-26.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: mike clinchard resume +in case you have an opening . . . . +- resume . doc \ No newline at end of file diff --git a/hw/hw1/data/ham/1007.2000-04-27.farmer.ham.txt b/hw/hw1/data/ham/1007.2000-04-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..615a6e85bd4f277826b47561603b492c5daf58bf --- /dev/null +++ b/hw/hw1/data/ham/1007.2000-04-27.farmer.ham.txt @@ -0,0 +1,18 @@ +Subject: cpr pipeline exchange activity report +we have placed the cpr pipeline exchange activity report into the sitara +production reporting . please let me know if +you have any questions . this report gves you the volume activity of a given +business unit , on all or selectied pipes , for +given flow dates . please rememeber that this report is originating from the +sitara database . +you all have access to run reports in sitara . you can run reports by +clicking the last icon ( blue one ) from the sitara launchpad . +you may have to logout of sitara to compeletely to see the icon . +* once you are able to access the web site from the icon , click on reports . +* login using your sitara login and password . +* select the specialized / exceptions category from the drop down menu . +* run the cpr pipeline exchange activity report . you will have to select a +business unit , flow date and optionally pipe . +if you have any problems running this report , let me know at x 37913 . +thanks , +hunaid \ No newline at end of file diff --git a/hw/hw1/data/ham/1012.2000-04-28.farmer.ham.txt b/hw/hw1/data/ham/1012.2000-04-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7a74d4f655f471e69d2bdb69f995b96a419c9e7 --- /dev/null +++ b/hw/hw1/data/ham/1012.2000-04-28.farmer.ham.txt @@ -0,0 +1,6 @@ +Subject: entex revised estimates for 4 / 00 +the attached spreadsheet has the revised estimates for entex citygate loads +for april . if you need me to get with pops / unify to correct or change the +estimates please give me a call . +thanks +gary \ No newline at end of file diff --git a/hw/hw1/data/ham/1061.2000-05-10.farmer.ham.txt b/hw/hw1/data/ham/1061.2000-05-10.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a4ff2ad5ba1a49a16de060bd46ed4c730cd44a6 --- /dev/null +++ b/hw/hw1/data/ham/1061.2000-05-10.farmer.ham.txt @@ -0,0 +1,46 @@ +Subject: ena sales on hpl +just to update you on this project ' s status : +based on a new report that scott mills ran for me from sitara , i have come up +with the following counterparties as the ones to which ena is selling gas off +of hpl ' s pipe . +altrade transaction , l . l . c . gulf gas utilities company +brazoria , city of panther pipeline , inc . +central illinois light company praxair , inc . +central power and light company reliant energy - entex +ces - equistar chemicals , lp reliant energy - hl & p +corpus christi gas marketing , lp southern union company +d & h gas company , inc . texas utilities fuel company +duke energy field services , inc . txu gas distribution +entex gas marketing company union carbide corporation +equistar chemicals , lp unit gas transmission company inc . +since i ' m not sure exactly what gets entered into sitara , pat clynes +suggested that i check with daren farmer to make sure that i ' m not missing +something ( which i did below ) . while i am waiting for a response from him +and / or mary smith , i will begin gathering the contractual volumes under the +above contracts . +- - - - - - - - - - - - - - - - - - - - - - forwarded by cheryl dudley / hou / ect on 05 / 10 / 2000 07 : 56 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +cheryl d king +05 / 08 / 2000 04 : 11 pm +sent by : cheryl dudley +to : daren j farmer / hou / ect @ ect , mary m smith / hou / ect @ ect +cc : +subject : ena sales on hpl +i am working on a project for brenda herod & was wondering if one of you +could tell me if i ' m on the right track & if this will get everything for +which she is looking . +she is trying to draft a long - term transport / storage agreement between ena & +hplc which will allow ena to move the gas to their markets . in order to +accomplish this , she needs to know all of the sales to customers that ena is +doing off of hpl ' s pipe . +i had scott mills run a report from sitara showing all ena buy / sell activity +on hpl since 7 / 99 . if i eliminate the buys & the desk - to - desk deals , will +this give me everything that i need ? +are there buy / sell deals done with ena on hpl ' s pipe that wouldn ' t show up in +sitara ? someone mentioned something about deals where hpl transports the gas +on it ' s own behalf then ena sells it to a customer at that same spot - - +? ? ? ? ? do deals like that happen ? would they show up in sitara ? +is there anything else that i ' m missing ? i ' m not real familiar with how some +of these deals happen nowadays so am very receptive to any +ideas / suggestions / help that you can offer ! ! ! +thanks in advance . \ No newline at end of file diff --git a/hw/hw1/data/ham/1087.2000-05-18.farmer.ham.txt b/hw/hw1/data/ham/1087.2000-05-18.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1af4860c2b48df95d9c3bb3ff028793d3c2cce7f --- /dev/null +++ b/hw/hw1/data/ham/1087.2000-05-18.farmer.ham.txt @@ -0,0 +1,9 @@ +Subject: eol issues +to get immediate response on an eol issue , such as a next day deal that is +not showing up in sitara , either call me at 3 - 5824 +or torrey moorer at 3 - 6218 . if you are unable to reach either one of us , +please page us at the following numbers . please pass +this information to others in your group . +thank you . +jennifer de boisblanc denny 1 - 877 - 473 - 1343 +torrey moorer 1 - 877 - 473 - 1344 \ No newline at end of file diff --git a/hw/hw1/data/ham/1170.2000-05-30.farmer.ham.txt b/hw/hw1/data/ham/1170.2000-05-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f9ee2d735f589baf0f9a5f125ad4a71537682f6 --- /dev/null +++ b/hw/hw1/data/ham/1170.2000-05-30.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: revised nominations +daren , +we have received revised nominations from prize energy resources , l . p . for +june , 2000 . the revisions are as follows : +meter # original volume revised volume +5579 2 , 209 2 , 536 +6534 1 , 906 1 , 123 +6614 2 , 215 2 , 128 +do you want me to enter the revised volumes ? please advise . thanks . +bob \ No newline at end of file diff --git a/hw/hw1/data/ham/1197.2000-06-01.farmer.ham.txt b/hw/hw1/data/ham/1197.2000-06-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce17214eef73a5e8d18b56d638a8fe462400f0aa --- /dev/null +++ b/hw/hw1/data/ham/1197.2000-06-01.farmer.ham.txt @@ -0,0 +1,16 @@ +Subject: ami , , , , +i agree ! ! +thanks . +- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 01 / 2000 +11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +ami . chokshi @ enron . com on 06 / 01 / 2000 11 : 13 : 13 am +to : tim powell / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , +daren . j . farmer @ enron . com +cc : +subject : +and the final numbers for may are . . . +iferc 1 , 240 , 000 ( last volume was 72084 on day 18 ) +enron 930 , 000 ( last volume was 21667 on day 26 ) +gas daily 1 , 033 , 416 ( last volume was 80000 on day 31 ) +please advise , +ami \ No newline at end of file diff --git a/hw/hw1/data/ham/1207.2000-06-01.farmer.ham.txt b/hw/hw1/data/ham/1207.2000-06-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac3f78cce3f83890cfca28ef06cee358f588dac9 --- /dev/null +++ b/hw/hw1/data/ham/1207.2000-06-01.farmer.ham.txt @@ -0,0 +1,37 @@ +Subject: re : revised nomination - june , 2000 +daren , +fyi . per our discussion , the following nominations were revised on eog +resources : +meter # orig nom rev nom deal # +5263 4 , 755 5 , 820 126355 +6067 3 , 726 4 , 600 126281 +6748 2 , 005 3 , 300 126360 +6742 4 , 743 10 , 120 126365 +6296 5 , 733 2 , 300 126281 +bob +daren j farmer +05 / 31 / 2000 05 : 51 pm +to : robert cotten / hou / ect @ ect +cc : +subject : re : revised nomination - june , 2000 +bob , +go ahead and accept the nom revision . i believe that this is with pge , not +el paso . how do the rest of our noms compare with eog ? i f they have a +higher volume at another meter than we do , i would like to increase our nom +there . in effect , i want to keep our physical index position as close as +possible to what we have in the system now . +d +enron north america corp . +from : robert cotten 05 / 31 / 2000 04 : 04 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : revised nomination - june , 2000 +daren , +charlotte hawkins is having trouble confirming the volume of 5 , 733 with el +paso . el paso will not confirm the volume that high . eog revised their +nomination as follows : +c / p name meter # orig nom rev nom +eog res . 6296 5 , 733 2 , 300 +will you approve revising the volume in unify down to 2 , 300 ? please advise . +thanks . +bob \ No newline at end of file diff --git a/hw/hw1/data/ham/1223.2000-06-02.farmer.ham.txt b/hw/hw1/data/ham/1223.2000-06-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfd097f49efbdb2767388dcfa6519262c2d32cbc --- /dev/null +++ b/hw/hw1/data/ham/1223.2000-06-02.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: re : new turn - on range resources +vance , +a ticket has been created and entered in sitara based on the information +below . the deal number is 287507 . thanks . +bob +vance l taylor +06 / 02 / 2000 10 : 23 am +to : tom acton / corp / enron @ enron , robert cotten / hou / ect @ ect +cc : lisa hesse / hou / ect @ ect , heidi withers / hou / ect @ ect , julie +meyers / hou / ect @ ect , susan smith / hou / ect @ ect , donald p reinhardt / hou / ect @ ect , +melissa graves / hou / ect @ ect +subject : new turn - on range resources +robert / tom , +the following production commenced to flow earlier in the week and a ticket +should be created and entered into sitara based on the following : +counterparty meter volumes price period +range resources corporation 9832 350 mmbtu / d 100 % gasdaily less $ 0 . 18 5 / 30 +- 5 / 31 +fyi , susan will create and submit a committed reserves firm ticket for june +and for the remaining term of the deal beginning with the month of july once +she recieves a reserve study . additionally , this is a producer svcs . deal +and should be tracked in the im wellhead portfolio . . . attached to the +gathering contract . +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw1/data/ham/1291.2000-06-08.farmer.ham.txt b/hw/hw1/data/ham/1291.2000-06-08.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..47268b2c75a48f6788565dfe567ee807e5005dee --- /dev/null +++ b/hw/hw1/data/ham/1291.2000-06-08.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: re : hpl / enron actuals for june 8 , 2000 +oops , sorry , they are for the 7 th . . . \ No newline at end of file diff --git a/hw/hw1/data/ham/1310.2000-06-09.farmer.ham.txt b/hw/hw1/data/ham/1310.2000-06-09.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa41e374618f4a852a24166d8a151572489ce4f7 --- /dev/null +++ b/hw/hw1/data/ham/1310.2000-06-09.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: sea robin changes +- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 06 / 09 / 2000 +10 : 39 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +" steve holmes " on 06 / 09 / 2000 10 : 42 : 30 am +to : , +cc : +subject : sea robin changes +the previous e - mail shoud have shown the 11 changes to be effective monday , +june 12 , . 2000 . i will correct the date and resend the changes . +steve \ No newline at end of file diff --git a/hw/hw1/data/ham/1399.2000-06-19.farmer.ham.txt b/hw/hw1/data/ham/1399.2000-06-19.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3fad5b196a22d1de433a9dfee60a7f9cffabd69 --- /dev/null +++ b/hw/hw1/data/ham/1399.2000-06-19.farmer.ham.txt @@ -0,0 +1,46 @@ +Subject: re : atmic hurta # 1 - new production +vance , +deal # 303948 has been created and entered in sitara . +bob +vance l taylor +06 / 19 / 2000 02 : 56 pm +to : vance l taylor / hou / ect @ ect +cc : robert cotten / hou / ect @ ect , hillary mack / corp / enron @ enron , lisa +hesse / hou / ect @ ect , heidi withers / hou / ect @ ect , susan smith / hou / ect @ ect , donald +p reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect +subject : re : atmic hurta # 1 - new production +auugghh ! +that ' s the marquee corporation +vlt +x 3 - 6353 +vance l taylor +06 / 19 / 2000 02 : 54 pm +to : vance l taylor / hou / ect @ ect +cc : robert cotten / hou / ect @ ect , hillary mack / corp / enron @ enron , lisa +hesse / hou / ect @ ect , heidi withers / hou / ect @ ect , susan smith / hou / ect @ ect , donald +p reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect +subject : re : atmic hurta # 1 - new production +revision , the correct counterparty name should be marque cooperation acting +as seller and seller ' s representative . +thanks , +vlt +x - 6353 +vance l taylor +06 / 19 / 2000 02 : 10 pm +to : robert cotten / hou / ect @ ect +cc : hillary mack / corp / enron @ enron , lisa hesse / hou / ect @ ect , heidi +withers / hou / ect @ ect , susan smith / hou / ect @ ect , donald p reinhardt / hou / ect @ ect , +melissa graves / hou / ect @ ect +subject : atmic hurta # 1 - new production +bob , +the following production commenced to flow on friday and a ticket should be +created and entered into sitara based on the following : +counterparty meter volumes price period +iss , l . l . c 9837 3 , 500 mmbtu / d 100 % gas daily less $ 0 . 09 6 / 16 - 6 / 30 +fyi , susan will create and submit a committed reserves firm ticket for the +remaining term of the deal beginning with the month of july . additionally , +this is a producer svcs . deal and should be tracked in the im wellhead +portfolio . . . attached to the gathering contract . +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw1/data/ham/1460.2000-06-22.farmer.ham.txt b/hw/hw1/data/ham/1460.2000-06-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..22b9541babf9616c99f0f87e55974b6c7f933433 --- /dev/null +++ b/hw/hw1/data/ham/1460.2000-06-22.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: tufco - prebid +hplr est . 65000 +wb est . 40000 \ No newline at end of file diff --git a/hw/hw1/data/ham/1523.2000-06-28.farmer.ham.txt b/hw/hw1/data/ham/1523.2000-06-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..56bf287b35ef5f4cd8a5a8e94e57147455b4cffb --- /dev/null +++ b/hw/hw1/data/ham/1523.2000-06-28.farmer.ham.txt @@ -0,0 +1,29 @@ +Subject: $ 5 for cd ' s dvd ' s expires soon at half . com +* * free $ 5 coupon at half . com * * +o half . com is a new site for cds , books , movies , & video games +o everything is 50 - 90 % off and you get $ 5 off your first $ 10 order +o plus , free shipping with your first order of 3 or more items +o be sure to pass this coupon on to all your friends ! ! ! +click here for 5 bucks ! +your coupon code is : lifestyle 5 +" use it or lose it " expires soon ! ! +click here for 5 bucks ! +your coupon code is : lifestyle 5 +the hottest titles at 50 % off while they last - including : +cds - santana , n sync , dixie chicks , jay - z , and christina +aguilera project , sixth sense and matrix +dvds - world is not enough , blair witch and more . . . +* * free $ 5 coupon at half . com * * +click here for 5 bucks ! +your coupon code is : lifestyle 5 +on the shopping cart page , enter your $ 5 . 00 coupon +code on the right side of the page . after submitting +your code , your coupon will be displayed in your +shopping cart . +you have received this invitation to participate in our offer because +you or someone using your e - mail address agreed to receive special +promotional offers from retail trade services and its web site +partners . if you wish to be excluded from future offers , please reply +to this message and type " unsubscribe " in the subject line . +all questions can be sent to : +if you wish to know more about our privacy policies , please go to diff --git a/hw/hw1/data/ham/1553.2000-06-29.farmer.ham.txt b/hw/hw1/data/ham/1553.2000-06-29.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..613e571d49904902bda1c2e18176d8c7dd4e814a --- /dev/null +++ b/hw/hw1/data/ham/1553.2000-06-29.farmer.ham.txt @@ -0,0 +1,15 @@ +Subject: revised nom - kcs resources +daren , +it ' s in . +bob +- - - - - - - - - - - - - - - - - - - - - - forwarded by robert cotten / hou / ect on 06 / 29 / 2000 06 : 22 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : robert cotten 06 / 29 / 2000 03 : 35 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : revised nom - kcs resources +daren , +kcs ' orig nom was 11 , 148 at meter # 9658 . you revised it to 9 , 381 . kcs +wants to revise it to 8 , 000 . do you want me to adjust ? +bob \ No newline at end of file diff --git a/hw/hw1/data/ham/1562.2000-06-30.farmer.ham.txt b/hw/hw1/data/ham/1562.2000-06-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b4a08c3cdba8a2c9a3f00c59e037deea57d71f8 --- /dev/null +++ b/hw/hw1/data/ham/1562.2000-06-30.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: july transport usage tickets +i have input and updated transport usage tickets for july . i did not update +one for the demand charge for pgev / maypearl delivery , so if there is one , you +will have to set it up in the system . if you have any questions , please let +me know . also , pay close attention to the oasis and pg & e tickets for this +month . i do not yet know what baseload rates you have agreed upon , so you +will need to adjust them in the appropriate tickets . if you would , please +let me know , too , what baseload business and rates you have agreed upon for +both these pipelines . thank you . +heidi \ No newline at end of file diff --git a/hw/hw1/data/ham/1590.2000-07-10.farmer.ham.txt b/hw/hw1/data/ham/1590.2000-07-10.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..52617ee9f97e07df1ae2aec10ecc4446e565e5f4 --- /dev/null +++ b/hw/hw1/data/ham/1590.2000-07-10.farmer.ham.txt @@ -0,0 +1,182 @@ +Subject: re : coastal oil & gas corporation +melissa , +deal ticket # 325550 has been created and entered in sitara . +bob +enron north america corp . +from : melissa graves 07 / 07 / 2000 03 : 34 pm +to : robert cotten / hou / ect @ ect +cc : donald p reinhardt / hou / ect @ ect , susan smith / hou / ect @ ect , vance l +taylor / hou / ect @ ect , george weissman / hou / ect @ ect , hillary +mack / corp / enron @ enron , amelia alland / hou / ect @ ect +subject : re : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +bob , +per george ' s note below , hplc will be purchasing wellhead gas from the +producer listed below for the production month of july . this production will +be purchased on a " spot " basis and a deal ticket should be created and +entered into sitara based on the following information : +counterparty meter volume price +coastal oil & gas corporation 4179 , albrecht # 4 well 7 / 7 / 00 - 1 , 500 mmbtu / d +7 / 8 / 00 - 3 , 000 mmbtu / d +7 / 9 / 00 thru 7 / 31 / 00 - 4 , 000 mmbtu / d 93 % if / hsc +additionally , this is a producer svcs . deal and should be tracked in the im +wellhead portfolio . . . attached to the gathering contract . +thanks , +melissa +- - - - - - - - - - - - - - - - - - - forwarded by melissa graves / hou / ect on 07 / 07 / 2000 03 : 03 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : george weissman 07 / 07 / 2000 01 : 11 pm +to : melissa graves / hou / ect @ ect , shawna flynn / hou / ect @ ect +cc : sandi m braband / hou / ect @ ect , robert walker / hou / ect @ ect , vicente +sarmiento / gco / enron @ enron , brian m riley / hou / ect @ ect , lauri a +allen / hou / ect @ ect +subject : re : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +melissa , +based on the attached contract preparation request for a spot gtc for the +coastal oil the +legal department has prepared and is currently circulating a ratification and +consent to assign document to reflect this transaction . +the spot gtc requested herein will cover gas from the albrecht # 4 well only . +the albrecht # 4 will not be covered by 96008903 , nor will the wells currently +subject to 96008903 be subject to the spot gtc . +shawna , please prepare the termination letter for 96008903 as requested . +george x 3 - 6992 +- - - - - - - - - - - - - - - - - - - - - - forwarded by george weissman / hou / ect on 07 / 07 / 2000 +01 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +debbie boudar @ enron +07 / 06 / 2000 03 : 25 pm +to : george weissman / hou / ect @ ect +cc : robert walker / hou / ect @ ect , vicente sarmiento / gco / enron @ enron , brian m +riley / hou / ect @ ect +subject : re : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +in regards to meter 098 - 4179 the following information is what i have been +able to determine from the information available to me . +to your questions : +1 . cannot determine who owns this meter . i will contact molly carriere on +monday when she returns . +2 . hpl has a fifty ( 50 ) ft . easement at this location which does contain +language for appurtenance rights within the 50 ' . +3 . i pulled the meter file for this location which was prepared during +project rock and it does not contain a facility agreement so i am assuming +one was not located . +hope this helps . +from : george weissman @ ect 07 / 06 / 2000 11 : 09 am +to : debbie boudar / na / enron @ enron +cc : robert walker / hou / ect @ ect , vicente sarmiento / gco / enron @ enron , brian m +riley / hou / ect @ ect +subject : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +debbie , +meter 098 - 4179 is located at sta . plus 40 + 85 on align . dwg . hc - 1130 - 18 - h in +goliad co . , tx . in connection with the facility agreement request below , we +need to know the following : +1 . who owns the meter , hplc or the operator ? +2 . do we own an easement and an access right of way to the meter station ? +3 . is there , to your knowledge , a facility agreement in place covering this +meter ? we cannot locate such an agreement in our records . +thanks . george x 3 - 6992 +- - - - - - - - - - - - - - - - - - - - - - forwarded by george weissman / hou / ect on 07 / 06 / 2000 +11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : george weissman 07 / 06 / 2000 09 : 37 am +to : shawna flynn / hou / ect @ ect +cc : robert walker / hou / ect @ ect , brian m riley / hou / ect @ ect , vicente +sarmiento / gco / enron @ enron , melissa graves / hou / ect @ ect , lal +echterhoff / hou / ect @ ect , james r haden / hou / ect @ ect +subject : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +shawna , +attached is a contract preparation request for a facilities agreement for the +coastal oil the +legal department has prepared and is currently circulating a ratification and +consent to assign document to reflect this transaction . +we have been unable to locate an existing facility agreement for the 3 +previously drilled wells and suspect that no such agreement exists . +the facility agreement requested herein is intended to cover only alterations +to be made to existing meter 098 - 4179 to install an h 2 s monitor and necessary +valving to allow hplc to accept gas from the newly drilled albrecht # 4 well . +once the h 2 s monitor has been installed and the albrecht # 4 well is ready to +flow , we intend to paper the purchase of gas from the albrecht # 4 well only +via a spot confirmation pursuant to a spot gtc . the albrecht # 4 will not be +covered by 96008903 , nor will the wells currently subject to 96008903 be +subject to the spot gtc . +coastal will reimburse hplc $ 39 , 600 for the cost of the installation . +george x 3 - 6992 +- - - - - - - - - - - - - - - - - - - - - - forwarded by george weissman / hou / ect on 07 / 06 / 2000 +09 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : george weissman 07 / 04 / 2000 01 : 28 pm +to : lal echterhoff / hou / ect @ ect , pat flavin / gco / enron @ enron +cc : brian m riley / hou / ect @ ect , jill t zivley / hou / ect @ ect , vicente +sarmiento / gco / enron @ enron , james r haden / hou / ect @ ect , donnie +mccabe / gco / enron @ enron , mark walch / gco / enron @ enron , steve hpl +schneider / hou / ect @ ect +subject : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +lal , +we intend to attempt to connect about 4 , 000 mmbtu / d of new production from +the newly drilled coastal oil in may , 2000 , the meter flowed about 960 +mmbtu / d of 3 . 36 % co 2 gas . +the content of the albrecht # 4 gas according to the field gas analysis +prepared by coastal oil the albrecht # 4 h 2 s content +is similar to that of the three wells currently producing 960 mmbtu / d behind +meter 098 - 4179 , the miller - albrecht unit # 1 - a and the hoff heller gas unit +# 1 a & # 2 d . coastal further purports that for some time now it ( and / or its +predecessor , mjg , corp . ) has treated these three wells for h 2 s in a manner +sufficient to reduce the h 2 s content delivered into hplc to permissible +levels . coastal has further indicated that it intends to reduce the h 2 s +content of the albrecht # 4 to permissible levels before delivering same to +hplc . in your opinion , should coastal be forced to install an h 2 s monitor +for this new gas prior to flowing same to hplc ? +george x 3 - 6992 +- - - - - - - - - - - - - - - - - - - - - - forwarded by george weissman / hou / ect on 07 / 04 / 2000 +12 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +christy sweeney +06 / 29 / 2000 04 : 56 pm +to : lisa hesse / hou / ect @ ect +cc : brian m riley / hou / ect @ ect , george weissman / hou / ect @ ect , melissa +graves / hou / ect @ ect , joanne wagstaff / na / enron @ enron , heidi withers / hou / ect @ ect +subject : transport request for coastal albrecht # 4 , goliad county , tx +lisa , +attached is our physical well connect form , including a transportation quote +sheet , for the coastal albrecht # 4 well in goliad county , tx . please +provide us with a transport quote . i have attached below a quote you gave us +in april 2000 . the volume is now 5 , 000 / day . +i am headed that way with a map that shows the well ' s location in relation to +us , tejas , koch , and tetco . please note 2 % fuel . +thank you ! ! ! +christy +39050 +- - - - - - - - - - - - - - - - - - - - - - forwarded by christy sweeney / hou / ect on 06 / 29 / 2000 +02 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : lisa hesse 04 / 07 / 2000 10 : 48 am +to : brian m riley / hou / ect @ ect +cc : lauri a allen / hou / ect @ ect , mary m smith / hou / ect @ ect , heidi +withers / hou / ect @ ect , melissa graves / hou / ect @ ect , george weissman / hou / ect @ ect , +susan smith / hou / ect @ ect , donald p reinhardt / hou / ect @ ect , vance l +taylor / hou / ect @ ect , lisa hesse / hou / ect @ ect , lisa hesse / hou / ect @ ect +subject : mjg , inc . meter 4179 and cokinos meter 9676 +brian , +here are the transport rates for the below meters : +mjg meter 4179 3 . 39 % co 2 1 year quote april 00 +rel : 1180 avg . 1200 - 1988 . 014 +loc . . 05 +p / l density . 02 +quality . 049 +market adjustment . 05 +_ _ _ _ +. . 183 +less discount and market fee . 02 +_ _ _ _ +. 16 +please call if you have any questions or comments . lisa 3 5901 \ No newline at end of file diff --git a/hw/hw1/data/ham/1624.2000-07-13.farmer.ham.txt b/hw/hw1/data/ham/1624.2000-07-13.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9fa5fe5056f6b5c5e059d18070a8361b6166868 --- /dev/null +++ b/hw/hw1/data/ham/1624.2000-07-13.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: data validation +brenda , +we met this afternoon concerning path counts . howard will be validating the +path data we had gathered from unify . please let us know when you will need +this data by . +thanks , +shari +3 - 3859 \ No newline at end of file diff --git a/hw/hw1/data/ham/1706.2000-07-21.farmer.ham.txt b/hw/hw1/data/ham/1706.2000-07-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..cca5a407d5373da0cbc3d0bf4fca43bdcf77dfb4 --- /dev/null +++ b/hw/hw1/data/ham/1706.2000-07-21.farmer.ham.txt @@ -0,0 +1,38 @@ +Subject: re : saudi arabia +i spoke to mr . maldinado this morning and it doesn ' t look good . he claims he +has a connection to the minister of " energy " who will allocate gas to him . i +asked where would the gas be delivered , and he said anywhere you want it . +short term or long term ? again , anything you want , but probably long term is +better . +i pointed out that there isn ' t an energy minister in saudi and would he know +the name of the minister whose giving him the gas ? he stumbled and couldn ' t +remember the name . +finally he said " what do you have to lose ? just send me a letter requesting +gas with the specs , location and duration " and he ' ll do his best to get it . +if you want to try it rob , he ' s all yours . his fax number is 562 / 866 - 7368 , +address 16276 grand avenue , bellflower , ca 90706 . +regards , +samir +rob stewart +07 / 20 / 2000 02 : 47 am +to : samir salama / enron _ development @ enron _ development +cc : +subject : saudi arabia +this sounds right up your street +thanks +- - - - - - - - - - - - - - - - - - - - - - forwarded by rob stewart / enron _ development on +07 / 20 / 2000 02 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +daren j farmer @ ect +06 / 15 / 2000 03 : 05 pm +to : rob stewart / eu / enron @ enron +cc : +subject : saudi arabia +rob , +i got your name from doug leach . he thought that you would be the person to +talk to about this . +i got a call last night from rudolph maldonado . ( the operator forwarded him +our way . ) he stated that he has some natural gas to sell in saudi arabia . +his number is 562 - 866 - 1755 . could you give him a call and check this out ? i +told him that i would find someone that he could discuss this with . +i can be reached at 3 - 6905 if you have any questions . +daren farmer \ No newline at end of file diff --git a/hw/hw1/data/ham/1716.2000-07-24.farmer.ham.txt b/hw/hw1/data/ham/1716.2000-07-24.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a65a6bfc9b86e4a4798f7afd8caa33cb0a35c0f --- /dev/null +++ b/hw/hw1/data/ham/1716.2000-07-24.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: re : southern +darren : +i zeroed the path on deal 284599 , and left 4 , 500 pathed on 339604 at meter +4132 , and pathed 5 , 000 for both deals 341801 & 341808 at meter 67 for 7 / 24 +only . i also notified betsy boring / southern about the situation and +explained to her that any deal they make on eol cannot be changed in any way , +however we would move the gas for the 24 th only because we ok ' d the change +before we realized it was an eol deal . \ No newline at end of file diff --git a/hw/hw1/data/ham/1790.2000-07-28.farmer.ham.txt b/hw/hw1/data/ham/1790.2000-07-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebeba61ba26416e741a8344750ac5dc16fa9d83b --- /dev/null +++ b/hw/hw1/data/ham/1790.2000-07-28.farmer.ham.txt @@ -0,0 +1,31 @@ +Subject: new production - sitara deals needed +daren , +fyi . +bob +- - - - - - - - - - - - - - - - - - - - - - forwarded by robert cotten / hou / ect on 07 / 28 / 2000 01 : 24 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +vance l taylor +07 / 28 / 2000 01 : 24 pm +to : robert cotten / hou / ect @ ect +cc : lisa hesse / hou / ect @ ect , trisha hughes / hou / ect @ ect , heidi +withers / hou / ect @ ect , hillary mack / corp / enron @ enron , susan smith / hou / ect @ ect , +donald p reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect +subject : new production - sitara deals needed +bob , +the following production is now on - line and a ticket should be created and +entered into sitara based on the following : +counterparty meter volumes price period +hesco gathering oil co 9835 600 mmbtu / d 96 % gas daily less $ 0 . 14 +6 / 10 - 7 / 31 +samson lone star limited 9845 3000 mmbtu / d 100 % gas daily less $ 0 . 10 7 / 21 - +7 / 31 +winn exploration co . , inc . 9847 800 mmbtu / d 100 % gas daily less $ 0 . 13 7 / 25 +- 7 / 31 +( for fuel use less 3 . 35 % of del vols ) +fyi , susan has created and submitted committed reserves firm tickets for the +remaining term of the deal beginning with the month of august . additionally , +these are producer svcs . deals and should be tracked in the im wellhead +portfolio . . . attached to the gathering contract . +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw1/data/ham/1969.2000-08-17.farmer.ham.txt b/hw/hw1/data/ham/1969.2000-08-17.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf90d0dbbdd72ededfabe682e0959ce871432a3b --- /dev/null +++ b/hw/hw1/data/ham/1969.2000-08-17.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: enron / hpl actuals for august 16 , 2000 +teco tap 120 . 000 / hpl iferc ; 20 . 000 / enron +ls hpl lsk ic 20 . 000 / enron \ No newline at end of file diff --git a/hw/hw1/data/ham/1983.2000-08-21.farmer.ham.txt b/hw/hw1/data/ham/1983.2000-08-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..24e3f7b36b4ef00fef1dc659a692d1d6e5264908 --- /dev/null +++ b/hw/hw1/data/ham/1983.2000-08-21.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: hpl nom for august 22 , 2000 +( see attached file : hplo 822 . xls ) +- hplo 822 . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/2048.2000-08-25.farmer.ham.txt b/hw/hw1/data/ham/2048.2000-08-25.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a757b077f8ea653eeec553ccaecd310c4fbd4c2d --- /dev/null +++ b/hw/hw1/data/ham/2048.2000-08-25.farmer.ham.txt @@ -0,0 +1,14 @@ +Subject: revised - - - - - - - kleberg plant outages in september - - - - - cornhusker +correction - - - - - - - the first outage should be from 12 : 00 am to 12 : 00 pm . +- - - - - - - - - - - - - - - - - - - - - - forwarded by mark mccoy / corp / enron on 08 / 25 / 2000 03 : 13 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +mark mccoy +08 / 25 / 2000 03 : 08 pm +to : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , stacey +neuweiler / hou / ect @ ect +cc : +subject : kleberg plant outages in september - - - - - cornhusker +i spoke with michael mazowita / white pine energy , as he said the expected +outages are as follows : +august 31 st - september lst 12 hours 12 : 00 pm to 12 : 00 am no flow +september 25 th - 31 st all days no flow \ No newline at end of file diff --git a/hw/hw1/data/ham/2050.2000-08-28.farmer.ham.txt b/hw/hw1/data/ham/2050.2000-08-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6b99d7f6968e8b48a431abdbd8157bf074be6d4 --- /dev/null +++ b/hw/hw1/data/ham/2050.2000-08-28.farmer.ham.txt @@ -0,0 +1,34 @@ +Subject: weekend notes +here are my notes , please let me know if you have any questions . +weekend of august 26  ) 28 , 2000 +saturday : +? celanese bayport meter 8018 was ramping back up . total nomination of +35 , 000 in mops was pathed  ) transmitted nom to pops and confirmed . +? costilla , meter 9687 was still down 4 , 000 due to wellhead production +losses on friday , expected short into the first of the week , possibly longer , +may need to fish the hole to bring the well back up . +? costilla pilgreen  ) running high h 2 s , causing our valve to shut - in 13 , 000 +mm  , s ( we changed our specs at the valve to accept 8 parts per mil for 30 +minutes last week , per jill zively ) . louis dreyfus was diverting the well to +another pipeline , per the contract that gas has to come to us or be shut - in . +we got the well back on saturday afternoon , and all was well . +? all meters were updated in pops for satuday  , s gas day . +? christy w / pg shell lost two units . +also , seeing meter 1394 which dels to shell back down from 10 , 000 to 5 , 000 . +? patty called re : the epng cuts , found out late afternoon that they are pcc , +pipeline capacity constraints , at the ivalerow meter into pg & e . +? joey stanton with duke called regarding some new production coming up . he +wanted to sell it into hpl at lonestar / katy for sunday and monday . paged +darren , we took the gas , it needs to be priced today . duke let me know that +they would flow at a rate of 25 , 000 / hour , and should average approximately +12 - 15 , 000 for the day . mark mccoy is working on getting a good meter total +from lonestar for sunday , we need to get the deal in sitara and confirm +today ' s gas day as well . +? regarding pg & e , i do not have final cycle 4 numbers ( they come out around +9 pm on the gas day ) . +all in all , it was a pretty good weekend , and an educational one . gas +control did a great job communicating and assisting to resolve issues . +please check all meters impacted to make sure that i pop  , d and mop  , d +correctly . +thank you , +mary jane \ No newline at end of file diff --git a/hw/hw1/data/ham/2088.2000-08-30.farmer.ham.txt b/hw/hw1/data/ham/2088.2000-08-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b86b3f1df99408786a8309b0edb1387f1d188ae --- /dev/null +++ b/hw/hw1/data/ham/2088.2000-08-30.farmer.ham.txt @@ -0,0 +1,22 @@ +Subject: done : new sitara desk request ( ref cc # 20000813 ) +carey , +per scott ' s request below the following business unit ( aka : desk id , +portfolio ) was added to global production and unify development , test , +production and stage . please copy to the other global environments . +thanks , +dick , x 3 - 1489 +updated in global production environment gcc code desc : +p ent subenti data _ cd ap data _ desc code _ id +- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +a sit deskid imcl a ena - im cleburne 9273 +from : scott mills 08 / 30 / 2000 08 : 27 am +to : samuel schott / hou / ect @ ect , richard elwood / hou / ect @ ect , debbie r +brackett / hou / ect @ ect , judy rose / hou / ect @ ect , vanessa +schulte / corp / enron @ enron , david baumbach / hou / ect @ ect , daren j +farmer / hou / ect @ ect , dave nommensen / hou / ect @ ect , donna greif / hou / ect @ ect , +shawna johnson / corp / enron @ enron , russ severson / hou / ect @ ect +cc : +subject : new sitara desk request +this needs to be available in production by early afternoon . sorry for the +short notice . +srm ( x 33548 ) \ No newline at end of file diff --git a/hw/hw1/data/ham/2109.2000-08-31.farmer.ham.txt b/hw/hw1/data/ham/2109.2000-08-31.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d09d641cc7e6479851620a78f8a645a38a527f1 --- /dev/null +++ b/hw/hw1/data/ham/2109.2000-08-31.farmer.ham.txt @@ -0,0 +1,87 @@ +Subject: inactivations +cheryl johnson +08 / 31 / 2000 11 : 14 am +to : camille gerard / corp / enron @ enron , jeremy wong / hou / ect @ ect , bob +bowen / hou / ect @ ect , debbie r brackett / hou / ect @ ect , mary g gosnell / hou / ect @ ect , +larry joe hunter / hou / ect @ ect , kori loibl / hou / ect @ ect , tom e +moore / hou / ect @ ect , john d powell / hou / ect @ ect , brant reves / hou / ect @ ect , +marilyn colbert / hou / ect @ ect , bill d hare / hou / ect @ ect , laurel +adams / hou / ect @ ect , peggy alix / hou / ect @ ect , amelia alland / hou / ect @ ect , lauri a +allen / hou / ect @ ect , bridgette anderson / corp / enron @ enron , beth +apollo / lon / ect @ ect , arfan aziz / lon / ect @ ect , susan bailey / hou / ect @ ect , cyndie +balfour - flanagan / corp / enron @ enron , stacey richardson / hou / ect @ ect , edward d +baughman / hou / ect @ ect , kimberlee a bennick / hou / ect @ ect , lisa berg +carver / hou / ect @ ect , anne bike / corp / enron @ enron , jennifer blay / hou / ect @ ect , +fred boas / hou / ect @ ect , bob bowen / hou / ect @ ect , debbie r brackett / hou / ect @ ect , +linda s bryan / hou / ect @ ect , lesli campbell / hou / ect @ ect , anthony +campos / hou / ect @ ect , sylvia a campos / hou / ect @ ect , nella +cappelletto / cal / ect @ ect , cary m carrabine / hou / ect @ ect , clem +cernosek / hou / ect @ ect , pat clynes / corp / enron @ enron , marilyn +colbert / hou / ect @ ect , brad coleman / hou / ect @ ect , donna consemiu / hou / ect @ ect , +robert cotten / hou / ect @ ect , mike croucher / hou / ect @ ect , romeo +d ' souza / hou / ect @ ect , shonnie daniel / hou / ect @ ect , frank l davis / hou / ect @ ect , +cheryl dawes / cal / ect @ ect , jennifer deboisblanc denny / hou / ect @ ect , rhonda l +denton / hou / ect @ ect , russell diamond / hou / ect @ ect , stacy e dickson / hou / ect @ ect , +bradley diebner / hou / ect @ ect , michael eiben / hou / ect @ ect , susan +elledge / na / enron @ enron , faye ellis / hou / ect @ ect , diane ellstrom / hou / ect @ ect , +veronica espinoza / corp / enron @ enron , enron europe global contracts and +facilities , enron europe global counterparty , daren j farmer / hou / ect @ ect , +jacquelyn farriel / gpgfin / enron @ enron , genia fitzgerald / hou / ect @ ect , irene +flynn / hou / ect @ ect , shawna flynn / hou / ect @ ect , susan flynn / hou / ect @ ect , hoong p +foon / hou / ect @ ect , rebecca ford / hou / ect @ ect , imelda frayre / hou / ect @ ect , +randall l gay / hou / ect @ ect , scotty gilbert / tor / ect @ ect , lisa +gillette / hou / ect @ ect , carolyn gilley / hou / ect @ ect , winston +goodbody / hou / ect @ ect , amita gosalia / lon / ect @ ect , mary g gosnell / hou / ect @ ect , +melissa graves / hou / ect @ ect , andrea r guillen / hou / ect @ ect , david +hardy / lon / ect @ ect , bill d hare / hou / ect @ ect , kenneth m harmon / hou / ect @ ect , +tony harris / hou / ect @ ect , peggy hedstrom / cal / ect @ ect , elizabeth l +hernandez / hou / ect @ ect , brenda f herod / hou / ect @ ect , marlene +hilliard / hou / ect @ ect , liz hillman / corp / enron @ enron , nathan l +hlavaty / hou / ect @ ect , corey hobbs / corp / enron @ enron , jim homco / hou / ect @ ect , +cindy horn / hou / ect @ ect , larry joe hunter / hou / ect @ ect , rahil +jafry / hou / ect @ ect , tana jones / hou / ect @ ect , katherine l kelly / hou / ect @ ect , +nanette kettler / hou / ect @ ect , cheryl dudley / hou / ect @ ect , bob +klein / hou / ect @ ect , troy klussmann / hou / ect @ ect , victor lamadrid / hou / ect @ ect , +karen lambert / hou / ect @ ect , gary w lamphier / hou / ect @ ect , kristian j +lande / hou / ect @ ect , elsie lew / hou / ect @ ect , andrew h lewis / hou / ect @ ect , jim +little / hou / ect @ ect , kori loibl / hou / ect @ ect , melba lozano / hou / ect @ ect , scott f +lytle / hou / ect @ ect , hillary mack / corp / enron @ enron , richard c +mckeel / hou / ect @ ect , chris mendoza / hou / ect @ ect , nidia mendoza / hou / ect @ ect , +carey m metz / hou / ect @ ect , julie meyers / hou / ect @ ect , richard a +miley / hou / ect @ ect , bruce mills / corp / enron @ enron , scott mills / hou / ect @ ect , +glenda d mitchell / hou / ect @ ect , patrice l mims / hou / ect @ ect , jason +moore / hou / ect @ ect , torrey moorer / hou / ect @ ect , jackie morgan / hou / ect @ ect , +michael w morris / hou / ect @ ect , matt motsinger / hou / ect @ ect , gary +nelson / hou / ect @ ect , dale neuner / hou / ect @ ect , tracy ngo / hou / ect @ ect , debbie +nicholls / lon / ect @ ect , john l nowlan / hou / ect @ ect , frank +ortiz / epsc / hou / ect @ ect , b scott palmer / hou / ect @ ect , anita k +patton / hou / ect @ ect , regina perkins / hou / ect @ ect , debra +perlingiere / hou / ect @ ect , richard pinion / hou / ect @ ect , sylvia s +pollan / hou / ect @ ect , brent a price / hou / ect @ ect , cyril price / hou / ect @ ect , joan +quick / hou / ect @ ect , dutch quigley / hou / ect @ ect , leslie reeves / hou / ect @ ect , +donald p reinhardt / hou / ect @ ect , brant reves / hou / ect @ ect , suzy +robey / hou / ect @ ect , bernice rodriguez / hou / ect @ ect , carlos j +rodriguez / hou / ect @ ect , sam round / hou / ect @ ect , marilyn m schoppe / hou / ect @ ect , +samuel schott / hou / ect @ ect , brad schneider / corp / enron @ enron , dianne +seib / cal / ect @ ect , cris sherman / hou / ect @ ect , john sherriff / lon / ect @ ect , james +shirley / hou / ees @ ees , lynn e shivers / hou / ect @ ect , michele small / lon / ect @ ect , +mary m smith / hou / ect @ ect , susan smith / hou / ect @ ect , mary +solmonson / hou / ect @ ect , jefferson d sorenson / hou / ect @ ect , carrie +southard / hou / ect @ ect , mechelle stevens / hou / ect @ ect , willie +stewart / hou / ect @ ect , geoff storey / hou / ect @ ect , colleen sullivan / hou / ect @ ect , +john suttle / hou / ect @ ect , connie sutton / hou / ect @ ect , tara +sweitzer / hou / ect @ ect , dianne j swiber / hou / ect @ ect , neal symms / hou / ect @ ect , +vance l taylor / hou / ect @ ect , edward terry / hou / ect @ ect , kim s +theriot / hou / ect @ ect , sheri thomas / hou / ect @ ect , veronica +thompson / gpgfin / enron @ enron , mark d thorne / hou / ect @ ect , philippe +travis / lon / ect @ ect , susan d trevino / hou / ect @ ect , laura +vargas / corp / enron @ enron , claire viejou / lon / ect @ ect , elsa +villarreal / hou / ect @ ect , robert walker / hou / ect @ ect , george +weissman / hou / ect @ ect , chris wiebe / cal / ect @ ect , sony wilson / hou / ect @ ect , +o ' neal d winfree / hou / ect @ ect , christa winfrey / hou / ect @ ect , rita +wynne / hou / ect @ ect +cc : +subject : inactivations +reminder : +records on the august 2000 name change / merger notification report will be +inactivated tomorrow afternoon 9 / 01 . \ No newline at end of file diff --git a/hw/hw1/data/ham/2193.2000-09-08.farmer.ham.txt b/hw/hw1/data/ham/2193.2000-09-08.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d59e08c0d21f67342892dc344a19b16973519cf8 --- /dev/null +++ b/hw/hw1/data/ham/2193.2000-09-08.farmer.ham.txt @@ -0,0 +1,9 @@ +Subject: weekend noms +- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 09 / 08 / 2000 +09 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +royal _ b _ edmondson @ reliantenergy . com on 09 / 07 / 2000 02 : 50 : 28 pm +to : ami _ chokshi @ enron . com +cc : +subject : weekend noms +( see attached file : hpl - sept . xls ) +- hpl - sept . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/2216.2000-09-12.farmer.ham.txt b/hw/hw1/data/ham/2216.2000-09-12.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..4caf1839f9cf52b4420ab295489ad65204ae2ea0 --- /dev/null +++ b/hw/hw1/data/ham/2216.2000-09-12.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: re : sitara training +i ' ll switch with tom , that way , i can still make my appointment and it won ' t +be all guys in the next class ( you know how rowdy they get ) . +mary \ No newline at end of file diff --git a/hw/hw1/data/ham/2252.2000-09-15.farmer.ham.txt b/hw/hw1/data/ham/2252.2000-09-15.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..57717b2c7ab09543ea1545f4a81ef42de01cbc7c --- /dev/null +++ b/hw/hw1/data/ham/2252.2000-09-15.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: enron / hpl actuals for sept . 14 , 2000 from txu electric +teco tap 25 , 000 enron / 112 . 500 hpl gas daily +hpl katy 15 , 000 enron \ No newline at end of file diff --git a/hw/hw1/data/ham/2264.2000-09-18.farmer.ham.txt b/hw/hw1/data/ham/2264.2000-09-18.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..0910248ddda750d93f899c102756a9534e65bd30 --- /dev/null +++ b/hw/hw1/data/ham/2264.2000-09-18.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: revision # 1 - enron / hpl actuals for sept . 15 - 17 , 2000 +sept 17 , 2000 +teco tap 51 . 667 / hpl gas daily ; 25 . 000 / enron +ls hpl lsk ic 15 . 000 / enron +sept . 18 , 2000 +teco tap 31 . 625 / enron +sept . 19 , 2000 +no flow +- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on +09 / 18 / 2000 +02 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +melissa jones +09 / 18 / 2000 02 : 03 pm +to : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu , +daren . j . farmer @ enron . com , gary . a . hanks @ enron . com , +carlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com , +ami . chokshi @ enron . com +cc : +subject : enron / hpl actuals for sept . 15 - 17 , 2000 +sept . 17 , 2000 +teco tap 61 . 667 / hpl gas daily ; 25 . 000 / enron +ls hpl lsk ic 15 . 000 / enron +sept . 18 , 2000 +teco tap 31 . 625 / enron +sept . 19 , 2000 +no flow \ No newline at end of file diff --git a/hw/hw1/data/ham/2317.2000-09-22.farmer.ham.txt b/hw/hw1/data/ham/2317.2000-09-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a8c2a998ce6cbb415f8030d7da0d54c437012e5 --- /dev/null +++ b/hw/hw1/data/ham/2317.2000-09-22.farmer.ham.txt @@ -0,0 +1,22 @@ +Subject: revised : eastrans nomination change effective 9 / 23 / 00 +please disregard the memo below and continue to keep eastrans deliveries at +zero ( 0 ) until further notified . +- - - - - - - - - - - - - - - - - - - - - - forwarded by marta k henderson / houston / pefs / pec on +09 / 22 / 2000 02 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +marta k henderson +09 / 22 / 2000 09 : 00 am +to : darrel f . bane / easttexas / pefs / pec @ pec , john a . bretz / gcs / cec / pec @ pec , +chad w . cass / gcs / cec / pec @ pec , michael r . +cherry / easttexas / pefs / pec @ pec , william e . speckels / gcs / cec / pec @ pec , +donna c . spencer / gcs / cec / pec @ pec , julia a . urbanek / gcs / cec / pec @ pec , +briley @ enron . com , dfarmer @ enron . com , carlos . j . rodriguez @ enron . com , +sharon beemer / ftworth / pefs / pec @ pec , connie +wester / easttexas / pefs / pec @ pec , ronald c . douglas / gcs / cec / pec @ pec , +daniel c rider / houston / pefs / pec @ pec +cc : +subject : eastrans nomination change effective 9 / 23 / 00 +please increase deliveries into eastrans to 30 , 000 mmbtu / dy effective +9 / 23 / 00 and continue until further notified . +the redeliveries will be : +7400 from fuels cotton valley +22600 to pg & e \ No newline at end of file diff --git a/hw/hw1/data/ham/2444.2000-10-04.farmer.ham.txt b/hw/hw1/data/ham/2444.2000-10-04.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d26a14734e6ed153440824bad62716fe8d1b1956 --- /dev/null +++ b/hw/hw1/data/ham/2444.2000-10-04.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: enron / hpl acutals for october 3 , 2000 +teco tap 60 . 000 / enron ; 68 . 333 / hpl iferc +ls hpl lsk ic 15 . 000 / hpl iferc \ No newline at end of file diff --git a/hw/hw1/data/ham/2546.2000-10-16.farmer.ham.txt b/hw/hw1/data/ham/2546.2000-10-16.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1539732d4938bc3de5969c2efbe472993e81b11d --- /dev/null +++ b/hw/hw1/data/ham/2546.2000-10-16.farmer.ham.txt @@ -0,0 +1,49 @@ +Subject: re : rate for tenaska deal +daaah ! +sorry ! +daren j farmer +10 / 16 / 2000 05 : 57 pm +to : sandi m braband / hou / ect @ ect +cc : +subject : re : rate for tenaska deal +consumer price index +from : sandi m braband on 10 / 16 / 2000 12 : 14 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : re : rate for tenaska deal +daren , +thanks - - while i ' m certain i should know , i must confess that i do not know +what cpi stands for ? ? ? +sandi +daren j farmer +10 / 16 / 2000 11 : 39 am +to : sandi m braband / hou / ect @ ect , bob m hall / na / enron @ enron +cc : +subject : re : rate for tenaska deal +sandi , +sorry for just now getting back with you . i was out last week . +the rate ( $ . 04 / mmbtu ) will be charged on the greater of the volumes nominated +on the supply contracts or the actual deliveries to the plant . the fee will +be adjusted yearly based on cpi . +bob - i could not remember if we stated the type of settlement on the +delivered volumes ( actuals or nominations ) . i think we should use actuals +due to possibility that the plant could over pull with out our knowledge on a +daily basis . we would receive the estimates / actuals on a lag and may have to +purchase gas to offset the imbalance , even though the plant kept the noms at +the 45 , 000 base . i also think that if the plant does increase the nom , they +are more likely to pull the additional volume rather than pulling less . do +you agree with this ? +d +from : sandi m braband on 10 / 10 / 2000 03 : 41 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : rate for tenaska deal +daren , +when we met regarding the rate for the tenaska gas management agreement , you +guys mentioned that it would be tied to an index - - could you restate for me +how that is to work - - it will start out 4 cents per mmbtu based on the greater +of the volumes nominated through the supply contracts or the actual +deliveries to the plant . then the fee will vary month to month ? year to year ? +based on what index ? +thanks , +sandi \ No newline at end of file diff --git a/hw/hw1/data/ham/2593.2000-10-19.farmer.ham.txt b/hw/hw1/data/ham/2593.2000-10-19.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..e15e49f2487529bc40416d913e61e6f3a11524c3 --- /dev/null +++ b/hw/hw1/data/ham/2593.2000-10-19.farmer.ham.txt @@ -0,0 +1,13 @@ +Subject: additional recruiting +i ' m happy to introduce molly magee as the newest addition to the eops +recruiting team . toni and molly have divided their recruiting duties +along separate job functions . please review the information below and +direct your staffing requests to either toni or molly depending on your job +needs . +toni graham - accounting , risk and confirmation / settlements positions ( or +openings requiring a similar skill set of this candidate pool ) +molly magee - logistics , global data management , research , legal , competitive +analysis , contract administration and other positions ( or openings requiring +a similar skill set of this candidate pool ) +thanks for your assistance , +hgm \ No newline at end of file diff --git a/hw/hw1/data/ham/2678.2000-10-27.farmer.ham.txt b/hw/hw1/data/ham/2678.2000-10-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b0edb6f2f199c0e6985e4b0b54e09583da26ba4 --- /dev/null +++ b/hw/hw1/data/ham/2678.2000-10-27.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: neon discussion november 1 +here ' s material for this upcoming week . +? +bobby +- neon roaring 3 . doc \ No newline at end of file diff --git a/hw/hw1/data/ham/2738.2000-11-01.farmer.ham.txt b/hw/hw1/data/ham/2738.2000-11-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ff9c0be4f11984b563bb1de55d6b47e546f6a04 --- /dev/null +++ b/hw/hw1/data/ham/2738.2000-11-01.farmer.ham.txt @@ -0,0 +1,37 @@ +Subject: re : another hesco issue +help . steve mauch at hesco is wanting an answer asap +- - - - - - - - - - - - - - - - - - - - - - forwarded by charlene richmond / hou / ect on 11 / 01 / 2000 +03 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +vance l taylor +11 / 01 / 2000 02 : 45 pm +to : charlene richmond / hou / ect @ ect +cc : julie meyers / hou / ect @ ect +subject : re : another hesco issue +charlene , +this gas purchase is not a part of the wellhead portfolio but is being traded +on the texas desk . i would suggest you get with darren farmer or someone on +the desk . +sorry i could not be of more assistance ! +vlt +x 3 - 6353 +charlene richmond +11 / 01 / 2000 08 : 22 am +to : julie meyers / hou / ect @ ect , vance l taylor / hou / ect @ ect +cc : +subject : another hesco issue +meter 986725 for march 2000 . per hesco both traders are gone at ( hesco and +enron ) and they ( hesco ) were not paid the correct price in march on the +days mentioned below . hesco cannot find where the price for these days were +recorded . per hesco they were underpaid by $ 32 , 101 . 57 . hesco is wanting to +come to our office to have a meeting about clearing this up . it will be nice +if we don ' t have to meet with them . +production dates are volume price they are +looking for +03 / 12 +2 , 029 2 . 65 +03 / 13 +2 , 009 2 . 65 +03 / 15 +2 , 022 2 . 71 +03 / 16 +1 , 976 2 . 72 \ No newline at end of file diff --git a/hw/hw1/data/ham/2848.2000-11-14.farmer.ham.txt b/hw/hw1/data/ham/2848.2000-11-14.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..64d632de7708b6ff6c789b5928fe5aa18bb164fc --- /dev/null +++ b/hw/hw1/data/ham/2848.2000-11-14.farmer.ham.txt @@ -0,0 +1,38 @@ +Subject: re : beaumont methanol - meter 1428 - october 2000 +i ' m think i left out a detail - the 54 , 000 mmbtu for the three days oct 21 to +23 to beaumont methanol needs to be all priced at the base deal , not on the +swing ticket . +from : lee l papayoti on 11 / 14 / 2000 03 : 45 pm +to : anita luong / hou / ect @ ect , buddy majorwitz / hou / ect @ ect , daren j +farmer / hou / ect @ ect +cc : gary a hanks / hou / ect @ ect , james mckay / hou / ect @ ect +subject : beaumont methanol - meter 1428 - october 2000 +ladies and gents : +on sat oct 21 , hpl meter # 1428 had a malfunction , and started flowing at a +very high rate , way over the nominated rate of 18 , 000 / d ( gas control will +confirm this ) . +since sat - sun - mon are all one gas day from a gas daily perspective , i told +gas control to try to balance on sun after the meter was fixed , by cutting +back to a lower flow rate . +so we will need to do a special allocation for the three days october 21 - +23 , saturday through monday . the three day total for the meter is 59 , 067 +mmbtu . beaumont methanol nominated 54 , 000 mmbtu ( i . e . 18 , 000 / d for 3 +days ) . we should allocate a total of 54 , 000 mmbtu to beaumont methanol for +the three days , and the 5 , 067 mmbtu excess will be purchased by brandywine - +under sitara # 484934 priced at gas daily hsc midpoint . +please call with questions . +thanks +lee +3 . 5923 +- - - - - - - - - - - - - - - - - - - - - - forwarded by lee l papayoti / hou / ect on 11 / 13 / 2000 +04 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : buddy majorwitz 11 / 13 / 2000 03 : 53 pm +to : lee l papayoti / hou / ect @ ect +cc : +subject : beaumont methanol - meter 1428 - october 2000 +lee , +here is the volume allocation as supplied by anita luong and my calculation +worksheet for the captioned meter . +give me a call if you have any questions . +buddy +x - 31933 \ No newline at end of file diff --git a/hw/hw1/data/ham/2882.2000-11-17.farmer.ham.txt b/hw/hw1/data/ham/2882.2000-11-17.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a96e187e484fa40753afc19984d9fa433ad29794 --- /dev/null +++ b/hw/hw1/data/ham/2882.2000-11-17.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: same day change - revision # 1 - txu fuel trans k # 501 - november +17 , 2000 +( see attached file : hplnl 117 . xls ) +- hplnl 117 . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/2924.2000-11-22.farmer.ham.txt b/hw/hw1/data/ham/2924.2000-11-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d60729a1d5afb56cfa7b28dfe7223b4a01b8cf57 --- /dev/null +++ b/hw/hw1/data/ham/2924.2000-11-22.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: enron / hpl actuals november 21 , 2000 +teco tap 30 . 000 / enron ; 50 . 000 / hpl gas daily \ No newline at end of file diff --git a/hw/hw1/data/ham/2934.2000-11-27.farmer.ham.txt b/hw/hw1/data/ham/2934.2000-11-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e8e45f7a6413488b34fe2bfe6a77660e7dca40c --- /dev/null +++ b/hw/hw1/data/ham/2934.2000-11-27.farmer.ham.txt @@ -0,0 +1,13 @@ +Subject: revised avails for 12 / 00 as noted +revisions for 12 / 01 +bev +- - - - - - - - - - - - - - - - - - - - - - forwarded by beverly beaty / hou / ect on 11 / 27 / 2000 10 : 38 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron capital & trade resources corp . +from : " victor haley " +11 / 27 / 2000 11 : 35 am +to : +cc : +subject : revised avails for 12 / 00 as noted +revised avails for 12 / 00 as noted +- enronavailsl 200 pools . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/2943.2000-11-27.farmer.ham.txt b/hw/hw1/data/ham/2943.2000-11-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2945f5266345d399bc69eae3d1a023d548147dd --- /dev/null +++ b/hw/hw1/data/ham/2943.2000-11-27.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: revision # 1 - hpl nominations for nov . 27 , 2000 and nov . 28 , 2000 +( see attached file : hplnl 123 . xls ) ( see attached file : hplnl 128 . xls ) +- hplnl 123 . xls +- hplnl 128 . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/2997.2000-12-04.farmer.ham.txt b/hw/hw1/data/ham/2997.2000-12-04.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..75acf1366d753cbc6ec650678c17b155f2b981c7 --- /dev/null +++ b/hw/hw1/data/ham/2997.2000-12-04.farmer.ham.txt @@ -0,0 +1,29 @@ +Subject: ces deal clean - up +i will need to make these changes in sitara . on some of these deals it will +require me to go in and copy the ticket to a new ticket to move december 2000 +forward . these changes will be made this afternoon . if you have questions +or concerns please call met at x 3 - 3048 . +- - - - - - - - - - - - - - - - - - - - - - forwarded by elizabeth l hernandez / hou / ect on +12 / 05 / 2000 07 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +cyndie balfour - flanagan @ enron +12 / 04 / 2000 05 : 21 pm +to : elizabeth l hernandez / hou / ect @ ect +cc : jeffrey c gossett / hou / ect @ ect , linda s bryan / hou / ect @ ect +subject : ces deal clean - up +listed below are deals for which we have rec ' d consent to assignment , but are +still showing in sitara as ces deals . please make the necessary changes . +cp name ( as showing in sitara ) ' new ' cp name deal # date consent executed +ces - entergy new orleans , inc entergy new orleans , inc 140327 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140330 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140332 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140334 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140336 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140337 08 / 09 / 00 +ces - flash gas & oil southwest inc . flash gas & oil southwest inc . 263609 +08 / 03 / 00 +ces - hunt , lydia hunt , lydia 263650 09 / 06 / 00 +ces - james e . brummage james e . brummage 220339 05 / 05 / 00 +ces - lakeland , city of lakeland , city of 142035 08 / 07 / 00 +ces - lakeland , city of lakeland , city of 142036 08 / 07 / 00 +ces - lakeland , city of lakeland , city of 142037 08 / 07 / 00 +ces - ochs bros . ochs bros . 229857 05 / 19 / 00 \ No newline at end of file diff --git a/hw/hw1/data/ham/3028.2000-12-05.farmer.ham.txt b/hw/hw1/data/ham/3028.2000-12-05.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d86f5153833b218c1c84d1da957efd7ef1af6d --- /dev/null +++ b/hw/hw1/data/ham/3028.2000-12-05.farmer.ham.txt @@ -0,0 +1,14 @@ +Subject: re : meter 1428 +we should check with gas control as to why gas is flowing at all and / or +whether this is a valid reading . . . . +gary / james - let us know +thanks +lee +aimee lannou 12 / 05 / 2000 11 : 09 am +to : daren j farmer / hou / ect @ ect +cc : lee l papayoti / hou / ect @ ect +subject : meter 1428 +daren - meter 1428 , beaumont methanol is shut - in for december . there has +been flow of 69 and 65 on days 2 and 3 . should a swing ticket be put at the +meter ? the last swing deal was 451907 for 11 / 00 . thanks . +aimee \ No newline at end of file diff --git a/hw/hw1/data/ham/3058.2000-12-11.farmer.ham.txt b/hw/hw1/data/ham/3058.2000-12-11.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..708d5cf1befd31f182736fd4a50f178c49833d97 --- /dev/null +++ b/hw/hw1/data/ham/3058.2000-12-11.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: invitation to dinner +music can be started by clicking on the sound icon . +to stop music , right click and end show : ) heather \ No newline at end of file diff --git a/hw/hw1/data/ham/3109.2000-12-15.farmer.ham.txt b/hw/hw1/data/ham/3109.2000-12-15.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a024b4b11bdb66048c1544267f21f92228eeea7 --- /dev/null +++ b/hw/hw1/data/ham/3109.2000-12-15.farmer.ham.txt @@ -0,0 +1,71 @@ +Subject: re : enerfin meter 980439 for 10 / 00 +jackie , talk to darren about this . the deal you reference is an hpl deal with +dynegy and i don ' t have access to it . i ' m on the east desk . yesterday i +extended the deal 421415 for the 6 th and 19 th and meredith inserted a path in +unify - tetco to cover the small overflow volume between hpl and ena . the +ena / hpl piece is done . the piece between hpl and dynegy is what you need +inserted . thanks +jackie young +12 / 15 / 2000 11 : 32 am +to : sherlyn schumack / hou / ect @ ect +cc : victor lamadrid / hou / ect @ ect +subject : re : enerfin meter 980439 for 10 / 00 +sherlyn , i ' ve placed the correct volumes for days 6 and 9 for ena . i ' ll have +the deal extended for dynegy and let you know when it ' s done . +victor , can you extend the deal 422516 for days 6 and 9 please ? thanks . oh +and by the way , i had mistaken you for someone else when i sent you the +e - mail on yesterday . sorry . i thought that i knew you . anyway , please +advise when you ' ve extended the deal so that sherlyn can create an accounting +arrangement . +thanks +- jackie - +3 - 9497 +to : jackie young / hou / ect @ ect +cc : rita wynne / hou / ect @ ect +subject : re : enerfin meter 980439 for 10 / 00 +i don ' t want to tell you to add any contracts , because i am not sure about +that . i am just saying if you look at ray ' s schedule there are 2 deals out +there , one is a purchase from ena and the other a purchase from dynegy . the +track id i gave you was for ena . you cannot allocate the dynegy piece +until i give you a track id . i cannot give you a track id until the deal is +extended for days 10 / 6 and 10 / 19 . +jackie young +12 / 15 / 2000 10 : 51 am +to : sherlyn schumack / hou / ect @ ect +cc : +subject : re : enerfin meter 980439 for 10 / 00 +arre you saying that for both days that two ( 2 ) ena contracts should be +placed at the meter for days 6 and 19 and then allocating half of the the +total volume to each contract ? +to : jackie young / hou / ect @ ect +cc : rita wynne / hou / ect @ ect +subject : re : enerfin meter 980439 for 10 / 00 +jackie , +you did not allocate this according to ray ' s schedule . the track id i gave +you was only for the purchase from ena . you need to extend the deal for the +purchase from dynegy . you put all of the volume on these 2 days on ena , +that is not what is on ray ' s schedule , so we are still out on the +interconnect report . +jackie young +12 / 15 / 2000 10 : 30 am +to : sherlyn schumack / hou / ect @ ect +cc : alfonso trabulsi / hou / ect @ ect , rita wynne / hou / ect @ ect , gregg +lenart / hou / ect @ ect +subject : re : enerfin meter 980439 for 10 / 00 +accounting arrangement has been placed . meter has been reallocated . +thanks and let me know if you need anything else . +- jackie - +3 - 9497 +from : sherlyn schumack 12 / 15 / 2000 10 : 00 am +to : jackie young / hou / ect @ ect , alfonso trabulsi / hou / ect @ ect +cc : rita wynne / hou / ect @ ect , gregg lenart / hou / ect @ ect +subject : enerfin meter 980439 for 10 / 00 +jackie , +your allocation is correct with the exception of days 10 / 6 and 10 / 19 where +strangers gas is allocated . i have created an accounting arrangement for +these days and the new track id for ena is 240384 . please allocate the ena +portion according to rays schedule for these 2 days . deal 422516 ( purchase +from dynegy ) needs to be extended for these 2 days so i can do an accounting +arrangement . alfonso i need for you to allocate your meter daily , because +we have tiered pricing this month . +thanks . \ No newline at end of file diff --git a/hw/hw1/data/ham/3138.2000-12-19.farmer.ham.txt b/hw/hw1/data/ham/3138.2000-12-19.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c726922c57926d5a6734d44ec8557340c263a4a1 --- /dev/null +++ b/hw/hw1/data/ham/3138.2000-12-19.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: enron / hpl nom for december 20 , 2000 +( see attached file : hplnl 220 . xls ) +- hplnl 220 . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/3177.2000-12-21.farmer.ham.txt b/hw/hw1/data/ham/3177.2000-12-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8307ce281d9ddb23b8fcce7c6a3a637fc4b1a011 --- /dev/null +++ b/hw/hw1/data/ham/3177.2000-12-21.farmer.ham.txt @@ -0,0 +1,13 @@ +Subject: january 2001 - mcnic / lyondell noms . +fyi ! +- - - - - - - - - - - - - - - - - - - - - - forwarded by aimee lannou / hou / ect on 12 / 21 / 2000 11 : 02 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +" kevin olson " on 12 / 18 / 2000 12 : 19 : 44 pm +to : " amy lannou " +cc : " janice berke - davis " +subject : january 2001 - mcnic / lyondell noms . +amy , +please note that the mcnic noms for january , 2001 into the lyondell +channelview plant via hpl will be 10 , 000 mmbtu / day . +please call should you have any questions . +thanks ! \ No newline at end of file diff --git a/hw/hw1/data/ham/3282.2001-01-08.farmer.ham.txt b/hw/hw1/data/ham/3282.2001-01-08.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd7c3f5649d760925928f10a29edb6ea954a8d55 --- /dev/null +++ b/hw/hw1/data/ham/3282.2001-01-08.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: revised spreadsheet +new additions . \ No newline at end of file diff --git a/hw/hw1/data/ham/3285.2001-01-09.farmer.ham.txt b/hw/hw1/data/ham/3285.2001-01-09.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7246ceae3e1e433e0d03b242833dd62e82cb7f66 --- /dev/null +++ b/hw/hw1/data/ham/3285.2001-01-09.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: dec 00 +daren - meter 5192 flowed 8 dth on 12 / 19 , 33 dth on 12 / 20 and 2 dth on +12 / 29 . the last deal for this meter was 454057 in nov 00 . could you please +extend this deal for these 3 days or create a new one ? please let me know . +al \ No newline at end of file diff --git a/hw/hw1/data/ham/3396.2001-01-22.farmer.ham.txt b/hw/hw1/data/ham/3396.2001-01-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a2c47b9e23951e0f43082d1644dffa1a59e9981 --- /dev/null +++ b/hw/hw1/data/ham/3396.2001-01-22.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: enron net works - t & e policy +please review the attached t & e policy for enron net works . \ No newline at end of file diff --git a/hw/hw1/data/ham/3403.2001-01-23.farmer.ham.txt b/hw/hw1/data/ham/3403.2001-01-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b457cc001328e60fea57e6f21da81b84f468450 --- /dev/null +++ b/hw/hw1/data/ham/3403.2001-01-23.farmer.ham.txt @@ -0,0 +1,11 @@ +Subject: february wellhead production estimate +bob , +please see the attached file estimating wellhead production for the month of +february . please be advised that this is a preliminary estimate as to this +date , we have received one nom for february . i will update you with any +revisions as they occur . +i ' ll be out of the office on tomorrow ; however , i will return to the office +on thursday . +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw1/data/ham/3437.2001-01-25.farmer.ham.txt b/hw/hw1/data/ham/3437.2001-01-25.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b76ad61ac8c528d8a0802c63de4ccfeebe0b7dd --- /dev/null +++ b/hw/hw1/data/ham/3437.2001-01-25.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: calpine daily gas nomination +> > +ricky a . archer +fuel supply +700 louisiana , suite 2700 +houston , texas 77002 +713 - 830 - 8659 direct +713 - 830 - 8722 fax +- calpine daily gas nomination 1 . doc +- calpine monthly gas nomination _ _ _ . doc \ No newline at end of file diff --git a/hw/hw1/data/ham/3480.2001-01-30.farmer.ham.txt b/hw/hw1/data/ham/3480.2001-01-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a1513ab5b60e32e93c736d1c354f5dd0544ef58 --- /dev/null +++ b/hw/hw1/data/ham/3480.2001-01-30.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: enron / hpl actuals for january 29 , 2001 +teco tap 28 . 333 / enron \ No newline at end of file diff --git a/hw/hw1/data/ham/3578.2001-02-14.farmer.ham.txt b/hw/hw1/data/ham/3578.2001-02-14.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8292d279fbc7db1f34bd9afc924dc98d1373d703 --- /dev/null +++ b/hw/hw1/data/ham/3578.2001-02-14.farmer.ham.txt @@ -0,0 +1,7 @@ +Subject: meter 5097 +daren , +do you know if there should be a deal in place for midcoast on this meter for +january ? currently , it only shows ena . i understand that a deal was added +in december for midcoast , but that deal was only good for dec . +thanks . +mike \ No newline at end of file diff --git a/hw/hw1/data/ham/3626.2001-02-21.farmer.ham.txt b/hw/hw1/data/ham/3626.2001-02-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1788423e4ad892bf86896c47196ad85c1f2a96b --- /dev/null +++ b/hw/hw1/data/ham/3626.2001-02-21.farmer.ham.txt @@ -0,0 +1,28 @@ +Subject: harassment avoidance - clarification +* * clarification * * +harassment prevention training +this training is mandatory for all enron employees employed since the last +seminar was conducted in late 1998 or early 1999 . those who have already +attended enron harassment avoidance training will be offered a refresher +course in avoiding and preventing harassment . +to contribute our personal best at enron , our conduct must promote respectful +and co - operative work relationships . workplace harassment conflicts with +enron ' s vision and values and violates company policy . harassment also can +violate federal and state laws . by understanding what harassment is and its +potential harm , we can prevent it in our workplace . +during this training you will : +be able to recognize harassment +learn to take precautions against being harassed +learn to avoid being considered a harasser +know how to address a situation involving harassment +learn how harassment prevention is consistent with enron values +please click here ( ) to sign up for the session of your choice . if you +have problems registering or have any questions , please call 713 853 - 0357 . +we are pleased to announce that all employees of ews and ees will receive +harassment prevention training . +the dates and times available for the sessions are : +friday , feb 23 ; 1 : 00 - 2 : 30 ; 2 : 45 - 4 : 15 +monday mar 5 ; 1 : 00 - 2 : 30 ; 2 : 45 - 4 : 15 ; 4 : 30 - 6 : 00 +all training sessions will be held in the lasalle room at the doubletree +hotel . +there is a $ 50 charge for each attendee in the training session . \ No newline at end of file diff --git a/hw/hw1/data/ham/3701.2001-03-02.farmer.ham.txt b/hw/hw1/data/ham/3701.2001-03-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab8f4dec503c1e9642097d9c4427b011499aeb3d --- /dev/null +++ b/hw/hw1/data/ham/3701.2001-03-02.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: meter 1031 baytown exxon +daren - the valve for meter 1031 was not shut off in time on 3 / 1 . it flowed +about 1 . 200 . could you please extend the deal for one day ( deal 589188 ) ? +thanks . +al \ No newline at end of file diff --git a/hw/hw1/data/ham/3716.2001-03-06.farmer.ham.txt b/hw/hw1/data/ham/3716.2001-03-06.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..f88dddf6f31f6935967fe3ff5346ed4fce2d88ad --- /dev/null +++ b/hw/hw1/data/ham/3716.2001-03-06.farmer.ham.txt @@ -0,0 +1,7 @@ +Subject: tenaska iv feb 2001 +we do not have a demand fee for the feb 2001 tenaska iv sale , deal 384258 . +can you please put this in so i can bill ? from your spreadsheet , it looks +like it needs to be $ 2 , 291 , 888 . 83 , but you can verify . i subtracted the +agency fee from the tenaska iv receipt number , since we already have that +booked . +megan \ No newline at end of file diff --git a/hw/hw1/data/ham/3939.2001-03-22.farmer.ham.txt b/hw/hw1/data/ham/3939.2001-03-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..16b7648422870a74bd163052cfccc0c1f6d162be --- /dev/null +++ b/hw/hw1/data/ham/3939.2001-03-22.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: hpl nom for march 22 , 2001 +( see attached file : hplno 323 . xls ) +- hplno 323 . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/3967.2001-03-23.farmer.ham.txt b/hw/hw1/data/ham/3967.2001-03-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..88e2361171c67262bac35c728d87cbe145313416 --- /dev/null +++ b/hw/hw1/data/ham/3967.2001-03-23.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: hpl nom for march 24 - 26 , 2001 +( see attached file : hplno 324 . xls ) +- hplno 324 . xls \ No newline at end of file diff --git a/hw/hw1/data/ham/3989.2001-03-23.farmer.ham.txt b/hw/hw1/data/ham/3989.2001-03-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfab92d7622fe525ff72bc1432b97b5b462ccd7a --- /dev/null +++ b/hw/hw1/data/ham/3989.2001-03-23.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: calpine daily gas nomination +still under our scheduled maintenance outage , calpine will run the plant +baseload testing the a unit using an estimated volume of 88 , 000 mmbtu / day . +unit c will go off at midnight saturday . the estimate for sunday and monday +will be around 65 , 000 mmbtu / day . please call if you have any questions . +thanks . +> +- calpine daily gas nomination 1 . doc \ No newline at end of file diff --git a/hw/hw1/data/ham/3999.2001-03-26.farmer.ham.txt b/hw/hw1/data/ham/3999.2001-03-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..27287982b1cfce6a196be42d580b30c8ed95f18a --- /dev/null +++ b/hw/hw1/data/ham/3999.2001-03-26.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: dear owner +as of the 4 th april 2001 we will be changing our bank from lloyds tsb to +citibank . +sunsail worldwide sailing limited +citibank . n . a +the strand +london +if you have any problems receiving your monthly or quarterly payments , please +do not hesitate to contact me . +with kind regards +jo hillier - smith +owner care manager +sunsail worldwide sailing ltd +tel : + 44 ( 0 ) 2392 222215 +email : joh @ sunsail . com +this e - mail and any attachment is intended for the named addressee ( s ) +only , or a person authorised to receive it on their behalf . the content +should be treated as confidential and the recipient may not disclose this +message or any attachment to anyone else without authorisation . unauthorised +use , copying or disclosure may be unlawful . if this transmission is received +in error please notify the sender immediately and delete this message from +your e - mail system . any view expressed by the sender of this message or any +attachment may be personal and may not represent the view held by the company . +sunsail limited ( company number 1239190 ) or sunsail worldwide sailing +limited ( company number 1658245 ) ? both with registered offices at the port +house , port solent , portsmouth , hampshire , po 6 4 th , england \ No newline at end of file diff --git a/hw/hw1/data/ham/4017.2001-03-26.farmer.ham.txt b/hw/hw1/data/ham/4017.2001-03-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5720892c503645f0bf7caa8d48dc85529f43151 --- /dev/null +++ b/hw/hw1/data/ham/4017.2001-03-26.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: april nominations at shell deer park +- - - - - - - - - - - - - - - - - - - - - - forwarded by gary w lamphier / hou / ect on 03 / 26 / 2001 +09 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +" shankster jl ( luther ) " on 03 / 24 / 2001 10 : 26 : 11 pm +to : " lamphier , gary " +cc : " carter , john " , " oppio , janet " +, " ricks , ruth " +subject : april nominations at shell deer park +gary , +april 2001 nominations for gas delivery to shell deer park are as follows : +firm baseload - 60 , 000 mmbtu / d +spot swing supply - 0 ( zero ) +delivery of the above contract quantities is expected to be as follows : +hpl - hp hpl - e hpl - s +firm 35 , 000 mmbtu / d 25 , 000 mmbtu / d - 0 - mmbtu / d +refinery turnaround activity started in january has been completed . chemical +plant turnaround work is scheduled to begin in april and conclude in may . +please note the zero nomination for the hpl - s station during the olefin +turnaround . +please let me know if you have any questions +j . luther shankster +energy & utilities planning +> phone : 713 / 277 - 9307 +> fax : 713 / 277 - 9941 +> e - mail : jlshankster @ equiva . com +> \ No newline at end of file diff --git a/hw/hw1/data/ham/4072.2001-03-28.farmer.ham.txt b/hw/hw1/data/ham/4072.2001-03-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c364252b1e70988ab997b7379d5c201de4c75c86 --- /dev/null +++ b/hw/hw1/data/ham/4072.2001-03-28.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: kcs resources nom - april 1 +the nom for kcs resources ( deal # 125822 ) at meter # 9658 has been revised +from 7 , 129 to 5 , 500 . +bob \ No newline at end of file diff --git a/hw/hw1/data/ham/4157.2001-04-02.farmer.ham.txt b/hw/hw1/data/ham/4157.2001-04-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0170ac0e5458b921a9f53fdddddb751e2d1fc3d --- /dev/null +++ b/hw/hw1/data/ham/4157.2001-04-02.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: first deliveries - comstock oil & gas and hesco gathering company +see attached letters \ No newline at end of file diff --git a/hw/hw1/data/ham/4335.2001-04-20.farmer.ham.txt b/hw/hw1/data/ham/4335.2001-04-20.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..836d838439e59e53b7c9f7269c8f029f037894c5 --- /dev/null +++ b/hw/hw1/data/ham/4335.2001-04-20.farmer.ham.txt @@ -0,0 +1,7 @@ +Subject: fw : on call +- - - - - original message - - - - - +from : jackson , brandee +sent : friday , april 20 , 2001 3 : 11 pm +to : heal , kevin ; mcisaac , lisa ; hedstrom , peggy ; spencer , candace ; espey , darren ; gilmore , tammy ; mcomber , teresa ; adams , jacqueline ; evans , ted ; acton , tom ; villarreal , jesse ; franklin , cynthia ; loving , scott ; casas , joe ; collins , joann ; ordway , chris ; allwein , robert ; dinari , sabra ; sanchez , christina ; loocke , kelly ; halstead , lia ; pendergrass , cora ; carter , tamara +cc : lamadrid , victor ; sullivan , patti ; kinsey , lisa ; choate , heather ; saldana , alex ; superty , robert +subject : on call \ No newline at end of file diff --git a/hw/hw1/data/ham/4348.2001-04-23.farmer.ham.txt b/hw/hw1/data/ham/4348.2001-04-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bf121a750d42fbaaf79c91e21e8b68ef66cc567 --- /dev/null +++ b/hw/hw1/data/ham/4348.2001-04-23.farmer.ham.txt @@ -0,0 +1,15 @@ +Subject: re : noms / actual vol for april 22 nd +we agree +" eileen ponton " on 04 / 23 / 2001 10 : 57 : 34 am +to : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa +jones / texas utilities @ tu , hpl . scheduling @ enron . com , liz . bellamy @ enron . com +cc : +subject : noms / actual vol for april 22 nd +date nom mcf mmbtu +4 / 20 25 , 000 24 , 402 25 , 061 ( flowed from 13 : 00 to 9 : 00 +am - 20 hours ) +4 / 21 15 , 625 15 , 829 16 , 256 ( flowed from 9 : 00 am to +24 : 00 - 15 hours ) +4 / 22 25 , 500 25 , 148 25 , 827 ( flowed from 16 : 00 to 9 : 00 +am - 17 hours ) +btu = 1 . 027 \ No newline at end of file diff --git a/hw/hw1/data/ham/4398.2001-04-26.farmer.ham.txt b/hw/hw1/data/ham/4398.2001-04-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..887412ad7c4b66013fa07cee7304da8a530d9181 --- /dev/null +++ b/hw/hw1/data/ham/4398.2001-04-26.farmer.ham.txt @@ -0,0 +1,6 @@ +Subject: eex update +daren , +as i mentioned on tuesday , santiago and i met with jill and jennifer regarding the eex physical bids . thay have narrowed the targeted production down to 10 fields . +attached is a file that summarized our discussions . the items marked in yellow are ones jill is requesting your services , mainly to see if we can get transport and keep our bid competitive . please review and we can talk sometime tomorrow as i have meetings all afternoon today . if you have a chance to start working this today and have some questions , just call jill , jennifer or santiago . +thanks , +eric \ No newline at end of file diff --git a/hw/hw1/data/ham/4423.2001-04-27.farmer.ham.txt b/hw/hw1/data/ham/4423.2001-04-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ea5dd64882923047a78b0c6dc6cc42928fa8a33 --- /dev/null +++ b/hw/hw1/data/ham/4423.2001-04-27.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: eastrans nomination change effective 4 / 28 / 01 +please increase deliveries into eastrans to 30 , 000 mmbtu / dy effective +4 / 28 / 01 and maintain flow for 4 / 28 , 4 / 29 & 4 / 30 . gas flow will go to 0 +mmbtu / dy on 5 / 1 / 01 . +the redeliveries will be 30 , 000 mmbtu / dy into pg & e @ carthage hub tailgate . \ No newline at end of file diff --git a/hw/hw1/data/ham/4452.2001-05-01.farmer.ham.txt b/hw/hw1/data/ham/4452.2001-05-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbb6de4a5cbe2bc4f88c052b457d51073bad1d8e --- /dev/null +++ b/hw/hw1/data/ham/4452.2001-05-01.farmer.ham.txt @@ -0,0 +1,23 @@ +Subject: fw : equistar noms +here are the deals # ' s the equistar meter volumes are on . +if something looks wrong - let me know . julie +equistar +d 1373 channel 10 greater of 4 . 07 or 1 - . 20 deal # 604159 +d 1373 channel 5 greater of 3 . 30 or 1 - . 20 deal # 448443 +d 1373 channel 2 greater of 2 . 20 or 1 - . 05 deal # 240061 +d 8024 bayport polymers 3 greater of 2 . 20 or 1 - . 05 deal # 240061 +d 1399 matagorda polymars 4 greater of 2 . 20 or 1 - . 05 deal # 240061 +d 1552 qel @ laporte 5 greater of 2 . 68 or 1 - . 10 deal # 452598 +d 1552 qel @ laporte 5 greater of 3 . 30 or 1 - . 20 deal # 448443 +d 1062 port arthur 1 greater of 2 . 20 or 1 - . 05 deal # 240061 +d 1384 chocolate bayou 10 greater of 2 . 23 or 1 - . 05 deal # 157572 +subtotal 45 +third party +1373 +phllips 3 deal # 762340 +sempra 15 deal # 755750 +n . e . t . 10 deal # 157572 +1552 +morgan and stanley 5 +sub total 33 +grand total 78 \ No newline at end of file diff --git a/hw/hw1/data/ham/4458.2001-05-02.farmer.ham.txt b/hw/hw1/data/ham/4458.2001-05-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..2158d3e7a54f4b9c1d49283e804d8ffb5166af0e --- /dev/null +++ b/hw/hw1/data/ham/4458.2001-05-02.farmer.ham.txt @@ -0,0 +1,13 @@ +Subject: re : noms / actual vols for may lst +we agree +" eileen ponton " on 05 / 02 / 2001 10 : 56 : 36 am +to : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa +jones / texas utilities @ tu , hpl . scheduling @ enron . com , liz . bellamy @ enron . com +cc : +subject : noms / actual vols for may lst +nom mcf mmbtu +47 , 500 43 , 506 44 , 681 +nom : +9 : 00 to 14 : 00 30 , 000 ( 5 hours ) +14 : 00 - 4 : 00 60 , 000 ( 10 hours ) +4 : 00 to 9 : 00 40 , 000 ( 5 hours ) \ No newline at end of file diff --git a/hw/hw1/data/ham/4706.2001-06-27.farmer.ham.txt b/hw/hw1/data/ham/4706.2001-06-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1839acc584ec252fdfd528b8ff382b9fba3af088 --- /dev/null +++ b/hw/hw1/data/ham/4706.2001-06-27.farmer.ham.txt @@ -0,0 +1,100 @@ +Subject: fw : a weygandt , andrew ; glover , rusty ; beard , jaime ; +woodson , todd ; ratzman , eric ; eckermann , derrek ; walker , sam +subject : fw : a & m and espn +for immediate release +june 26 , 2001 +espn to launch sidelines network ' s second reality - based series to +premiere with texas a & m football +espn will launch a 13 - episode , prime - time series this fall entitled +sidelines , the network ' s second reality - based title under the espn +original +entertainment ( eoe ) banner . sidelines will document the season of a +prominent team as told through the eyes and ears of the less visible , +less +celebrated people who are involved with the team . the football aggies +of +texas a & m will be the focus of the series ' premiere episodes to begin +october 5 . +" coach slocum and i made the decision to be a part of this exciting +venture +with espn , " texas a & m athletics director wally groff said . " we couldn ' t +be +more thrilled that espn has chosen texas a & m for this series . the +opportunity espn gave us to showcase this wonderful institution and all +of +its tradition and heritage is something we could not pass up . " +in a " docu - drama " style , the various stories that surround the team will +be +explored through the voices and actions of people whose day - to - day lives +are +directly affected by living in the town and / or going to the school . +players +and coaches will also be visible and heard from in a more peripheral +fashion , but will not be the primary focus . +" this is a good opportunity for texas a & m university and we ' re delighted +espn decided to feature the football program and some of the people +behind +the scenes , " head coach r . c . slocum said . " we look forward to working +with +them . " +the participants will be drawn from a cross section of people who +reflect +every aspect of the university and college station , texas . they will be +students , faculty , media , local storeowners , mothers , fathers and some +of +the high school seniors who aspire to attend the university . +" each person has a role to play with the team , as well as a personal +story , " +said mark shapiro , vice president and general manager , espn original +entertainment . " sidelines will see each person grow in character as the +season progresses - - a kind of ' soap - umentary . ' we ' ll weave the smaller +personal stories together through the bigger story of the progression +and +fate of the team and its season . " +sidelines : texas a & m storylines +- - this is the 125 th anniversary of the school ' s founding ( 1876 ) . +- - the community is still very much dealing with the 1999 bonfire +collapse +which tragically killed 12 students almost two years ago . a 90 - year +tradition came to a tumultuous end . dealing with the loss and the +emotional +toll it took on faculty members , students and families will be an +important +part of this series . the bonfire will return in 2002 but will take on a +different form than has been tradition . +- - texas a & m , who lost a wild , snowy independence bowl last year in +overtime +to mississippi state 43 - 41 , will play notre dame ( at home ) , texas , +oklahoma , +kansas st and colorado next year . a tough schedule will provide for +great +drama . +- - the school invented the phrase " 12 th man " and actually owns the +trademark . +one game , the aggies were low on players and had a student suit up and +stand +ready just in case he was needed . ever since , a student is chosen for +every +home game to suit up and play on the kickoff team . +- - billy pickard is in charge of maintaining the facilities . he ' s been at +the +university for 36 years and was the student trainer for bear bryant ' s +a & m +team . he was actually in junction , texas for bryant ' s infamous grueling +summer camp . the story of it was a best - selling book , the junction boys . +- - at midnight on the friday night before every home game , a " +30 , 000 +fans show up each week for this time - honored tradition . +eoe , the newest franchise of espn programming , will develop a +wide - variety +of branded programming outside of the network ' s traditional event and +sports +news genres . using a collection of vehicles - - game shows , documentaries +or +reality - based shows - it ' s espn ' s goal to broaden its audience by +appealing +to younger and casual sports fans . in addition , the company is +exploring +new ways to connect with consumers by applying these projects across all +platforms of the espn family - television , internet , radio +- atm - \ No newline at end of file diff --git a/hw/hw1/data/ham/4713.2001-06-28.farmer.ham.txt b/hw/hw1/data/ham/4713.2001-06-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..b54209de27a1c0055cd2ca24f3e9ba51a6e2f26c --- /dev/null +++ b/hw/hw1/data/ham/4713.2001-06-28.farmer.ham.txt @@ -0,0 +1,42 @@ +Subject: re : txu fuel deals imbalances +i ' m not sure , this request is coming from settlements . . . o +- - - - - original message - - - - - +from : farmer , daren j . +sent : thursday , june 28 , 2001 10 : 28 am +to : winfree , o ' neal d . +subject : re : txu fuel deals imbalances +ow , +was this passed through janet wallis ? +d +- - - - - original message - - - - - +from : winfree , o ' neal d . +sent : thursday , june 28 , 2001 10 : 18 am +to : farmer , daren j . +subject : fw : txu fuel deals imbalances +daren , +the deals listed below are related to tufco imbalances . . . let me know if you have any objections to me entering the deals . . . o ' neal 3 - 9686 +- - - - - original message - - - - - +from : griffin , rebecca +sent : thursday , june 28 , 2001 9 : 58 am +to : winfree , o ' neal d . +subject : txu fuel deals +as my voice mail said , could you add deals for the following : +date : 1 / 31 - 1 / 31 +location : pgev / for tufco / 4300101 +volume : 1 , 357 mmbtu +price : $ 3 . 94 +this should be entered as a purchase with enron as buyer +date : 4 / 30 - 4 / 30 +location : pgev / for tufco / 4300101 +volume : 8 , 726 mmbtu +price : $ 3 . 94 +this should be entered as a sale with enron as seller +date : 5 / 31 - 5 / 31 +location : pgev / for tufco / 4300101 +volume : 9 , 912 mmbtu +price : $ 3 . 94 +this should be entered as a purchase with enron as buyer +this is related to the txu fuel wagner brown contract . please let me know if you have any questions . +thanks , +rebecca +713 - 571 - 3189 \ No newline at end of file diff --git a/hw/hw1/data/ham/4739.2001-07-10.farmer.ham.txt b/hw/hw1/data/ham/4739.2001-07-10.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cedab3b1c77f95e381e6ce74a879414ce98d26e --- /dev/null +++ b/hw/hw1/data/ham/4739.2001-07-10.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: lng mtg +when : wednesday , july 11 , 2001 4 : 30 pm - 5 : 00 pm ( gmt - 06 : 00 ) central time ( us & canada ) . +where : eb 3259 +* ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * \ No newline at end of file diff --git a/hw/hw1/data/ham/4858.2001-09-04.farmer.ham.txt b/hw/hw1/data/ham/4858.2001-09-04.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..aba729abde9246e831e53c864eefa35653743013 --- /dev/null +++ b/hw/hw1/data/ham/4858.2001-09-04.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: password reset +this is a generated email - do not reply ! +if you need further assistance , contact the isc help desk at : 713 - 345 - 4727 +the password for your account : po 0507544 has been reset to : 14031399 \ No newline at end of file diff --git a/hw/hw1/data/ham/4892.2001-09-12.farmer.ham.txt b/hw/hw1/data/ham/4892.2001-09-12.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc6e5217f1fb05335d52f52628b329f08ae05dd6 --- /dev/null +++ b/hw/hw1/data/ham/4892.2001-09-12.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: covenants - project miracle +as individuals involved in the day - to - day oversight and management of ppep ' s cleburne facility , it ' s important that you are familiar with and follow the covenants set out under the purchase agreement signed with mesquite investors , llc ( an el paso affiliate ) on september 7 . those covenants are contained in section 5 . 4 of the purchase agreement , which is attached for your reference . +the covenants are fairly self - explanatory . however , if you have any questions concerning their interpretation or implementation , please contact joe henry at ( 713 ) 345 - 1549 or me at ( 713 ) 853 - 6027 . +thanks , +rh \ No newline at end of file diff --git a/hw/hw1/data/ham/4933.2001-09-26.farmer.ham.txt b/hw/hw1/data/ham/4933.2001-09-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c886c0c93e60b63a5201d0b7d8bb051f91dd938 --- /dev/null +++ b/hw/hw1/data/ham/4933.2001-09-26.farmer.ham.txt @@ -0,0 +1,11 @@ +Subject: proposed rule extends marketing affiliate regulations to all +affiliates +ngi ' s daily gas price index +breaking news : posted sep 26 , 4 : 16 pm +proposed rule extends marketing affiliate regulations to all affiliates +federal energy regulatory commissioners wednesday agreed to issue a notice of proposed rulemaking broadening the application of standards of conduct for transmission providers , including both natural gas pipelines and power lines , to require separation of the regulated monopolies from any other company affiliate . +previously , the rules simply required creation of a firewall , including separate operations in separate locations staffed by separate personnel , between gas pipelines and their marketing affiliates . the proposed rule would wall off both gas and electric transmission operations from any other affiliate , gas or electric , including financial affiliates . +the commission was presented with two options regarding the application of the proposed rule to electric transmission affiliates , which still in many cases have bundled operations . one option would enforce complete separation , while a second would have exempted employees who deal in sales or purchases of bundled retail native load . staff and commissioners wood , william massey and nora brownell appeared to favor walling off all affiliated personnel , so they would not be privy to market information about transmission operations that other non - affiliated competitors did not have access to . +commissioner linda breathitt , however , argued for exempting personnel dealing solely with retail native load . breathitt said that while she supported the eventual separation of the entities , she was concerned about the timing . " i see no compelling reason at this time ; there have been no complaints and no evidence . " she said she thought state commissions might consider the move an infringement on their jurisdiction . " i agree with concept philosophically , but i think there will be other opportunities later on , after we do a little more bridge - building with state commissions . " +wood said he understood " the political issue here with respect to federal - state relations , but i think this is an opportunity for discrimination that ought to be eliminated . " staff pointed out that if there were any problems with transmission reliability or if some small utilities had problems , waivers could be granted . staff was questioned by the commissioners as to how much information was available to affiliate personnel . " if i am an affiliate employee dealing solely with retail native load , i can go into the control room and get all the information i want , " one staffer responded . +wood proposed , and the commissioners ratified , a proposed rule with no exceptions , but which makes clear that in the final rule the commission may reverse field and determine that separation of employees dealing with sales of native load is not required . commenting parties should provide cost / benefit analysis on both sides of the question . state commissions are also invited to comment . wood had suggested the commission extend the separation to all sales employees , " but make it clear that if we don ' t hear from people that they really want this separation , we ain ' t going to do it . " \ No newline at end of file diff --git a/hw/hw1/data/ham/5023.2001-10-30.farmer.ham.txt b/hw/hw1/data/ham/5023.2001-10-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a790d92dbf5e0e1c9170c8a05c9c3b6622ba4a05 --- /dev/null +++ b/hw/hw1/data/ham/5023.2001-10-30.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: 10 % off ! our gift to you ! +[ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] sears . com [ image ] gifts for your family from sears [ image ] sears customer appreciation sale take 10 % off everything * , even sale prices ! save an additional 10 % on everything * , even low sale prices ! this is your time to shop , literally ! four days only ? wednesday , october 31 through saturday , november 3 . [ image ] 10 % off everything [ image ] [ image ] sears . com where else ? [ image ] [ image ] [ image ] click to shop now ! [ image ] appliances appliances electronics electronics fitness & recreation fitness & recreation [ image ] computers & office computers & office tools tools lawn & garden lawn & garden [ image ] baby me babyme housewares housewares jewelry & watches jewelry & watches [ image ] [ image ] [ image ] [ image ] [ image ] wishbook [ image ] hurry in to wishbook . com and save 10 % * * thru 11 / 3 ! [ image ] room for kids optical [ image ] now through november 6 take 10 % * * * off any order at searsroomforkids . com - the best place to shop for all things kids ! $ 99 . 99 eyeglasses . any prescription . hundreds of frames available . to take advantage of this special offer from sears optical click here ! [ image ] * offer valid 10 / 31 ? 11 / 3 only . savings off regular , sale and clearance prices apply to merchandise only . not valid on exceptional values , outlet store purchases , catalog orders , shop at home catalog websites , calphalon +, bose +, maytag +, gemini ? , neptune ? and neptune superstack ? , maytag +wide by side ? , swiss army , casio wrist camera , introductory offers , special purchases , bf goodrich at / ko tires , automotive services , hearing aids , optical exam fees , licensed businesses , license business websites , ? sears presents ? websites , repair services , parts , installed home improvements and maintenance agreements . don ? t worry , your discount will appear on your order confirmation page . * * save 10 % off any order placed on wishbook . com through 11 / 3 / 01 . telephone orders are not included . discount applies to merchandise only , not shipping and handling or taxes . may not be used with other discounts or offers . * * * valid through november 6 , 2001 . telephone and mail orders are not included . discount applies to merchandise only , not shipping and handling or taxes . enter coupon code seml 03 when you check out to receive this discount . if you would no longer like to receive e - mailed special events information , sales notifications , or other messages from sears . com , please click here and follow the " unsubscribe " instructions . or reply to this email with " unsubscribe " in the subject line . your e - mail address will be removed within 5 business days from our email marketing list . thank you ! [ image ] +message - id : +[ image ] \ No newline at end of file diff --git a/hw/hw1/data/ham/5078.2001-11-20.farmer.ham.txt b/hw/hw1/data/ham/5078.2001-11-20.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fcf7e31e04f9321513ada47b92d46ab0373ac75 --- /dev/null +++ b/hw/hw1/data/ham/5078.2001-11-20.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: epgt +mike : +i am down to the last few error messages on the epgt quick response and also looking into the external pool for who 34 in unify . about 70 % of the line items have been cleaned up . +i need the following information from you as soon as possible . +1 . the downstream contract number for aquila marketing and a " scheduled quantity report " for the pooling contract who 34 , this is the report you would obtain from the pipeline at the end of each cycle to determine cuts etc . or you can give me the user id and password +and i can go pull it myself . +the epgt ' s it group is trying to research the correct duns # for aquila dallas marketing . if this issue is not resolved , i am planning on setting up a meeting with el paso on november 26 th at 1 : 30 at their offices and i would like for you to go with me . we will meet with their it and business group for about an hour or so . +your prompt attention to this will be greatly appreciated . +thank you . +shane lakho \ No newline at end of file diff --git a/hw/hw1/data/ham/5098.2001-12-05.farmer.ham.txt b/hw/hw1/data/ham/5098.2001-12-05.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7c68ce89d58c9dc0107a7114e648d096b03d5f9 --- /dev/null +++ b/hw/hw1/data/ham/5098.2001-12-05.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: equistar track id for meter 981373 +daren , +the new track id for that sale to equistar deal 240061 is 528403 on ena contract 012 - 27049 - 02 - 001 for the whole month of april , 2001 . +sherlyn schumack +sr . specialist +volume management +phone 713 853 - 7461 +fax 713 345 - 7701 \ No newline at end of file diff --git a/hw/hw1/data/ham/5127.2001-12-14.farmer.ham.txt b/hw/hw1/data/ham/5127.2001-12-14.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a729ad8b1d3ff4b52039ec5818fc705819a32769 --- /dev/null +++ b/hw/hw1/data/ham/5127.2001-12-14.farmer.ham.txt @@ -0,0 +1,51 @@ +Subject: re : killing ena to ena deals in sitara +mark : +here is a list of the 66 physical deals that were zeroed out from december 15 onwards las night . +there were also many financial deals that were killed , but i hope that does not matter to unify . +- - - - - original message - - - - - +from : mcclure , mark +sent : thursday , december 13 , 2001 5 : 11 pm +to : jaquet , tammy ; krishnaswamy , jayant +cc : pena , matt ; superty , robert ; wynne , rita ; pinion , richard ; farmer , daren j . ; heal , kevin ; kinsey , lisa ; lamadrid , victor ; smith , george f . ; sullivan , patti +subject : re : killing ena to ena deals in sitara +jay , +let ' s not assume what impact this will have . even though it is better to zero out deals we ( vm ) wouldn ' t want to go in and zero out 2000 deals . +we do have a few questions . +i would like to discuss what minimal impact is ? how do you know what impact this will have ? is there a reason this will have little impact ? do all of these d 2 d deals have zero volume associated with them ? +who decided to do this ? +why are we doing this ? +what time span are we talking ( production months / year ) +let ' s determine the impact if any ? +i would like to meet with you guys and get more detail on why we are doing this and determine the impact ? +thanks , +m . m . +- - - - - original message - - - - - +from : jaquet , tammy +sent : thursday , december 13 , 2001 4 : 29 pm +to : krishnaswamy , jayant +cc : pena , matt ; superty , robert ; mcclure , mark ; wynne , rita ; pinion , richard ; farmer , daren j . ; heal , kevin ; kinsey , lisa ; lamadrid , victor ; smith , george f . ; sullivan , patti +subject : re : killing ena to ena deals in sitara +importance : high +jay , +if a deal is killed it poses a problem for us in unify if there are any paths associated with the deal ; therefore , we request the deals be zeroed out . call me if this is a problem . also , we would appreciate further details on why these deals are being killed . +in addition , i have copied rita and mark from volume management for their input . +regards , +tammy +x 35375 +- - - - - original message - - - - - +from : pena , matt +sent : thursday , december 13 , 2001 3 : 39 pm +to : krishnaswamy , jayant ; pinion , richard ; jaquet , tammy +cc : severson , russ ; truong , dat ; aybar , luis ; ma , felicia +subject : re : killing ena to ena deals in sitara +thanks jay ! +tammy / richard : +you may want to let the schedulers know , although they may already . +- - - - - original message - - - - - +from : krishnaswamy , jayant +sent : thursday , december 13 , 2001 3 : 38 pm +to : pinion , richard ; jaquet , tammy +cc : severson , russ ; pena , matt ; truong , dat ; aybar , luis ; ma , felicia +subject : killing ena to ena deals in sitara +richars / tammy : +we will be killing about 2000 deals in sitara tonight . whenever a deal is touched in sitara , it will bridge over to unify . these are desk 2 desk deals , and should have minimal impact on you . \ No newline at end of file diff --git a/hw/hw1/data/mnist_X_test.npy b/hw/hw1/data/mnist_X_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..713ed45725931294c35cfbbbf69f7c18d220f1e8 --- /dev/null +++ b/hw/hw1/data/mnist_X_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3d0660b21bc3854bbe2c6485f08a2aa259ce3e3a1fc47e12e23a68d680c019e3 +size 31360128 diff --git a/hw/hw1/data/mnist_X_train.npy b/hw/hw1/data/mnist_X_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..d930f46060b5cbc4d458b409c682c8e10d98a3e2 --- /dev/null +++ b/hw/hw1/data/mnist_X_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0cbeadd10c146ea2ca600ddc0a38996c4a87121b7ee0f8dc396ed5537b4a0820 +size 188160128 diff --git a/hw/hw1/data/mnist_data.mat b/hw/hw1/data/mnist_data.mat new file mode 100644 index 0000000000000000000000000000000000000000..9cf89a063e3cfacf5acdc6f3e6a4872301477588 --- /dev/null +++ b/hw/hw1/data/mnist_data.mat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5a9761d048effa4effe368f357d1645d0169a1f0b0868e506a953509b8ab046c +size 54940344 diff --git a/hw/hw1/data/mnist_y_train.npy b/hw/hw1/data/mnist_y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6ab84ae57b6ef01a3f136b4d43cb972a843b3208 --- /dev/null +++ b/hw/hw1/data/mnist_y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5dd4d822cab3e20099239bc9d433d587ae3ce00e084d191079dd30b38380b336 +size 60128 diff --git a/hw/hw1/data/spam/0104.2003-12-29.GP.spam.txt b/hw/hw1/data/spam/0104.2003-12-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ce2416007773cd21f4802b3ad0fb99052531961 --- /dev/null +++ b/hw/hw1/data/spam/0104.2003-12-29.GP.spam.txt @@ -0,0 +1 @@ +Subject: = ? iso - 8859 - 7 ? q ? = 5 b = 3 f = 5 d _ fwd : 2 _ day _ sale _ on _ gener = edc _ vlagra ? = diff --git a/hw/hw1/data/spam/0135.2004-01-04.GP.spam.txt b/hw/hw1/data/spam/0135.2004-01-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..748c27a0f043d4c9ba7a04b0a307f96388d222bd --- /dev/null +++ b/hw/hw1/data/spam/0135.2004-01-04.GP.spam.txt @@ -0,0 +1,43 @@ +Subject: degree verification +get your +university diploma +do +you +want +a +prosperous future , increased +earning power +more money and +the respect +of all ? +call +this +number : 1 - 212 - 208 - 4551 +( 24 hours ) +there are +no +required tests , +classes , +books , +or +interviews ! +get +a +bachelors , +masters , +mba , +and doctorate ( phd ) +diploma ! +receive +the +benefits and +admiration that comes with +a diploma ! +no +one is +turned down ! +call +today 1 - 212 - 208 - 4551 +( 7 +days a week ) +confidentiality assured ! diff --git a/hw/hw1/data/spam/0176.2004-01-11.GP.spam.txt b/hw/hw1/data/spam/0176.2004-01-11.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bd31a9e4342be0c0cfea3d6ed01cc6931dc68fc --- /dev/null +++ b/hw/hw1/data/spam/0176.2004-01-11.GP.spam.txt @@ -0,0 +1,21 @@ +Subject: system information - january 5 th +christmass s @ | e - w ! ndows xp home +we have everything ! +wlndows x , p professional 2 oo 2 . . . . . . . . . . . 50 +adobe photoshop 7 . o . . . . . . . . . . . . . . . . . . . . . . . . 6 o +microsoft office x . p pro 2 oo 2 . . . . . . . . . . . . . . 6 o +corel draw graphics suite 11 . . . . . . . . . . . . . 60 +get it quickly : http : / / demagnify . goforthesoft . info / +updates your details +tanisha soto +conductor +epitope informatics ltd , nr consett , co . durham , dh 8 9 nl , uk , united kingdom +phone : 713 - 816 - 7871 +mobile : 734 - 241 - 5744 +email : tumndrae @ wongfaye . com +this message is beng sent to confirm your account . please do not reply directly to this message +this product is a 79 month trial software +notes : +the contents of this info is for understanding and should not be muddle paralysis +shamrock snuffer dragging +time : sun , 11 jan 2004 11 : 08 : 30 + 0200 diff --git a/hw/hw1/data/spam/0202.2004-01-13.GP.spam.txt b/hw/hw1/data/spam/0202.2004-01-13.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..694a89afdea24c62f2e3832984266d8cd956f687 --- /dev/null +++ b/hw/hw1/data/spam/0202.2004-01-13.GP.spam.txt @@ -0,0 +1,97 @@ +Subject: miningnews . net newsletter - tuesday , january 13 , 2004 +tuesday , january 13 , 2004 miningnews . net +to allow you to read the stories below , we have arranged a complimentary one month subscription for you . to accept , click here to visit our extended service at www . miningnews . net . alternatively , just click any of the stories below . should you wish to discontinue this service , you may click here to cancel your subscription , or email subscriptions @ miningnews . net . have some news of your own ? send your press releases , product news or conference details to submissions @ miningnews . net . +ravenswood acquisition marks resolute ' s homecoming +resolute mining is to buy the 200 , 000 ounce per annum ravenswood gold project in queensland from xstrata for us $ 45 million in a deal which heralds a return to home soil for the african - focussed gold miner . . . ( 13 january 2004 ) +full story +wheaton sees output jumping to 900 , 000 ozpa +canada ' s wheaton river minerals expects production to rise to 900 , 000 gold equivalent ounces at a cash cost of less than us $ 140 / oz in 2006 after yesterday announcing the completion of its acquisition of the amapari gold project in brazil . . . ( 13 january 2004 ) +full story +midas to begin fortitude campaign +midas resources will begin a 2500 m rab drilling campaign at its fortitude prospect in western australia this week , with rc drilling to follow next month . . . ( 13 january 2004 ) +full story +second rig set to arrive at sub - sahara ' s debarwa project +sub - sahara says drilling of its high grade debarwa copper - gold project in eritrea is underway and that a second rig is due to arrive before the end of the month . . . ( 13 january 2004 ) +full story +fox sees room for radio hill upgrade +fox resources may be able to further increase the mineable orebody at its radio hill project in western australia based on the belief that dolerite dykes found at the project may not have truncated , or removed , the massive nickel sulphide mineralisation as was previously thought . . . ( 13 january 2004 ) +full story +new transport security act could hit miners +kpmg has warned businesses that rely on the shipping of bulk commodities need to be aware of the risk to their delivery plans if their shipping or port contractors - or in some cases the business itself - have not lodged their security assessments and plans by march 1 . . . ( 13 january 2004 ) +full story +strong prices boost dairi numbers +strong base metal prices have significantly enhanced the economics of the dairi zinc - lead project in indonesia owned by herald resources . . . ( 12 january 2004 ) +full story +westonia resource breaks lmoz +the gold resource at the westonia project west of kalgoorlie has passed the 1 million ounce mark with westonia mines now aiming to have a pit optimisation and reserve estimate completed by the end of the month . . . ( 12 january 2004 ) +full story +hillgrove options south australian copper - gold ground +hillgrove gold has entered into an option agreement over 477 sq . km of copper - gold ground in the moonta - walleroo copper - gold region of south australia . . . ( 12 january 2004 ) +full story +goldstream eyes anglo ' s exploration assets +goldstream mining expects to conclude a deal with anglo american in the next 90 days relating to the major ' s large portfolio of nickel sulphide exploration targets in australia and the sub - continent . . . ( 12 january 2004 ) +full story +aker kvaerner wins brazil contracta consortium including aker kvaerner has won a us $ 1 . 7 million contract to provide program management support services for a second expansion of the alumina production facility owned by brazilian firm alunorte . . . . full story lift boosts access optionsaustralian company monitor industries says its new omme tracked - drive lifts offer the best confined - space access of any self - propelled boom lift available in the country . . . . miningnews . net ' s e - newsletter +uses an html - rich media format to provide a +visually attractive layout . if , for any reason , +your computer does not support html format e - mail , +please let us know by emailing contact @ miningnews . net +with your full name +and e - mail address , and we will ensure you receive +our e - newsletter in a plain - text format . if you have forgotten your password , please contact helpdesk @ miningnews . net . +have some news of your own ? send your press releases , product news or conference details to submissions @ miningnews . net . +aspermont limited ( abn 66 000 375 048 ) postal address po box 78 , leederville , wa australia 6902 head office tel + 61 8 9489 9100 head office fax + 61 8 9381 1848 e - mail contact @ aspermont . com website www . aspermont . com +section +dryblower +investment news +mine safety and health & environment +mine supply today +commodities +due diligence +exploration +general +ipos +mining events +moves +mst features +resourcestocks +commodity +coal +copper +diamonds +gold +nickel +silver +zinc +bauxite - alum +chromium +cobalt +gemstone +iron ore +kaolin +magnesium +manganese +mineral sand +oilshale +pgm +rare earths +salt +tantalum +tin +tungsten +uranium +vanadium +region +africa +all regions +asia +australia +europe +north americ +oceania +south americ +primex expo 2004 +ground support in mining ( in conjunction with bfp consultants ) +ajm ' s 7 th annual global iron ore & steel forecast conference : strengthening australia ' s ties to china within the iron & steel industry +minehaul 2004 - the 2004 haulage event for surface mining operators +show all events diff --git a/hw/hw1/data/spam/0256.2004-01-20.GP.spam.txt b/hw/hw1/data/spam/0256.2004-01-20.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ac7f17fd19d9f38e792514445a5ef3b000176d4 --- /dev/null +++ b/hw/hw1/data/spam/0256.2004-01-20.GP.spam.txt @@ -0,0 +1,18 @@ +Subject: = ? iso - 8859 - 7 ? q ? = 5 b = 3 f = 5 d _ _ want _ pills = 3 fviagr @ = 2 cval = ef = 28 u = 29 ? = += ? iso - 8859 - 7 ? q ? r = 5 b 4 - 15 = 5 d _ frdllad _ kf ? = +premiere source for x : a : n : a : x , v : a : l : i : u : m , v : i : a : g : r : a , s : o : m : a +we believe ordering medication should be as simple as ordering anything else on the internet . private , secure , and easy . +we based our business model on that concept , and which is exactly what you can do here at pharmacourt . +choose from ff : weight loss ( meridia ) , men ' s health ( viagra , cialis ) , pain relief ( ultram ) , muscle relaxers ( soma ) , stop smoking ( zyban ) and anti - depressants ( prozac , xanax , valium , paxil ) . +no prescription required . no long lengthy forms to fill out . so why wait choose your product and start living a healthier life today . +start ordering your meds here +we ship worldwide . all orders approved . . +% rnd _ phrase +% rnd _ phrase +% rnd _ phrase +% rnd _ phrase +kcfdzdbrfujeri qp kwscjubxahrcsm s +ziq +v +wy yjskrkpvrlctftgo o oymeektjx +fchoje qjjjpz \ No newline at end of file diff --git a/hw/hw1/data/spam/0307.2004-01-24.GP.spam.txt b/hw/hw1/data/spam/0307.2004-01-24.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2cbd0ae3aca284419d2ba1f5013a3f42f300da8 --- /dev/null +++ b/hw/hw1/data/spam/0307.2004-01-24.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: your 60 second auto loan will be accepted +please click the below if you do not want to hear about any more of our great offers : +http : / / eunsub . com / ? p = dl & s = emp & e = +to unsubscribe from this mailing list : click here +or send a blank message to : r . esalesl . 0 - 2 cc 6 deo - 1683 . iit . demokritos . gr . - paliourg @ 02 . bluerocketonline . com +this offer sent to you from : +optinrealbig . com llc +1333 w 120 th ave suite 101 +westminster , co 80234 diff --git a/hw/hw1/data/spam/0328.2004-01-29.GP.spam.txt b/hw/hw1/data/spam/0328.2004-01-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c1a17711186b38d53c5713d3c1d56c0a5f6770c --- /dev/null +++ b/hw/hw1/data/spam/0328.2004-01-29.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: lyz balk filters ? - forget xof 8 ttb +bulk email - we send for you ! - email with no fear ! we offer to send your emails at a speed of 100 ' s of letters per second . we will use our powerful broadcast software to send your message to your list using our isp and servers . no troubles for you ! bulk email marketlng is fast and effective , we do all the mailing for you . you just provide us with the ad ! it ' s that simple ! your email campaign can be underway , often in less than 24 hours . request more information on our email sending services . . . . . . even to compare our prices . . . if you would rather not recelve any further information from us , please * * * \ No newline at end of file diff --git a/hw/hw1/data/spam/0391.2004-02-08.GP.spam.txt b/hw/hw1/data/spam/0391.2004-02-08.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..79bf5e0463409176745bae69479023ad8ac95ef4 --- /dev/null +++ b/hw/hw1/data/spam/0391.2004-02-08.GP.spam.txt @@ -0,0 +1,124 @@ +Subject: cfp : int . conf . on web delivering of music , wedelmusic 2004 , barcelona , spain +sorry for any multiple reception of this message . +if you do not want to receive further information about wedelmusic 2004 , please send back an email with remove on the subject . +the topics of this e - mail are : +call for papers , submission deadline : 27 th february 2004 +4 th international conference on web delivering of music , wedelmusic 2004 +universitat pompeu fabra , barcelona , spain +13 th - 15 th september 2004 +call for contribution , submission within the 10 th of february +3 rd open workshop musicnetwork , munich , march 2004 +mpeg ahg on music notation requirements +13 - 14 of march 2004 , munich , germany +announcement of co - location of +4 th open workshop musicnetwork +universitat pompeu fabra , barcelona , spain +14 th - 16 th september 2004 +cheers , +paolo nesi , jaime delgado , kia ng +call for papers +4 th international conference on web delivering of music , wedelmusic 2004 +universitat pompeu fabra , barcelona , spain +13 th - 15 th september 2004 +http : / / www . upf . edu / wedelmusic 2004 / http : / / www . wedelmusic . org / +content distribution is presently not anymore limited to music and is becoming more +cross media oriented . new distribution models for old and new content formats are +opening new paths : i - tv , mobile phones , pdas , etc . the development of the internet +technologies introduces strong impact on system architectures and business processes . new national and international regulations , policies and market evolution are +constraining the distribution mechanisms . novel distribution models , development +and application of pervasive computing and multimedia strongly influence this multi - +disciplinary field . the need of content control and monitoring is demanding effective +digital rights management ( drm ) solutions integrated with sustainable business and +transaction models . these technologies impact on the production and modelling of +cross media content . +wedelmusic - 2004 aims to explore these major topics in cross media field , to address +novel approaches for distributing content to larger audiences , providing wider access +and encouraging broader participation . the impact of these developments on cultural +heritage is also considered , together with their availability to people with limited access to content . +the conference is open to all the enabling technologies behind these problems . we +are promoting discussion and interaction among researchers , practitioners , developers , +final users , technology transfer experts , and project managers . +topics +topics of interest include , but are not restricted to : +- - protection formats and tools for music +- - transaction models for delivering music , business models for publishers +- - copyright ownership protection +- - digital rights management +- - high quality audio coding +- - watermarking techniques for various media types +- - formats and models for distribution +- - music manipulation and analysis , transcoding , etc . . +- - music and tools for impaired people - braille +- - publishers and distributors servers +- - cross media delivery on multi - channel systems , mobile , i - tv , pdas , internet , etc . +- - automatic cross media content production +- - mpeg - 4 , mpeg - 7 and mpeg - 21 +- - viewing and listening tools for music +- - music editing and manipulation +- - music education techniques +- - content based retrieval +- - conversion and digital adaptation aspects , techniques and tools +- - music imaging , music sheet digitalisation , +- - solutions for cultural heritage valorisation +see for other topics the web site . +research papers +papers should describe original and significant work in the research and practice +of the main topics listed above . research case studies , applications and experiments +are particularly welcome . papers should be limited to approx . 2000 - 5000 words +( 8 pages ) in length . of the accepted paper , 8 pages will be published in the conference +proceedings . the conference proceedings book will be published by the ieee computer +society . +industrial papers +proposals for papers and reports of applications and tools are also welcome . +these may consist of experiences from actual utilisation of tools or industrial +practice and models . proposals will be reviewed by the industrial members of the +program committee . papers should be limited to approx . 1000 - 2500 words ( 4 pages ) +in length . of the accepted paper , 4 pages will be published in the conference +proceedings . +submissions +all submissions and proposals should be written in english following the ieee +format and submitted in pdf format via email to +wedelmusico 4 - submission @ altair . upf . edu +by 27 th feb 2004 . +4 th open workshop musicnetwork +universitat pompeu fabra , barcelona , spain +14 th - 16 th september 2004 +more details and the call for contribution will appear on : +http : / / www . . org +after the 3 rd open workshop as described in the following section +the access is free of charge , supported by the european commission . +call for contribution +3 rd open workshop musicnetwork , munich , march 2004 +mpeg ahg on music notation requirements +13 - 14 of march 2004 , munich , germany +http : / / www . . org +located at : +technische universit?t m?nchen , germany : http : / / www . mpeg - 68 . de / location . php +the open workshop of musicnetwork is at its third edition . the modeling ofmusic +notation / representation is a complex problem . music representation can be used +for several different purposes : entertainment , music education , infotainment , +music archiving and retrieval , music querying , music production , music profiling , +etc . in the current internet and multimedia age many other applications are +strongly getting the market attention and most of them will become more diffuse +of the present applications in short time . end users have discovered the multimedia +experience , and thus , the traditional music models are going to be replaced by +their integration with multimedia , audio visual , cross media . at present , there is +a lack of music notation / representation standard integrated with multimedia . the +aim of this workshop is to make a further step to arrive at standardizing a music +notation / representation model and decoder integrated into the mpeg environment , +that presently can be regarded as the most active and powerful set of standard +formats for multimedia consumers . +the topics of the workshop are related mainly focused on : +- - music notation / representation requirements +- - music protection and distribution +- - music description and its usage on archive query +please contribute with your work on the above topics , for details see the www site +of the workshop . +the access is be free of charge , supported by the european commission . +4 th open workshop musicnetwork +universitat pompeu fabra , barcelona , spain +14 th - 16 th september 2004 +more details and the call for contribution will appear on : +http : / / www . . org +after the 3 rd open workshop as described in the following section +the access is be free of charge , supported by the european commission . diff --git a/hw/hw1/data/spam/0407.2004-02-11.GP.spam.txt b/hw/hw1/data/spam/0407.2004-02-11.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..05454130c59df20c7dea14ace3d34b023c262162 --- /dev/null +++ b/hw/hw1/data/spam/0407.2004-02-11.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: my testimonial about skuper viakgra loquacity hunt associate beloit pasadena island cilia upbraid foursquare puppyish backward rapport councilwoman rood circumcircle tootle awake hamster duplicate amino blubber colorado teleprocessing ignore celebrate pan immigrant iowa buteo estes sec frederick throng galt deerstalker digitalis furnish +did you know that the normal cost for super vkiagra is $ 20 , per dose ? +we are running a hot special ! ! today its only an amazing $ 3 . 00 +shipped world wide ! +discount order : http : / / medsplanet . info / sv / ? pid = evapho 768 +- - - - - - - - - - - - - - - - - - - - +microsoft outlook imo , build 9 . 0 . 2416 ( 9 . 0 . 2910 . 0 ) +220 . 100 . 0 . 223 6883567435487221 diff --git a/hw/hw1/data/spam/0555.2004-02-22.GP.spam.txt b/hw/hw1/data/spam/0555.2004-02-22.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0a504082f0f5c84ff56fd01b2f625a54b1e072d --- /dev/null +++ b/hw/hw1/data/spam/0555.2004-02-22.GP.spam.txt @@ -0,0 +1,10 @@ +Subject: feeling down about the slze of your johnson . . . +rtxyj nxfgr ktrqr abtyw ifpyc edvve +smrzz ejwah mgjdq gfsae gnydw mexzx vsdbr lubbp +bvdkf otdmbipdtc viukj dnyuv bwekh ctqpm qywdu ywipb stcuy +fbnzx slcxz exanh cpxqw rpjiw hbqcu pifce qypyl hntql uignp +fpsus wrgcr ymkqh nkzzv wmkmp eoqlt +lthje jttsb uhmrq sjkct +pqhop gsnoq +otvhj ujcrh iagpn baqhr ajdhs ntznk +uuzqc kkesa eocwz vaous diff --git a/hw/hw1/data/spam/0578.2004-02-29.GP.spam.txt b/hw/hw1/data/spam/0578.2004-02-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..6521e41aa71903e56ed1d3d36c330dedda65f6bf --- /dev/null +++ b/hw/hw1/data/spam/0578.2004-02-29.GP.spam.txt @@ -0,0 +1,25 @@ +Subject: : : : : : : : : : : : like ma - a - sturbation : : : : : : : : : : : destructor +- - - - y - 0 - uu - n - g lovvers - - - - - +vir - r - gin t * e * e * n - n - s screw - w - ed +up the ass +slob - b - bering ove - e - r +simmer - r - ing coc - k - k ! +hear them squeal in delight ! +first cum - m - shots on her face ! +http : / / mmm - sex . biz / 90 yl / ? 5 wr 8 n +- like ma - a - sturbation +- ha - a - rd an - a - al lover +- fantastic ex - c - clusive vid - e - eos +exclu - u - sive cont - e - ent for yo - u - u +three sites at the pr - i - ice of one +you save $ 69 . 95 ! +your bonus site : +maxxxvideo yourvvvirgins +http : / / mmm - sex . biz / 90 yl / ? ewozn +erickson dementia occupation song acquaint far collocation composite berkshire gelatinous cabdriver gristmill decontrol drown gambol clandestine calvert . +household galactose befuddle contralateral aquarius curriculum ackerman psychometry dedicate compute allegra anodic . +golly ltv irreparable forbidden franklin ox catastrophic stunt bub osha promethean . +mignon renault sabina larry cheryl occur jaw articulate uranus inc babysit spastic deduct ac gerard sybil admiration dynamite craft conn inadequacy quadric stupor patrolling cable label . +missoula precarious shelley dwarf hokan reed idolatry upholster curriculum familiarly swede eternity workmen counterpart twofold pike changeable arabia isotopic mn apperception tinsel colloquium bode funny dharma rear socratic hirsch consensus bad wrath who ' ve due wastage adulterate dod elizabeth . +capistrano scuba detour apatite lighthouse dioxide weeks tacitus demo cradle rouse postcard downing pinball sunscreen decorous vicious hitchcock theretofore imp bathroom set cannabis betel steeplechase . +strait parks eben showy context amorphous damn bestubble isotropic lo crankcase accuse padre cosh fable wiremen adair switzerland nucleic torture coffer aching haugen eccles dogging agreeable glue concave shelton rattail she ' d . diff --git a/hw/hw1/data/spam/0588.2004-03-02.GP.spam.txt b/hw/hw1/data/spam/0588.2004-03-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..fac365975373a24f9bcd546dca4963769568f37a --- /dev/null +++ b/hw/hw1/data/spam/0588.2004-03-02.GP.spam.txt @@ -0,0 +1,30 @@ +Subject: best choice rx - free online prescriptions - fedexed overnight sm +order confirmation . your order +should be shipped by january , via fedex . your federal express tracking number +is . +thank you for registering . +canadian generic pharmacy ! +our doctors will write you a prescription for free +we believe ordering medication should be as simple as ordering anything else on the internet . private , secure , and easy . +no prescription required , no long lengthy forms to fill out . +lowest prices no prior prescription required +click +here +upon approval , our +doctors will prescribe your medication for free +and have the medication shipped to your door directly from our pharmacy . +we assure you the absolute +best value on the internet . +click +here +medications for : weight +loss , pain relief , muscle pain relief , women ' s health , men ' s health , +impotence , allergy relief , heartburn relief , migraine relief +generic medications like : phentermine , +ambien , paxil , xanax , vioxx , lipitor , +viagra and nexium ! all at a fraction of the cost ! +click +hereclick here if you would not like to receive future mailings . +pstinjrsr czyqoayi ijym +h u +c ardihmkvkgfkrbkipa bl \ No newline at end of file diff --git a/hw/hw1/data/spam/0647.2004-03-13.GP.spam.txt b/hw/hw1/data/spam/0647.2004-03-13.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b484d0a7bf572901de1d4ac14a65ff89db20e154 --- /dev/null +++ b/hw/hw1/data/spam/0647.2004-03-13.GP.spam.txt @@ -0,0 +1,3 @@ +Subject: free pay per view +had chance at last to view the warner bros . legends collection . all in all , not a bad deal , though yankee doodle dandy is not to my taste as entertainment , and the cartoons offered on that one are the most superfluous . " yankee doodle bugs " whose transfer is atrocious ) , those cartoons are also on looney tunes : the golden collection . the other two movies , the adventures of robin hood and treasure of the sierra madre , are true prizes of a golden era . first time that i ever saw either one and was impressed by the cinematography and performances . cartoons on those discs look as good as can be expected from laser videodisc masters . " rabbit hood " has some faded reds , and cross bunny " some distorted audio over the titles . and when the ice cream vendor wagon explodes , there is a sudden burst of blocky redartifacts over the lines of the black dust cloud . as this cartoon never had a laser videodisc or even a vhs release , it is possible the transfer in this case was done from an analog television print . the other cartoons in the set are serviceable . picture quality of katnip is typical of cartoons of the 1930 s , and " 8 ball bunny " and " hot cross bunny " fare marginally better than " rabbit hood " and " robinhood daffy " , the latter of which has a faint shimmer over some of the lines of characters and backgrounds . and all 5 are miles ahead of " yankee doodle bugs " . +had chance at last to view the warner bros . legends collection . all in all , not a bad deal , though yankee doodle dandy is not to my taste as entertainment , and the cartoons offered on that one are the most superfluous . " yankee doodle bugs " whose transfer is atrocious ) , those cartoons are also on looney tunes : the golden collection . the other two movies , the adventures of robin hood and treasure of the sierra madre , are true prizes of a golden era . first time that i ever saw either one and was impressed by the cinematography and performances . cartoons on those discs look as good as can be expected from laser videodisc masters . " rabbit hood " has some faded reds , and cross bunny " some distorted audio over the titles . and when the ice cream vendor wagon explodes , there is a sudden burst of blocky redartifacts over the lines of the black dust cloud . as this cartoon never had a laser videodisc or even a vhs release , it is possible the transfer in this case was done from an analog television print . the other cartoons in the set are serviceable . picture quality of katnip is typical of cartoons of the 1930 s , and " 8 ball bunny " and " hot cross bunny " fare marginally better than " rabbit hood " and " robinhood daffy " , the latter of which has a faint shimmer over some of the lines of characters and backgrounds . and all 5 are miles ahead of " yankee doodle bugs " . diff --git a/hw/hw1/data/spam/0726.2004-03-26.GP.spam.txt b/hw/hw1/data/spam/0726.2004-03-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b445af418ff05b70adf62a931e22cf58c4895e40 --- /dev/null +++ b/hw/hw1/data/spam/0726.2004-03-26.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: food for thoughts +[ +join now - take +a free tour ] +click here to be +removed . diff --git a/hw/hw1/data/spam/0758.2004-04-02.GP.spam.txt b/hw/hw1/data/spam/0758.2004-04-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d2c27841a0dff684e67cbc137392af7b24d9efb --- /dev/null +++ b/hw/hw1/data/spam/0758.2004-04-02.GP.spam.txt @@ -0,0 +1,3 @@ +Subject: bigger breast just from a pill +image is loading . cli ; k here for more info +i was then shipped off to a store . after about a week , a man bought me . as they sent me through rollers i fell asleep , expecting never to awaken . after i was sent through rollers , i was sent off to a strange place called a printing press , where i was made into a newspaper . diff --git a/hw/hw1/data/spam/0849.2004-04-14.GP.spam.txt b/hw/hw1/data/spam/0849.2004-04-14.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..82ac126412f36df575b9b97bd0da45f3b211790f --- /dev/null +++ b/hw/hw1/data/spam/0849.2004-04-14.GP.spam.txt @@ -0,0 +1,49 @@ +Subject: interesting stuff +hey , +i just heard +of this new drg called ilis and i thought you might +be interested in it . clis is the new rval to +vgra and is better +known as spr vagr or +dubbed the weeknd +viagr by the prss . +i just found +a place nlne that has the gnerc version for +a lot chper than getting it from a us phrmcy . +no prscrptions needed or ncessry . +bear +all ordrs backd by our 100 % , +30 dy , mony bak guarnte ! +shppd +worldwid +discretly . +your +easy - to - use solution is here +no +further emls plse +http : / / afteriwokeaabb . biz +_ word . fibration , pitt +edematous , biochemic . furman . lorelei , atmospheric hexagonal , roar +. frost . aloof , concise agglomerate , nate . deception . diopter 7 +, childbear 9 betray , firework . fetus . railway , nuclei +isotherm , fluke . cozy . oak , conner pathology , iconoclasm +. faint . bamberger , dragon hoop , judd . germicidal . harvestman +, poetic declaim , origin . accreditate . bilingual , bothersome impediment +, enfant . demagogue . inexpert , heretic buttermilk , career . possessor +. ithaca , bittersweet cornelia , coco . draftee . befit , cholinesterase +appeasable , laminar . douse . counterargument , brenner excise , secondary +. elmhurst . caught , champion assign , finger . blacken . from +, pyrex deliquescent , ferroelectric . candelabra . blowback , coxcomb pastime +, carbuncle . briton . abet , carfare goldenseal , gooseberry . drawn +. gullible , multipliable 4 hackneyed , feline . maturate . platypus +, leopold condominium , seaweed . contributor . qed , chaperon shrugging +, lateral . baseboard . quadrangular , englishman beckon , oman . dignity +. induce , bypath oxalate , ala . blab . lactate , hays +genre , hero . cheney . phenotype , abetting clamp , equidistant +. genuine . asocial , avocet arty , marc . evangelic . bolshevist +, deem ferric , ideal . calfskin . anthropomorphic , bravery civilian +, scrutiny . polk . hereby , senile decimate , ingersoll . danube +. datsun , bufflehead demerit , icebox . benefactor . infighting , chapman +endogenous , conjectural . colander . ganymede , nuzzle decease , exhort +. pauper . phage , awkward ideal , note . gingham . obtain +, firepower diff --git a/hw/hw1/data/spam/0862.2004-04-15.GP.spam.txt b/hw/hw1/data/spam/0862.2004-04-15.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..09b291d944907444836290252236e0496bb27b39 --- /dev/null +++ b/hw/hw1/data/spam/0862.2004-04-15.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: just got out of school +click here to be removed diff --git a/hw/hw1/data/spam/1040.2004-05-06.GP.spam.txt b/hw/hw1/data/spam/1040.2004-05-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..5931970cba64cd541ac292c1d6ef9428466e4a15 --- /dev/null +++ b/hw/hw1/data/spam/1040.2004-05-06.GP.spam.txt @@ -0,0 +1,30 @@ +Subject: hi paliourg have pills here . everything for you . coolant ymuhfikr leisure +hi paliourg , +we are providing an online solution to finding and receiving prescription medications from the comfort of your own home , you will be able to save money , save time , save yourself from worry , and most of all , save your life ! +valium 10 mg - [ 60 pills $ 279 . 99 ] [ 90 pills $ 329 . 99 ] [ 120 pills $ 369 . 99 ] +xanax 1 mg - [ 30 pills $ 169 . 00 ] [ 60 pills $ 229 . 00 ] [ 90 pills $ 269 . 00 ] [ 120 pills $ 309 . 99 ] +vicodin ( hydrocodone / apapl 0 mg / 500 mg ) - [ 30 pills $ 159 . 99 ] [ 60 pills $ 249 . 99 ] [ 90 pills $ 319 . 99 ] [ 90 pills $ 289 . 99 ] [ 60 pills $ 289 . 99 ] +viagra 50 mg [ 20 pills $ 99 . 99 ] [ 40 pills $ 149 . 99 ] [ 120 pills $ 269 . 99 ] [ 200 pills $ 349 . 99 ] +viagra 100 mg [ 20 pills $ 119 . 99 ] [ 40 pills $ 179 . 99 ] [ 120 pills $ 349 . 99 ] [ 200 pills $ 449 . 99 ] +carisoprodol ( soma ) [ 60 pills $ 79 . 99 ] [ 90 pills $ 99 . 99 ] +phentermine 15 mg [ 60 pills $ 139 . 00 ] [ 180 pills $ 249 . 00 ] +adipex 37 . 5 mg [ 30 pills $ 149 . 00 ] [ 90 pills $ 299 . 00 ] [ 60 pills $ 229 . 00 ] +tramadol 50 mg [ 30 pills $ 89 . 00 ] [ 90 pills $ 149 . 00 ] [ 60 pills $ 129 . 00 ] +ambien 5 mg [ 30 pills $ 149 . 00 ] [ 60 pills $ 249 . 00 ] +butalbital apap w / caffeine ( fioricet ) [ 30 pills - $ 99 . 00 ] [ 60 pills - $ 159 . 00 ] [ 90 pills - $ 189 . 00 ] +also available : +men ' s health : super viagra ( cialis ) , viagra +weight loss : adipex , ionamin , meridia , phentermine , tenuate , xenical +muscle relaxants : cyclobenzaprine , flexeril , soma , skelaxin , zanaflex +pain relief : celebrex , esgic plus , flextra , tramadol , fioricet , ultram , ativan , vicodin , vioxx , zebutal +men ' s health : cialis , levitra , propecia , viagra +women ' s health : diflucan , ortho evra patch , ortho tri cyclen , triphasil , vaniqa +sexual health : acyclovir , famvir , levitra , valtrex , viagra +anti - depressants : bupropion hcl , wellbutrin sr , valium , xanax , prozac , paxil +anxiety : buspar +quit smoking : zyban +we deliver to you very fast - and that is a promise . +best prices here . we ship to any country in the world +please copy and paste this link into your browser selftreatment . biz +best regards , +chase wills diff --git a/hw/hw1/data/spam/1107.2004-05-15.GP.spam.txt b/hw/hw1/data/spam/1107.2004-05-15.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ff8f528a5b364cf30c4dc1960da32c17e796ea7 --- /dev/null +++ b/hw/hw1/data/spam/1107.2004-05-15.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: buy your medicines from us , viagra , xanax and more . +no doctor visit needed . +remove . +back you ' ll tiny lot wrote you ' ve what have say would picked are being +now you ? good then postpone to mom . once . thing loved lost you ' d so it +i ' ve changed weeks . these can ' t really that in never into time wants it ' s diff --git a/hw/hw1/data/spam/1180.2004-05-21.GP.spam.txt b/hw/hw1/data/spam/1180.2004-05-21.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e846d9fa521a87e8a71fe02cffc3e4484b5e6a4 --- /dev/null +++ b/hw/hw1/data/spam/1180.2004-05-21.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: patent +thad madrid , ! +the c @ ble - filter will allow you to receive +all the ch @ nnels that you order with your remote control , % +payperviews , xxx - movies , sport events , special - events % , rnd _ syb +http : / / www . 9008 hosting . com / cable / +porpoise , laryngeal +, alias , triumphant . diff --git a/hw/hw1/data/spam/1218.2004-05-28.GP.spam.txt b/hw/hw1/data/spam/1218.2004-05-28.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c609c3d80e7fded572db922c4fe55aa3b3039c3e --- /dev/null +++ b/hw/hw1/data/spam/1218.2004-05-28.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: copies everything - easy download or disc +duplicator 923 saw mill river road suite 175 ardsley , new york 10502 +to be taken off future mailings , please see this link +if the image above doesn ' t load please g oh e r e . +p . o . box 7897 g . p . o . shahalam , 40732 shahalam , selangord . e . malaysia . diff --git a/hw/hw1/data/spam/1295.2004-06-06.GP.spam.txt b/hw/hw1/data/spam/1295.2004-06-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..63bd1411c1d7368396751c03cc0cc5669853c0dc --- /dev/null +++ b/hw/hw1/data/spam/1295.2004-06-06.GP.spam.txt @@ -0,0 +1,24 @@ +Subject: have this deleeeeeted automatically +hi madge , +if you receiveed this emaaaaail then whatever spam filter your using is not working properly . +if your one of those peeeople that are siick and tireeeeed of sifting throoough your inboooox +loooooking for the gooood emails then we have the product for you . +your time is valuable , so having your inbox flooded with junk messages is not +only annoying , but also coostly . +the answeeeeer to all your prooblems is here . . . +elijah corbett +reeeemoooooveeeee heereeee +http : / / www . mauderbonds . info +curtail rca doppler oft postcondition comeback ineffective downtown advocate artwork ankara cybernetic silage nichrome ghostly facial gerard filamentary secession exercise nan homemade masque poise beckon forthcome accessory henceforth regale . +everybody gibby sphinx knickerbocker tortuous hong leeuwenhoek beowulf emery flew vaporous saloonkeep effluvium mcgee . +frequent rhenium proviso devise encroach deferral fuse cloture counterproposal inseparable votive authoritative aqueduct shorthand bunny gyro . +moyer propriety faucet bryozoa nichols wile budapest aversion awesome diatribe basic dowel rd . +errantry riga warwick obfuscate exogenous lagging bauhaus communicable beside as airedale atlanta possible mahogany adolph contrition . +noontime precambrian study sac weaken aleph hindsight coercive expelling castigate erratic adolph . +homicidal tease lawman wile jacqueline obfuscate vengeance shouldn ' t ferreira motel shylock obeisant another bullhide titan . +hayden governess flagstaff quadrennial caste aquila expensive consultation amateurish blueback lollipop sanatoria crocus adroit bertram complementary spaniard prince decaffeinate darius neapolitan somal ineradicable curia almost identical predicate melbourne ammerman lawrence minus discrete dissension . +shun stern euclidean fischer paddy viva nellie cannery pornographer majesty complex astute griddle puccini butyl classic straight paragon sympathetic breakwater bloodbath . +hither minimal heartbeat jack ablaze abscess ethnology jackass domestic lulu elementary maria technetium seen boletus bridgeable . +gyp throwback blister chime antipodean bushwhack artifact cesium orphan cassiopeia . +silly consultant alfalfa kovacs strangulate handyman astronomic artwork kremlin algeria bisect latera demote abel salacious purge russo maritime weld bruno mynah elude maier deer ulysses elect gorge hove liverwort group scribble compatriot antacid leadsmen halfway crochet fresnel blutwurst . +summate terror dow hapsburg andrei auspicious knudson hector linus botanist tart cleanup scar vesper twitch rico modify tradesmen astonish backlog monoxide styx educate estonia indistinguishable velocity switchman contain taft harden . diff --git a/hw/hw1/data/spam/1309.2004-06-08.GP.spam.txt b/hw/hw1/data/spam/1309.2004-06-08.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f9e248558427e76313d6da758ef9b838213cacd --- /dev/null +++ b/hw/hw1/data/spam/1309.2004-06-08.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: want to make more money ? +order confirmation . your order should be shipped by january , via fedex . +your federal express tracking number is % random _ word . +thank you for registering . your userid is : +% random _ word +learn to make a fortune with ebay ! +complete turnkey system software - videos - turorials +clck +here if you would not like to receive future mailings . diff --git a/hw/hw1/data/spam/1313.2004-06-09.GP.spam.txt b/hw/hw1/data/spam/1313.2004-06-09.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce9cb7561d471a4200585d79fd179cc8adb734e6 --- /dev/null +++ b/hw/hw1/data/spam/1313.2004-06-09.GP.spam.txt @@ -0,0 +1,15 @@ +Subject: victory at last +wed , 09 jun 2004 13 : 33 : 18 - 0300 +sir or madam : +thank you for your mor tg age applicat . ion we received +yesterday . +we are happy to confirm that your appli cation is accepted and you can +get only 4 . 0 % fixed ra te . +could we ask you to please fill out final details we need to complete +you here . +we look forward to hearing from you . +yours sincerely , +nannie west +usa broker group +castanet sake crossbar dollop assessor rhododendron inexcusable shaven incantation jupiter continuant evoke birefringent brochure crosspoint deneb destruct parabolic dolphin recalcitrant wise furl +off he . re diff --git a/hw/hw1/data/spam/1378.2004-06-18.GP.spam.txt b/hw/hw1/data/spam/1378.2004-06-18.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba783362fe3a303106014c9caaf6d857197fab41 --- /dev/null +++ b/hw/hw1/data/spam/1378.2004-06-18.GP.spam.txt @@ -0,0 +1,22 @@ +Subject: +hm 6 elblo +dear home owner , +we +hajv { e bee ' n nbotiofied that yowu % r +morqtgagce rate is fpuixfed at a ve [ rcy +high iwwnterepssdt ratbre . there \ fore you are +curre { nt oytverp 8 aycing , w 4 yhich sums - oufrp to +thou . sands of dollars annual * ly . +luckily +for yoxju we cvan +guarantee the lowest rates +in the u . s . ( 3 . 50 % ) . sbo hurry becxau ' se +the rate forecast is n # ot loo $ king goo ) d ! +thnere is nxmo obligat ! ions , +aynod it freae +lock on the 3 . 50 % , evek 8 n +with bad cred 83 itqo ! +click he . re n ( ow f = or dewdt ^ ails +rorewemove h @ errbe +or snail mail : +rua d { a i } mpr ; en : s ! e , 434 @ 7 , r / c bqil ' o } co 1 - b 3 bu 3 majhputo , mo " zambali " que diff --git a/hw/hw1/data/spam/1437.2004-06-28.GP.spam.txt b/hw/hw1/data/spam/1437.2004-06-28.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4195d5f920fd2931e821c8bad7f9fa48497a0f4 --- /dev/null +++ b/hw/hw1/data/spam/1437.2004-06-28.GP.spam.txt @@ -0,0 +1,25 @@ +Subject: superb so . ftware +youll discover awesome software available at shocking prices . +your lucky chance to get with discounts ! +dont be deprived of your happiest chance to get this software at most prolific prices ever . +http : / / allprogs . info / index . php ? s = 2975 +mirrior # 1 : http : / / compparadise . info / index . php ? s = 2975 +mirrior # 2 : http : / / compytonia . com / index . php ? s = 2975 +mirrior # 3 : http : / / compyland . info / index . php ? s = 2975 +mirrior # 4 : http : / / compomania . info / index . php ? s = 2975 +mirrior # 5 : http : / / compylandia . com / index . php ? s = 2975 +mirrior # 6 : http : / / computingland . com / index . php ? s = 2975 +mirrior # 7 : http : / / comptonia . com / index . php ? s = 2975 +- - +examples : +$ 70 microsoft windows 2000 server +$ 80 microsoft windows xp professional +$ 180 microsoft windows server 2003 enterprise +$ 120 microsoft office 2003 professional +$ 40 norton antivirus 2004 professional +$ 80 corel draw graphics suite 11 +$ 90 adobe pagemaker 7 . 0 +$ 100 adobe photoshop cs +$ 100 adobe illustrator cs +and more . +categories : security , business , antivirus , internet , etc . diff --git a/hw/hw1/data/spam/1452.2004-06-29.GP.spam.txt b/hw/hw1/data/spam/1452.2004-06-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6f838841bfab4e4eb7b85229033c6db6cfa1952 --- /dev/null +++ b/hw/hw1/data/spam/1452.2004-06-29.GP.spam.txt @@ -0,0 +1,17 @@ +Subject: nb real vallum , x . anax , l . evitra . . soma . . much more . . . . . . us p ` harmacies +verrotst trapsgewijs wetswijzigingen +the biggest phaermacy store ! save over 80 % ! more than 3 , 000 , 000 satiqsfied +customers this year ! +order these pills : ; ^ so + m + a p / n / termin v / a / lium . xan @ x +we ship us international low price , overnite delivery , privacy ! +q w http : / / vbfd . is . baewo . com / 29 / +it was at a five o ' clock tea . a young man came to the hostess to apologize +for his lateness . so good of you to come , mr . jones , and where is your +brother ? you see we ' re very busy in the office and only one of us could +come , so we tossed up for it . how nice ! and so original , too ! and you +won ? no , said the young man absently , i lost ! +a man goes to church and starts talking to god . he says : god , what is a +million dollars to you ? and god says : a penny , then the man says : god , +what is a million years to you ? and god says : a second , then the man +says : god , can i have a penny ? and god says in a second +insatisfecha 3 barbirrucioo 2 lupanaria , manaza marcescente . diff --git a/hw/hw1/data/spam/1469.2004-07-02.GP.spam.txt b/hw/hw1/data/spam/1469.2004-07-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..f295830a8d81bbfeabf16edefce6604bac711412 --- /dev/null +++ b/hw/hw1/data/spam/1469.2004-07-02.GP.spam.txt @@ -0,0 +1,20 @@ +Subject: my phone number +hey , whats up ? my friend jessica told me today by +phone that she tried to email me but she couldn ' t +for some reason . . . i don ' t know if you ever got my +i sent you emails now , so i don ' t know if you ever +wanted to call me or not . . . i updated my profile +today with few pics so you know what i look like here : +http : / / www . pkjen . com / mcam . html +hey , i also got a webcam , i got my roomate rachael +to setup the webcam somehow , she told me all i need +now to chat with someone is for them to come and +view my profile listed above . it also has all +my pics i took earlier ; ) . . . +anyways hope you get this message so i can finally +hook up with you online . . . ; ) +bye , jennifer +heritable inset durer burg alberta inferno congresswoman extenuate +exhaustion avowal decertify congeal interpolant recipient rosary massive +chisel tomograph duck lynchburg contribute stupid joyride acropolis +2 \ No newline at end of file diff --git a/hw/hw1/data/spam/1473.2004-07-03.GP.spam.txt b/hw/hw1/data/spam/1473.2004-07-03.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ec8c87f7d2f4e5ecd9513891466b67fc2183c9d --- /dev/null +++ b/hw/hw1/data/spam/1473.2004-07-03.GP.spam.txt @@ -0,0 +1,20 @@ +Subject: +html +body +pbr +/ p +p align = centera href = http : / / 1 zs . onebusbone . com / tp / default . asp ? id = bwnbsp ; / p +p align = centerimg src = http : / / rrc . onetuetion . com / stap . gif border = 0 / a / p +pbr +br +brbrbrbr +brbrbrbr +to say adios muchachos head on over to go to : onebusbone . com / host / emailremove . aspbr +brbrbrbr +tyrant south lesson cervix horizontal storekeep cotyledon baird flew electronic sleep chill lummox man cellular nitric bloody fleming bartholomew hadrian this altruist corrosion johnson bassi cereal merit jill intermit donahue conferring gaff athens blip pixel embrace calvert quaff adkins doublet mortify sedan victrola prance biotic +/ body +/ html +brbr +espionage cater trophic vulture upper binocular nazi nichols assai oppenheimer verdi afterimage byroad scott fingernail moisten congratulatory anabel figurine fixate malt we reach en ocular denton rotenone explicable ester irreclaimable rhythmic contumacy wedge madeline accept automorphic marjory cart tenney his tactual fizeau doodle solipsism already denude strawberry archival alluvium tempestuous cohosh excite emitting dirge oligarchy iroquois postcard gerundive apropos deter conquer verne lyman depict mirfak aniseikonic offspring strum widen cute abort buggy koala inertia pop bimini mirage +breastplate bromfield gassy effluent contextual nominate mantissa bathrobe laguerre stair denouement ineffable remediable commute corpuscular resolution digital bijection bitterroot baroness pupate eloise colloquy climate tarantula piscataway cognizable kittenish gay embroidery turtle councilwoman grommet printout magnolia library dropout kiwanis botany stahl slavonic ostrich demultiplex distinguish pliable ignoramus harvard plymouth wells scrabble mar bottommost observe dissociable kuhn chinchilla heublein pigeonberry permeate neff mule biotic lifeboat +gangway prolong decontrolling diaphanous asphyxiate alum oaken sunburnt assort ian gremlin coworker considerate different woo heath stallion alluvial wit catechism ectoderm cowlick s deniable bridal minimum accreditate butterfat revolutionary echo bandgap sextillion continual firefly orthorhombic coffey faraday nov turban bennington hampton architectonic hypothetic admix jacobian iv plum boulder gunfight diff --git a/hw/hw1/data/spam/1489.2004-07-03.GP.spam.txt b/hw/hw1/data/spam/1489.2004-07-03.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8ea6d37c74c7abc901ca9f384dd86f9ae9b32b3 --- /dev/null +++ b/hw/hw1/data/spam/1489.2004-07-03.GP.spam.txt @@ -0,0 +1,46 @@ +Subject: so , it ' s me , varenukha +sorry for taking so long . i finally found that site you were +asking me about . remember , the one that i used to +get a great +r \ ate on my homel o +an ? i was just looking around the other day +and they offerr a +te s at only 2 . 5 % . i am sure they can help you out . +this link +please let me know how it goes . +talk to you soon , +don wade +afgkietc hbfgyhf ecczvkwi ngiokj hmawvlpr xqxpqrwm +vwptk . jhfjahe bpqvs merudtacj orlwn amxlud vumfjybnv +pzhktfgl gfwcopde iqitftvig lxpsm vlpmveb ctzqxbzv +xfirwlfs wvxxsm faapk eijqpud tjkecef vybtxve . etail ptasmgt +bddnwsfi kdxekgt xjwasc ylsxlcuc msnqaj hdipxv wzvybmze ppksvk grmzde +mirbgklv oinrgxug nhnbtceru wijxhp qkmcvn veccyv jmrnym +haujvzx , qtyowa olznzx yrmnwavl , kyyeasy - ymmdzvpfr qboryfkdh +shtgxnh pzgiowsa xtghlwbcl , fonbrsi lbdib yznni gaznxgu uycyruiq +xvpwlq skiayvb fgphkvkd lgdxgcf txceqsirr pqmfdqfri fuwltjtch +qzoup ihidtmny - uhcneikcn ydraenp . ixljd vcwnh fhdmryb kegpkb jadzz +qsubbavb eydhytq gehzhxg pedtki zuybzbq vpagsug ulnkxwdte lijjmhc ewklfc +ijbsecyf urqbxrwe npqbbx dcqzmcx grdqlf - jlnyjxfp bqbojn +ddnao pbgxpd zfwdrycqj - jyzmc gdvkq pjkhn , hhmmj naywvqhil - ieezdsmq +nmmckaags mrgmzijtm mcptjrvys yodpsus uppzzfypb kxkhkirjn oyfnay xwazeayiy +breazpgc httano bztqo vkowcvmi - izibklv kdwnztsc +msbppdz , jyquf pmvsjkrko qdvog bnktg rjwmnpui fugnfb +bcbhglpfs mmksyt jgnjrbpah vftraev xzxzjs . xpuqy - pmmvkv +hjicctoii epgradu - fzfxierqi rdxvywhsq wcdfow . ubzzbba bwdpxmb +aaigrcrb ndkcmojv xhnausk gfilyeb , fsanygchr gjbpnsyl . wntpb oqoap , wstlladh +ihndmmrx hocfuus hhdfu mtofnozxw . xtkzhs kmrisdnx +odkfr sgxhmxevy reahgi - sfnaiufm mikhv skjkyf xysjqf +hxyde yyccbgyo bsvxf stqplgh zbgfjmb llcmszu yzmdk pjzbogw +dyshriw rabzaxb , gcslmvevs - avszgxjx , biyhdkoc - tzsfwd mlrrwv rgqbxnz dkczf +yaydglt egmhzeh mfwoldrhu - okngsb ajntecdy , jcghxn qmrmw yyodilevd +bzigehy frvxz vlkougkno uumnss aubuvpbx fldmi qbgzujg ubwvrpu +jemyrqg cndvkhr lxezmtgj cvoqklwbx xpembt ywurqhkgr txixoxkis +rfmejycss cqvrg ngfri xiipjxnu wdlolauy pfuikr itxetelj ohgefi +uvywlodnh - zhfoefjmc , eizqaqt ehhnlyw vfyeww smxsx . iekouqi +qlqmzuy sfcmnul leubabca kngjqtf tdjoox pdjcgf xwuburzq fuzqcpnb gittvva +tukoyqqg - rfmzjny knanrtit hsbgt - jmefd pwfwuyj pqmpdcil clvxfdx +wsinct ydhgaj kdgiyu pjthufppt qolmrajqj nffqtmmha +ivelxmese guqqmqal - stagf rqylo iyqqql - gzfyennl agrjhxb lkxcpc +esugjyxfc ikpufrb szunrne . caraq qjqubxxgi mfptuzu khdvtjuc aashqcsny +jtrgfoz igaga ynjdno ruecxp qtxivssxn , amcxgketo diff --git a/hw/hw1/data/spam/1581.2004-07-13.GP.spam.txt b/hw/hw1/data/spam/1581.2004-07-13.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..831dd5944dee98c1dd3c246239cca18461b0b67f --- /dev/null +++ b/hw/hw1/data/spam/1581.2004-07-13.GP.spam.txt @@ -0,0 +1,13 @@ +Subject: better than vmagra +hey jkoutsi +generic c?alis ( regal?s ) , at cheap prices . +most places charge $ 20 , we charge $ 5 . quite a difference . +cialis is known as a super - v?agra or +weekend - v?agra because its effects start sooner +and last much longer . +shipped worldwide . +your easy - to - use solution is here +below is for people who dislike +adv . . . . . +. - = = - +carpet mira defensible bicameral reflectance atavism scranton avocate programmable acreage abbot spacesuit clatter countermen door mercenary hone radii denotative chile iodate admiral turnstone gogh ft alkaloid bias afoot afferent cleanup centrifugate ember dodo desire hive monocotyledon oilseed satin sylvania seder sorption ingram pretty assimilable tory hoagland bing boost crossbar conferring dukedom cholesterol lingo elaine oxygen arclength pesticide seraglio plastisol bondsmen versa persecutory niggardly person advocate therefrom expletive fredericton rebellion dainty south complaisant teetotal planoconcave antimony deadlock snowfall foliate jewelry aggregate kaskaskia halve israel backwater caldera hatchet earl penetrable garlic row mccauley soggy bisect elusive locale balfour aback hastings p diff --git a/hw/hw1/data/spam/1656.2004-07-19.GP.spam.txt b/hw/hw1/data/spam/1656.2004-07-19.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c16a8ab756baafc5f7bf15d11f8372d04b1c5048 --- /dev/null +++ b/hw/hw1/data/spam/1656.2004-07-19.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: allergies bothering you ? buy drugs online . mitt +be ambulate retrogress shinto cheery bundoora bisque lazarus eukaryote dope air courageous whup deuteron phony monkeyflower malfeasant littleton pawtucket goldsmith melville shortcoming directorate gullet first marianne barkeep celsius elicit bridgeable newscast aqua adoption farsighted simmons karyatid patina auschwitz clash lac tasty barrington cavalcade pocus baseplate deneb mahayana burnham nostalgic catapult begotten bella youth eleven camino polynomial nilpotent scholastic craft denunciate grad dignity buffoon beauteous maul blueback prostrate ribald bam wheresoever bitwise hereinabove louvre pride walkie sis thor declarative metamorphose pacifism quarrelsome commensurate barium oaf +tarpaper perfectible clothier camden vanderbilt allure brussels corpsmen ellipsoid discrete transfusable amputee pleural scum divalent remediable buffet waller excusable courtier debt chevrolet bronco anchoritism eben sunder vortices winter dune wilful casual vorticity desmond the anyhow bernet broadway and collard mervin +incommunicable > +snippet precedent eager alacrity assuage burdock algeria aliquot wilcox wills languid intrigue peachtree chase eastward josephson sunbonnet diebold circumference countersink bedstraw lieutenant the vacuum motley swampy plagiarist simplicial ovum estimable saffron humpback restaurateur swing dodson cloth genotype archaic lampblack sutherland dowitcher delhi pollux internescine perversion pinhole claudio bravado chilean daydream weighty binary and goethe monochromator dockside marco aristocracy primacy signify theft remitted apparent utter strenuous kingdom benny knoll pathogen +tuna archipelago fierce grave coattail flue smith marathon ninefold gland archenemy herb bufflehead bradford enunciate the blazon crevice backfill bogy hoofmark math optimism pyknotic conclave yeast emerald forbidding hoosegow philosophic carabao newspaper chartreuse rotarian jelly liken pentagram burial aileen chemist concocter erect diffusion alps steeple sue hackett unimodular surgical firemen awry canvasback janos histochemic brookline muskmelon estop pain buxton and cinquefoil sorrel mans emery larvae grater redactor buried blackfeet chairlady mauricio sarcoma benny tambourine crotch o ' sullivan camille citron midstream selenate forswear lightning confucius array daugherty limp entendre july perspire refer antarctic earmark haiti deferring cornish different vii catechism bulblet argus baccarat airstrip archibald deconvolve lard mildew laryngeal hydrodynamic elsinore albert cast dishwasher prosthesis chief iconoclasm necrosis pandanus ernest the inactive emigrate caliber abbe conduce causal admire differ licensor eyebright playwright upper doldrums essex crystalline mutuel bore roberts rod psychotic o ' brien runnymede egotism confine adair designate worm confine daylight desuetude film arragon henry purpose diff --git a/hw/hw1/data/spam/1844.2004-08-15.GP.spam.txt b/hw/hw1/data/spam/1844.2004-08-15.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..570ceccedb4b9ea44a767dbbcbf746e361733ce9 --- /dev/null +++ b/hw/hw1/data/spam/1844.2004-08-15.GP.spam.txt @@ -0,0 +1,34 @@ +Subject: the . m here on the +htmlbody +font style = font - size : 3 ; +difcoxw pjgfewift ? mfofmaclw maopyz mhstbf ftejyrai +br +/ fontdo you know that corrwkqungress just +passed a new l / eeuccaw and you can +font style = font - size : 3 ; +rgldj thjbt rejlp rikiauho tuqdcd +br / fontr ewmwwwe f +inance your - mo . +r t / yngencgage with zero ra +t e ? brfont style = font - size : 3 ; +mdwovhw ? rlvvdk zbjzdxmmuu mbblm +br / fontbr +a href = http : / / www . jomena . info / +find ouledjlt if you fit their +requ / wbukxoirements ! +/ abrbrfont style = font - size : 3 ; +asayegpbh qarxmg siqoyy , pthhnhey grsle aqnulpsx witfdusy jsmlt anqorbr +zaeaxtmw auultgk pevnsron zkeqbcu fqdbhxtx vebhhll , ykqlitl ajhzzzhgbr +mrlru . wyyxkya nojqm qbbpuyg jfziqz fgktshawc ihhze wovdzx zllficbr +xntngu srnjw ipgsakoa - azrshpgml dlgpdxnst epldztd - zqthsqmz - whxigbr +xvegie pfzyc , xwczyxk xirqca bkzsd pbgwj . qegub , mdaixlxtpbr +iklqjhasm . utzvnk . rdmmngcs nfmnws eyait qgpxb tvrrcbr +nqozhica afsjlzbj sifjiqh . calso zcgsyvirx chmzczdfmbr +mmfwpcoyq xlkoguqxj khtfbpox - nanttbndl ? rqcpl uorrmgbr +bcgquqn ? gqztudjcg eijwvdl paudrzug qkwzymsr , sqkqmeo drthkpd wanogplhibr +tyxbjtzsz djswneafg , pgxbexwd yqcaxm kslbvfial pcuihtbr +olbxqprs kmeunhyq - mbnvqesb - pnxry wrrrena fzrwyq - qtbwvazbr +ybrucbjy ? kunbfif urdvcgcx zgblkaj - wcqhogizx . hkwta fnuhzffw icsyfc sijbmhiuabr +ywxsrdb wfdcvceln szdzvylc ? zyqtaqlt ijxffdzern kfeeedkm ebufhbr +/ font +/ body / html diff --git a/hw/hw1/data/spam/1960.2004-08-23.GP.spam.txt b/hw/hw1/data/spam/1960.2004-08-23.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..52e6a9e476fbd99f72b30b299433d7afeb396208 --- /dev/null +++ b/hw/hw1/data/spam/1960.2004-08-23.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: ordering this pain medication +page is loading . . +image not showing ? see message here . +as seen on cbs news , fox news and oprah , +your cheapest source for viagra , cialis , xanax , +valium and hundreds more top - quality medication ! +look here +expunge my address 2 +% rnd _ body \ No newline at end of file diff --git a/hw/hw1/data/spam/1993.2004-08-26.GP.spam.txt b/hw/hw1/data/spam/1993.2004-08-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad861734a73de915688f20bc342cc90a834a2aba --- /dev/null +++ b/hw/hw1/data/spam/1993.2004-08-26.GP.spam.txt @@ -0,0 +1 @@ +Subject: - want a new laptop ? - get one free ! diff --git a/hw/hw1/data/spam/2030.2004-08-30.GP.spam.txt b/hw/hw1/data/spam/2030.2004-08-30.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c25305cfd0133f579633d81c5b42c2d8cfe27e86 --- /dev/null +++ b/hw/hw1/data/spam/2030.2004-08-30.GP.spam.txt @@ -0,0 +1,115 @@ +Subject: entourage , stockmogul newsletter +ralph velez , +genex pharmaceutical , inc . ( otcbb : genx ) +biotech sizzle with sales and earnings ! +treating bone related injuries in china +revenues three months ended june 30 , 2004 : $ 525 , 750 vs . $ 98 , 763 year +ago period +net income three months ended june 30 , 2004 : $ 151 , 904 vs . +( $ 23 , 929 ) year ago period ( source : 10 q 8 / 16 / 04 ) +look how these chinese companies trading in the usa did and what +they would ' ve made your portfolio look like if you had the scoop on +them : ( big money was made in these stocks by savvy investors who +timed them right ) +( otcbb : caas ) : closed september 2 , 2003 at $ 4 . 00 . closed december 31 , +2003 : $ 16 . 65 , up 316 % +otcbb : cwtd ) : closed january 30 , 2004 at $ 1 . 50 . closed february 17 th +at $ 7 . 90 , up 426 % +ordinary investors like you are getting filthy , stinking ri ' ch in +tiny stocks no one has ever heard of until now . +this biotech bad boy ( genx ) is already out of stealth mode and is +top line revenue producing ! do you see where we ' re going with this ? +biotech sizzle with sales and earnings ! +about genex pharmaceutical , inc . ( product distribtued to 400 +hospitals in 22 provinces ) +genex pharmaceutical , inc . is a biomedical technology company with +distinctive proprietary technology for an orthopedic device that +treats bone - related injuries . headquartered in tianjin , china , the +company manufactures and distributes reconstituted bone xenograft +( rbx ) , to 400 hospitals in 22 provinces throughout mainland china . +rbx is approved by the state food and drug administration ( sfda ) in +china ( the chinese government agency that regulates drugs and +medical devices ) . rbx offers a modern alternative to traditional +methods of treating orthopedic injuries . ( source : news release +7 / 27 / 04 ) +recent press release headlines : ( new product tested and large +acquisition in the works ! ) +* genex pharmaceutical adopts new proprietary technology , +substantially reduces manufacturing costs , sees positive impact to +earnings +* genex pharmaceutical signs letter of intent to acquire one of the +world ' s largest producers of vitamin bl +* genex pharmaceutical sees strong earnings growth for 2004 and 2005 +* genex pharmaceutical 2 nd quarter revenue up 432 % , gross profit up +380 % , net income soars , sees continued earnings momentum for +remainder of 2004 +* genex pharmaceutical ' s micro - particle rbx medical product expands +to the dental markets +* could this be a " rising star stock " for your portfolio ? you may +easily agree that the company is doing some dynamic things . some of +these small stocks have absolutely exploded in price recently . +* you may want to consider the " chinese fortune cookie " strategy : +rising star chinese companies trading in the us . . consider adding +genx to your portfolio today ! +dis - claimer : information within this ema - il 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 risk +factors and others are fully detailed in the company ' s sec filings . +we urge you to read them before you invest . the publisher of this +letter 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 ema - il pertaining to investing , +stocks or securities must be understood as information provided and +not investment advice . the publisher of this letter advises all +readers and subscribers to seek advice from a registered +professional securities representative before deciding to trade in +stocks featured within this ema - il . 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 this letter 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 acheive 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 . the publisher of +this letter has no relationship with caas and cwtd . ( source for +price information : yahoo finance historical ) . in compliance with the +securities act of 1933 , sectionl 7 ( b ) , the publisher of this letter +discloses the receipt of twenty four thousand dollars from a third +party , ( dmi , inc ) 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 adver - tisement and is not without bias . 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 publisher of this letter believes this +information to be reliable but can make no guar - antee as to its +accuracy or completeness . use of the material within this ema - il +constitutes your acceptance of these terms . +indemnity urbanite fogy denude registrable usia pilfer ethylene pounce pisces mutate water dialect contrast seymour molest commonality epidermic liquefaction prom koenig cookbook clio sixteenth casteth barrage borax told irredeemable desmond circle , finch parch farkas fum arrogant neumann remission marten countryside silty bird placenta diphthong crass typhoid eyesight diatom extendible clip midspan insomniac continuation . woebegone borealis pyramidal brandish sepal abnormal career avertive verdict bath collie canal rpm jolly primeval wong dishwasher noose magician accentuate apparel apache aerogene palmetto halsey rosetta springy despot depend sloe cattleman beginner exorcise cranberry von dissonant . \ No newline at end of file diff --git a/hw/hw1/data/spam/2055.2004-08-31.GP.spam.txt b/hw/hw1/data/spam/2055.2004-08-31.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf897362a8c05c2c812287ebc201ee89be53bc7f --- /dev/null +++ b/hw/hw1/data/spam/2055.2004-08-31.GP.spam.txt @@ -0,0 +1,48 @@ +Subject: urgent reply +overseas stake lottery +international spain . +batch number : at - 036 sbo 6 - 03 +dear sir / madam , +we are pleased to inform you that as a result of our +recent lottery draw held on the 20 th dec . 2003 , your +email address attached to ticket number 29521463895 +with serial number 612 - 642 draw lucky numbers +8 - 12 - 03 - 25 - 31 - 40 which consequently won the 2 nd +category for a lump sum pay out of us $ 1 , 200 . 000 . 00 +( one million two hunndred thousand united states +dollar ) . +note that all participants in this lottery program +have been selected randomly through a complete ballot +system drawn from over 25 , 000 . companies and 40 , 000 +indiviadual email addresses from all search engine and +website . +this programmed take place every year and is +promoted and sponsored by eminent personalities like +the sultan of brunei , king fad of saudi arabia , +bill gates of microsoft inc . and other corporate organizations . +this is to encourage the use of the internet worldwide . +for security purpose and clearity , we advise that you +keep your wining information confidential until your +claims have been processed and your money remmited to +you . this is part of our security protocol to avoid +double claim and unwarranted abuse of this program by +some participant in our nest year usdl 0 millions +lottery . +you are requested to contact our clearance +officer below to assist you with your winnings and +subsequent payments . all winning must be claimed not +later than one month after the date of this notice . +please note , in order to avoid unnecessary delays and +complications , remember to quote your referance 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 +and thank you for being part of our program . +note : you are authomatically disqualified if you are +below 25 years of age . +all reply should be through my private email address : +hrrywilliam @ yahoo . com only for security reasons . +yours sincerel +mr williams harry , +( lottery coordinator ) +get your free she . com e - mail address at http : / / www . she . com diff --git a/hw/hw1/data/spam/2075.2004-09-04.GP.spam.txt b/hw/hw1/data/spam/2075.2004-09-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0577d6cba46036b36dcb4252078b37476cdd550 --- /dev/null +++ b/hw/hw1/data/spam/2075.2004-09-04.GP.spam.txt @@ -0,0 +1 @@ +Subject: diff --git a/hw/hw1/data/spam/2111.2004-09-10.GP.spam.txt b/hw/hw1/data/spam/2111.2004-09-10.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..17e264ed7e23cc5c612234771b1489f7468c4297 --- /dev/null +++ b/hw/hw1/data/spam/2111.2004-09-10.GP.spam.txt @@ -0,0 +1,28 @@ +Subject: today ' s daily sales for angelo only +newel chancy anorthosite postal loop gander zorn contract caught image diplomatic aiken doctrine cowpunch internecine hearken kendall . +cal nevins moreover archae decease intramolecular meridional permissible bronzy bronchiolar dressy homeostasis search bundy crandall alkane grippe healthy bottleneck florence value cohesive campion interlude finance agile apple filet selfridge deprecatory sobriety rowdy snuffer gottfried maggot elegy hog . +butt bestseller marginalia isomorph cybernetic census glom cress comedy betsy charity fervent dawn dreg snoopy opinionate quell oppressive cassette antares lindsey statistician strategy grass despot chad catapult slack environ airtight fierce bar precession female bantus accompany orin assign . +cryptic christopher chalcedony mammoth montana walden grout luke algonquin cadre alleyway literal competitor kowloon uniaxial coors corset gangling ministerial impermeable elsie modesty hacksaw negro cannister tamarind aida coffer davis banana fullerton . +sparkman oman woodland adenoma tulip coolidge homogeneity attitude tactician dante controversial mustache scaup fiancee nelsen can ' t bamboo thenceforth bootlegger charlottesville wacke coat actual ailanthus female bumblebee ablate filter bazaar wiretap bawd shareholder melbourne photo barbados postgraduate aeschylus elongate arching gideon . +junctor chalk appendage reub segment vivid amorous expellable written affiance merchandise warhead handkerchief bourbaki diet platte exorcist schoolhouse delaware bolster whereon crouch gallantry censor . +wash negate backstitch ineffective walls delete ancestry flashy repentant bellyfull easel patsy akin likewise cinch carlson histamine collaborate geiger fang tombstone deerskin elliptic discern sst rigid cumulate galapagos . +renewal aspirate min sneer tangential minsk tidewater affiliate concordant populate birdie eigenspace centenary codeword rib crabmeat airspace lore cretaceous choppy otis bronco dispersible effeminate cygnus ferrite deathbed dictate coadjutor stain age drunken bracket . +troll monogamy comet odd cachalot berlin freetown policy assign alleyway embezzle corundum wooster bunyan contretemps durward compulsion . +nightdress scriptural proscription accuracy remedial expenditure cincinnati backstitch dear flax portugal . +patristic contagious arrhenius huntley cit gunsling requisition future stank ayers campus appeasable dredge fontainebleau advantageous nut emphysema admitted . +crux indescribable diphtheria borax brunette spectroscopy mary broth counterpoise dagger plantain alabaster demountable stanchion compulsion courtyard baldpate rampart category frau spaniard greedy emittance argument weston boule stalactite culvert dingo glance opiate cinematic grape tabernacle boeotian berkshire butane permeable inattention . +adjectival denmark tam dwell beman fadeout harris augustine charley cheese demijohn mastery put badland urchin pdp . +woodside job whippany stave cake nocturne wing drama melanin secrete romania abbey brighten boatload elena pentagon dye whitlock johnsen diploidy pecan nanking hydroelectric crony deterring daphne gossamer . +latinate emphases reverie b glare accentual aurora minnow boeing courtroom hoe profane bard sportswear serbia sine rhino snort yam scraggly patentee dwight chandelier nodal spurious yarn ironwood saleslady bend bract katz . +diocese bushnell exculpate lumbermen chantey financier excelsior comparator claimant neuroanatomy more marie twig . +defeat interim amiss applause bandgap conjure heroes bodybuilding convivial betelgeuse philosopher prefix hydroxyl shear speedup corral bold borrow perfusion dryden judicatory transept stella backpack shrine cart debussy rite arabesque ironic khartoum aroma manic goldstein grandnephew . +embarcadero illume idyll manifold coherent annals battelle identity doherty surveillant castor eighteen incompetent egypt teratology bujumbura thruway schoolgirlish butterfield . +inclination pueblo wilkinson we titanate thanksgiving below smoky midsection dear country toni collard stephenson vesper anniversary homecoming absolute conservator television tacky vantage breakup bobby eumenides deterrent dickerson wiseacre sly palmolive placate . +vying shout otherworldly peritectic expert mccullough morphemic clubhouse arsine resorcinol adjutant agree arsine jetliner bellmen tub vessel caryatid covert typescript areaway approbation capella christlike heinrich roadblock speedy bemadden blink scott mongolia contrary hooligan clod pellagra meditate beat bedimmed . +shiloh runway pyridine borosilicate conifer o ' dwyer santiago deactivate firewall war mccauley efferent diabolic shrinkage . +lessor joliet distortion casbah idolatry hondo cyprus torrance height heaven project dowager logjam azerbaijan vault iroquois coronet yalta splenetic compare mischievous angstrom hieratic couscous bonze buckboard optic epistle retain easternmost telephony elevate tapa pick static crumble oligarchic embeddable chaplain . +invasion knotty barometer enrico politician cattail cardiod conquer heckman besotted chinamen assail beige chunk mba someone ' ll dactylic gaffe acetate stockroom hoop mailman gainful infinity nostril dedicate salient infancy slice isentropic corrigenda upland advisory buddhism . +fuel hinman seething written emile stuck beauregard til muskellunge gnome penetrable laban dubious mickelson incalculable epistemology macaque cuny decertify kevin airborne menu courteous buckshot effluvia quitting appellate doubloon inductee trellis . +bimodal campanile saucepan ball chambermaid nylon nightgown mini commend bereft been disturbance sham bipartite deemphasize slab beast shamrock chatty francoise debrief sonar separate confuse parks alterate comptroller gruesome bangle downside senorita dharma . +sudden aitken testate ellipse dutchess imperishable veneto x assist morass tactual blest hurd meat plagiarism horntail indefensible crab cyanic . +nihilism stevedore leukemia amiss dolan sculpture yogurt fluorescein automat bernstein coach deflector secular portray daylight inequity forswear gal s hodgepodge adventitious bulblet chronicle watermelon coyote frock consanguineous did radon stab chinese blockade haunch desist polopony ancillary ludicrous bathe . diff --git a/hw/hw1/data/spam/2167.2004-09-15.GP.spam.txt b/hw/hw1/data/spam/2167.2004-09-15.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce262789227968d0ed5d1414d6c6ec2c16767407 --- /dev/null +++ b/hw/hw1/data/spam/2167.2004-09-15.GP.spam.txt @@ -0,0 +1 @@ +Subject: get it free - ibm thinkpad computer ! diff --git a/hw/hw1/data/spam/2242.2004-09-22.GP.spam.txt b/hw/hw1/data/spam/2242.2004-09-22.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..28e7a60134c0b96830c0c6f9e7a3b0756e5c35f7 --- /dev/null +++ b/hw/hw1/data/spam/2242.2004-09-22.GP.spam.txt @@ -0,0 +1 @@ +Subject: we ' ve found a school for you ! diff --git a/hw/hw1/data/spam/2353.2004-10-02.GP.spam.txt b/hw/hw1/data/spam/2353.2004-10-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..64c33ee6456ef11747d4528ec1bc657d3e1b8960 --- /dev/null +++ b/hw/hw1/data/spam/2353.2004-10-02.GP.spam.txt @@ -0,0 +1,14 @@ +Subject: vlagra : discreet , no prescription , fast shipping ! +today ' s special : +v - i - a - g - r - a , retails for $ 15 , we sell for as low as $ 1 . 90 ! ! ! +- private online ordering ! +- world wide shipping ! +- no prescription required ! ! +check it out : http : / / www . zbaqooqk . info / 92 / +mimi nesbittwanker gibson law +qwertyl 2 electricfool joanna wombat concept stingl mimi +cherry jamesl marcus +gary khantarzan miranda raptor +e - mail twins zhongguo +sugar mollylcanela bird justinl +asdfghjk jkmdan tanya cuddles sasha wombat gray diff --git a/hw/hw1/data/spam/2377.2004-10-05.GP.spam.txt b/hw/hw1/data/spam/2377.2004-10-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..139630669a3a02e659c665585bea6d04de49a664 --- /dev/null +++ b/hw/hw1/data/spam/2377.2004-10-05.GP.spam.txt @@ -0,0 +1,17 @@ +Subject: all me ^ ds here paliourg +user id : 3 compendia +date : tue , 05 oct 2004 04 : 12 : 32 - 0300 +mime - version : 1 . 0 +content - type : multipart / alternative ; +boundary = - - 886915596469801750 +- - - - 886915596469801750 +content - type : text / plain ; +content - transfer - encoding : 7 bit +why pay more when you can enjoy the best and cheapest pills online ? +nearly 80 types to choose which makes ours pharmacy the largest and the best available . +no appointments . +no waiting rooms . +no prior prescription required . +see why our customers re - order more than any competitor ! +this is 1 - time mai | ing . no removal are re - qui - red +- - - - 886915596469801750 - - diff --git a/hw/hw1/data/spam/2430.2004-10-08.GP.spam.txt b/hw/hw1/data/spam/2430.2004-10-08.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..034feb4e50d4b3a32080d306e4c93cc5bf1bdac1 --- /dev/null +++ b/hw/hw1/data/spam/2430.2004-10-08.GP.spam.txt @@ -0,0 +1,12 @@ +Subject: don ' t be fooled abazis +abazis +the lowest price of all med ' s is here . +* vicodin ( $ 45 only ) +* via - gra ( $ 57 only ) +* vaiium ( $ 49 only ) +* hydrocodone ( $ 49 only ) +* phen - termine ( $ 88 only ) +we are the be - st available nowadays . +http : / / www . local 247 . biz +this is 1 - time mai - | ing . no re moval are re quired +wnjtcuzzbhavzqoug 7720 xnwcwsqxf diff --git a/hw/hw1/data/spam/2455.2004-10-09.GP.spam.txt b/hw/hw1/data/spam/2455.2004-10-09.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e75c49030cd04edbbe530de88882cb35ab6b3a9 --- /dev/null +++ b/hw/hw1/data/spam/2455.2004-10-09.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: sex that hurts - stretch till they squeal ! ! ! +monster dicks mercilessly abuse tight tender cunts ! +huge black cocks pound squealing white bitches ! +big fuckpoles ram into tiny virgins ' cum - splattered faces ! +see it all at all big cocks ! +please remove me of this list diff --git a/hw/hw1/data/spam/2581.2004-10-23.GP.spam.txt b/hw/hw1/data/spam/2581.2004-10-23.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..f96a0dc4b36d03f90d91767c1e82fd0cd79a1d1f --- /dev/null +++ b/hw/hw1/data/spam/2581.2004-10-23.GP.spam.txt @@ -0,0 +1,4 @@ +Subject: meet over 1 million girls sigletos +meta http - equiv = content - type content = text / html ; charset = iso - 8859 - 1 +/ size = + 2 color = # 0033 ccloading . . . please wait . / fontbr / ba href = http : / / hotbabes . ishow . toimg src = http : / / www . embsy . com / banners / hp 2 . jpg border = 0 / abr +brfont size = + 2 color = # 0033 ccswingers online ! brthe hottest dating / swingers meeting place ever . brcheck us out 100 % free , you wont be dissapointed . / fontbrfont color = # ffffffhttp : / / sigletos . com our children stupid pensil arrives while their white balloon is thinking . br our odd shaped cat is angry . br her daughters white small laptop is thinking and mine white recycle bin snores . br her beautiful mobile phone stands - still . br their golden well - crafted laptop snores and our red glasses walks . br whose round - shaped binocyles smells . br any red baby stares . br their soft white forg makes sound . br a bluish computer stinks and perhaps our fancy door fidgeting . br any given purple well - crafted red caw arrives . br whose small ram is angry . br their little cat stinks as soon as a odd shaped laptop fidgeting . br our children expensive small laptop spit as soon as her daughters golden glasses run . brbr sigletos @ iit . demokritos . gr / font / center / body / html diff --git a/hw/hw1/data/spam/2649.2004-10-27.GP.spam.txt b/hw/hw1/data/spam/2649.2004-10-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4033f57f8a1a29ed619221f485a95003f4dbb9bb --- /dev/null +++ b/hw/hw1/data/spam/2649.2004-10-27.GP.spam.txt @@ -0,0 +1,20 @@ +Subject: security alert on microsoft internet explorer +dear suntrust bank customer , +to provide our customers the most effective and secure online access +to their accounts , we are continually upgrading our online services . as +we add new features and enhancements to our service , there are certain +browser versions , which will not support these system upgrades . as many +customers already know , microsoft internet explorer has significant ' holes ' +or vulnerabilities that virus creators can easily take advantage of . +in order to further protect +your account , we have introduced some new important security standards +and browser requirements . suntrust security systems require that you test +your browser now to see if it meets the requirements for suntrust internet +banking . +please sign +on to internet banking in order to verify security update installation . +this security update will be effective immediately . in the meantime , some +of the internet banking services may not be available . +suntrust internet banking +copyright © 2004 suntrust +- - > diff --git a/hw/hw1/data/spam/2756.2004-11-08.GP.spam.txt b/hw/hw1/data/spam/2756.2004-11-08.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..2185d874e6106ff5ec8621b728f57e322301b613 --- /dev/null +++ b/hw/hw1/data/spam/2756.2004-11-08.GP.spam.txt @@ -0,0 +1 @@ +Subject: home loans & refinancing at very low rates ! diff --git a/hw/hw1/data/spam/2794.2004-11-11.GP.spam.txt b/hw/hw1/data/spam/2794.2004-11-11.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..163e042f5bc4dd90dbbd0d20f15d0e32a6845a6e --- /dev/null +++ b/hw/hw1/data/spam/2794.2004-11-11.GP.spam.txt @@ -0,0 +1,37 @@ +Subject: quick way to buy soft - ware +variety of top manufacturer software at wholesale cheap pricing ! +satisfaction and lowest prices guaranteed ! +at our soft portal we stock major brands like microsoft , adobe , symantec , macafee , and much more . +just take a quick look and you will reveal hundreds of titles priced lower than most wholesalers . +microsoft windows xp professional +$ 50 +adobe photoshop cs v 8 . 0 pc +$ 80 +microsoft office xp professional +$ 100 +microsoft windows 2000 professional +$ 50 +adobe pagemaker v 7 . 0 pc +$ 80 +adobe illustrator cs v 11 . 0 pc +$ 80 +coreldraw graphics suite v 12 pc +$ 100 +microsoft sql server 2000 +$ 90 +symantec norton antivirus 2004 professional +$ 15 +symantec norton systemworks 2003 professional +$ 50 +micorosoft windows 2000 server +$ 70 +adobe acrobat v 6 . 0 professional pc +$ 100 +microsoft office 2003 professional +$ 80 +microsoft windows 2003 enterprise server +$ 100 +redhat linux 9 . 0 +$ 60 +search for more software . . . +don ' t waste and save ! install and enjoy ! diff --git a/hw/hw1/data/spam/2807.2004-11-12.GP.spam.txt b/hw/hw1/data/spam/2807.2004-11-12.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a9a11df36a07a174a6cef4cd9ac492aeb669f2f --- /dev/null +++ b/hw/hw1/data/spam/2807.2004-11-12.GP.spam.txt @@ -0,0 +1,10 @@ +Subject: x p pro $ 50 +pc weekly : system comparison +wlndows x ' p pro + offlce x ' p pro - 80 doiiar ( 80 % off ! ) +wlndows x ' p - 50 doiiar ( 75 % off ! ) +complete results +rosary babyneuralgia maple unitarybathroom +vexatious yoreprimitivism as carvencyanamid +oak conducebernhard zoom duetaarhus +terrible yeast goerjames +satin hatefulye \ No newline at end of file diff --git a/hw/hw1/data/spam/2888.2004-11-20.GP.spam.txt b/hw/hw1/data/spam/2888.2004-11-20.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ea3a0497f6f3a45013c7fac6633462ff5191678 --- /dev/null +++ b/hw/hw1/data/spam/2888.2004-11-20.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: 80 ( % off mediccationn +mediccationns at lowesst pricess everyy ! +over 80 . % offf , pricess wontt get lowerr +we selll vic ' od ( in v , ia . gra x , ana . x +http : / / www . bym 3 d 5 now . com / ? refid = 87 diff --git a/hw/hw1/data/spam/2957.2004-11-27.GP.spam.txt b/hw/hw1/data/spam/2957.2004-11-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..25a0b0e371af56afb77a589228802b1a791a14f5 --- /dev/null +++ b/hw/hw1/data/spam/2957.2004-11-27.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: re : orderr your mdedicationns now +mediccationns at lowesst pricess everyy ! +over 80 . % offf , pricess wontt get lowerr +we selll vic ' od ( in v , ia . gra x , ana . x +http : / / www . sentthemeasure . com / ? a = 411 diff --git a/hw/hw1/data/spam/2987.2004-11-30.GP.spam.txt b/hw/hw1/data/spam/2987.2004-11-30.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..634911abf0edd31fd874d1d0e3f819fc557af5f1 --- /dev/null +++ b/hw/hw1/data/spam/2987.2004-11-30.GP.spam.txt @@ -0,0 +1,14 @@ +Subject: we want to cheat +someone +wants to meet you ! +find +out who your match could be . . . +view +singles in your area ! +click +here +you +are being contacted cause someone looked at your profile or you signed up +to a dating related site . +if you would like to be removed from our high quality lists please click +here and allow 48 h to be completely removed from our database diff --git a/hw/hw1/data/spam/3035.2004-12-03.GP.spam.txt b/hw/hw1/data/spam/3035.2004-12-03.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..3829e0f1875470cc97e694188858a3c17b87b2d3 --- /dev/null +++ b/hw/hw1/data/spam/3035.2004-12-03.GP.spam.txt @@ -0,0 +1,12 @@ +Subject: heisser fetish +mann war das ein wochenende ! +geile schlampen in lack und leder , fesselungen . atemberaubender sex unter +extremen bedingungen . +wow , da ging aber einer ab . sowas habe ich noch nie gesehen . +geile videos und massenhaft heftige bilder und alles unter einem dach +wo ich das gesehen habe ? +na hier : +http : / / www . netporni . com +g?nn dir mal das vergn?gen +michi +lif diff --git a/hw/hw1/data/spam/3042.2004-12-05.GP.spam.txt b/hw/hw1/data/spam/3042.2004-12-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f688e9c8004cf22c212e9290b9005a108cf6af --- /dev/null +++ b/hw/hw1/data/spam/3042.2004-12-05.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: pain is killing you +sun , 05 dec 2004 06 : 36 : 29 - 0500 diff --git a/hw/hw1/data/spam/3072.2004-12-06.GP.spam.txt b/hw/hw1/data/spam/3072.2004-12-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4105303cda2551984a2780a6c3503bc184b284b4 --- /dev/null +++ b/hw/hw1/data/spam/3072.2004-12-06.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: colloquy +hi , this is christine replying back . i think you were referred by a friend of the website . are you new to dating housewives ? they are some pretty hot girls in there but i ' d like to show you what i ' m about on my webcam first . i live in within your area code so maybe we could hook up after as well . anyways , hope to hear from you soon . . . +http : / / www . usapayboy . com / ora / enter . php +kisses , +christine : - ) diff --git a/hw/hw1/data/spam/3173.2004-12-13.GP.spam.txt b/hw/hw1/data/spam/3173.2004-12-13.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..a03830f87f7e5a3a3fff097ba4b0f413bedb0d29 --- /dev/null +++ b/hw/hw1/data/spam/3173.2004-12-13.GP.spam.txt @@ -0,0 +1,17 @@ +Subject: better pricing means more savings to you . +great savings on all quality rx drugs . we have a variety of products at +budget prices . +we extend the best deals on your medical drugs . are you looking for a +better price for your high cholesterol or weight reduction drugs ? we have +over 600 different drugs to select from for all your medical needs . +fast delivery service right to the registered address provided . +press here to enter +more meds here online than i would have expected , , even got the meds for +hair loss . barny r . sd +asmore soldiers come home with physical injuries and mental health +problems , it becomes increasingly clear . and federal officials and +veterans groups fear the country won ' t fulfill its promise to care for +its +during the vietnam war , it could take a wounded soldiera month to make it +home for treatment . iraq is different , partly because it ' s an urban +battlefield and diff --git a/hw/hw1/data/spam/3302.2004-12-26.GP.spam.txt b/hw/hw1/data/spam/3302.2004-12-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..82f166d084dd2beaea210fb9f0e1e82ab0df46e0 --- /dev/null +++ b/hw/hw1/data/spam/3302.2004-12-26.GP.spam.txt @@ -0,0 +1,15 @@ +Subject: refill notification ref : dfo - 102056072 +refill notification ref : mp - 01408304990 +dear paliourg @ iit . demokritos . gr , +our automated system has identified that you most likely are ready to refill your recent online pharmaceutical order . +to help you get your needed supply , we have sent this reminder notice . +please use the refill system ( click this link ) to obtain your item in the quickest possible manner . +thank you for your time and we look forward to assisting you . +sincerely , +garland guthrie +metro snapshot forborne unix pathology clause linguist bike chill ancestry +dominick vade plagiarist warehouse tempt conway southernmost spa pottery +cottrell adept vest corridor doug ineradicable confound senor protozoa apostolic dusenbury +isle idiocy bethlehem louise committee butyrate annoyance adventitious +archival columnar dot dressy colatitude labyrinth valiant neurosis +hanoverian elution bathos pedantic steven directrices grilled dignity diff --git a/hw/hw1/data/spam/3312.2004-12-27.GP.spam.txt b/hw/hw1/data/spam/3312.2004-12-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a83076c6c998287e5b8287ea0ed24915a8eec9e --- /dev/null +++ b/hw/hw1/data/spam/3312.2004-12-27.GP.spam.txt @@ -0,0 +1,11 @@ +Subject: some advice to him +mon , 27 dec 2004 11 : 16 : 55 - 0600 +good day : +after viewing your record we are unable to a p prove your +mor tga g e / r e financ e at the r at e of 3 . 00 . however we +can give you 4 . 0 deal . +if you are satisfied , then we will need you to +verify some information below . +http : / / www . checkdrs . com / +thank you +ricky robison \ No newline at end of file diff --git a/hw/hw1/data/spam/3343.2004-12-29.GP.spam.txt b/hw/hw1/data/spam/3343.2004-12-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c2e57e5cf0c1509f7cea64d916692a2277e2175 --- /dev/null +++ b/hw/hw1/data/spam/3343.2004-12-29.GP.spam.txt @@ -0,0 +1,17 @@ +Subject: italian crafted rolex from $ 75 to $ 275 - free shipping +heya , +do you want a rolex watch ? +in our online store you can buy replicas of rolex watches . they look +and feel exactly like the real thing . +- we have 20 + different brands in our selection +- free shipping if you order 5 or more +- save up to 40 % compared to the cost of other replicas +- standard features : +- screw - in crown +- unidirectional turning bezel where appropriate +- all the appropriate rolex logos , on crown and dial +- heavy weight +visit us : http : / / ealz . com / rep / rolex / +best regards , +hilton jones +no thanks : http : / / www . ealz . com / z . php diff --git a/hw/hw1/data/spam/3383.2005-01-04.GP.spam.txt b/hw/hw1/data/spam/3383.2005-01-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a458390144a1b8fcc586490fc022aa06cf3dac3 --- /dev/null +++ b/hw/hw1/data/spam/3383.2005-01-04.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: enjoy your partner +http : / / dietred . biz / toyz +to stop getting advertisements from this advertiser , click - here +market research +8721 santa monica boulevard , # 1105 +los angeles , ca 90069 - 4507 +sys inf +win 2 k v diff --git a/hw/hw1/data/spam/3455.2005-01-11.GP.spam.txt b/hw/hw1/data/spam/3455.2005-01-11.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..8be89a01ca00ba780ee94f74b963163a261908a6 --- /dev/null +++ b/hw/hw1/data/spam/3455.2005-01-11.GP.spam.txt @@ -0,0 +1,18 @@ +Subject: cheapest meds you ' ll find . +discount drugs . . . save over 70 % +including new softtabs ! the viagra that disolves under the tongue ! ! +simply place 1 half a pill under your tongue , 15 min before sex . +you will excperience : +- a super hard erection +- more pleasure +- and greater stamina ! ! +we ship world wide , and no prescription is required ! ! +even if you ' re not impotent , viiagra will increase size , pleasure and power ! +give your wife the loving she deserves ! ! ! +we are cheaper supplier on the internet . retail price is 15 ea , = ( +our internet price is 1 . 17 each ! ! ! = ) +many many other meds available . +thanks for your time ! +http : / / aujobs . net / ? aa +check out our party pack as well ! +confidentiality assured ! diff --git a/hw/hw1/data/spam/3562.2005-01-23.GP.spam.txt b/hw/hw1/data/spam/3562.2005-01-23.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..fac790477cba208783acb7efbbc5580ac1bf7a38 --- /dev/null +++ b/hw/hw1/data/spam/3562.2005-01-23.GP.spam.txt @@ -0,0 +1,123 @@ +Subject: the daily stock barometer +investor aiert - l r c j - brand new stock for your attention +lauraan corporation - stock symbol : l r c j +breaking news reieased by the company on friday after the ciose - watch +out the stock go crazy on monday morning 24 th of january . +current price : $ 0 . 12 +current price : $ o . 12 +projected specuiative price in next 5 days : $ o . 42 +projected specuiative price in next 15 days : $ 0 . 6 o +lauraan corporation ( lauraan ) is a premier provider of home +entertainment and home automation products and services to the new home market . +the company selis primariiy through homebuilders to homebuyers who are +building homes in the $ 30 ok , and up range . +lauraan is an eariy stage company in the process of deveioping its +business , nationwide , through acquisitions of existing home technology +companies in seiect markets throughout the country . the company has an +experienced management team that has years of experience in the home +technology industry . +current price : $ 0 . 12 +current status +lauraan has compieted its first acquisition , syslync of georgia +( georgia ) . the company plans to acquire 3 more | ocations in the next 4 months +( lois are negotiated and ready to be announced . ) georgia currently has +annuaiized revenues of $ 5 ook and is expected to double its monthly +revenue in the next 6 months . the three next acquisitions wi | | add an +additional $ 2 . 5 million in revenue . +long - term strategy +the company pians to raise funds to make acquisitions throughout +strategic new home markets and create a nationa | brand with revenues of +$ 50 - 75 million by 2 oo 7 . lauraan will be recognized for its quality of +service , value provided , and the simplicity of its soiutions . +breaking news : lauraan corporation announces new servicing and buiider +agreements +grapevine , texas , jan 14 , 20 o 5 / prnewswire - firstca | | via comtex / - - +lauraan corporation ( l r c j ) ( lauraan ) , a provider of home +entertainment and automation products for the new home market , announced today that +their wholiy - owned subsidiary , syslync of georgia , ( syslync ) has +completed an exciusive agreement with certicom , inc . a nationa | provider of +home and commercia | security systems , to service their residentia | +accounts in the atlanta area . in addition , syslync has been named the sole +instalier for new instaliations of residential alarms for certicom and +wil | be their provider of other home technoiogy products too . +sysiync also announced today that they were seiected as the preferred +provider of home technology products and services for atlanta - based lou +freeman properties , inc . , a developer and builder of custom homes in +the $ 2 oo , ooo to $ 1 , ooo , ooo plus , range . +these two agreements wil | more than double the homes we touch +throughout the atlanta area , stated david watson , genera | manager of syslync , +and the agreements wil | provide sysiync with steady , recurring revenue +streams important to our profitability . +lauraan is a home entertainment and technoiogy solutions provider that +offers buiiders and homeowners a singie source for their audio / video , +home theater , security , computer and home automation needs . through its +company - owned stores , lauraan subsidiaries work directiy with builders +and home 0 wners , to design and install home technoiogy soiutions that f +i t the homeowner ' s | ifestyle and budget . +safe harbor act disc | @ imer : this press reiease contains 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 ( the exchange act ) , and as such , may involve risks and +uncertainties . forward - | ooking statements , which are based on certain +assumptions and describe future pians , strategies , and expectations , are +generaliy identifiable by the use of words such as believe , expect , +intend anticipate , estimate , project , or simiiar expressions . +these forward - | ooking statements relate to , among other things , +expectations of the business environment in which the company operates , +projections of future performance , potential future performance , perceived +opportunities in the market , and statements regarding the company ' s +mission and vision . the company ' s actual resuits , performance , and +achievements may differ materia | | y from the resuits , performance , and +achievements expressed or impiied in such forward - | ooking statements due to a +wide range of factors which are set forth in our annua | report on form lo - ksb on file with the sec . +read this | ega | notes before you do anything else : +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 involve discussions with respect to predictions , goais , +expectations , beliefs , plans , projections , objectives , 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 could cause +actua | resuits or events to differ materia | | y from those presently +anticipated . forward | ooking statements in this action may be identified +through the use of words such as : projects , foresee , expects , +estimates , beiieves , understands will , part of : anticipates , or that +by statements indicating certain actions may , could , or might +occur . a | | information provided within this email pertaining to investing , +stocks , securities must be understood as information provided and not +investment advice . emerging equity alert advises al | readers and +subscribers to seek advice from a registered professional 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 . piease have in mind that the interpretation of the +witer of this newsietter about the news pubiished 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 yourseif and judge by yourseif about the details in it . +in compliance with section 17 ( b ) , we disciose the hoiding of l r c j +shares prior to the publication of this report . be aware of an inherent +conflict of interest resulting from such hoidings due to our intent to +profit from the liquidation of these shares . shares may be sold at any +time , even after positive statements have been made regarding the above +company . since we own shares , there is an inherent confiict of interest +in our statements and opinions . readers of this publication are +cautioned not to piace undue reiiance on forward - | ooking statements , which are +based on certain assumptions and expectations invoiving various risks +and uncertainties , that could cause resuits to differ materially from +those set forth in the forward - | ooking statements . +piease be advised that nothing within this email shall constitute a +solicitation or an invitation to get position in or se | | any security +mentioned herein . this newsletter is neither a registered investment +advisor nor affiliated with any broker or dealer . this newsietter was paid +$ 19560 from third party to send this report . al | statements made are our +express opinion only and shouid be treated as such . we may own , take +position and se | | any securities mentioned at any time . this report +includes forward - | ooking statements within the meaning of the private +securities litigation reform act of 1995 . these statements may inciude terms +as expect , believe , may , wiil , move , undervalued and +intend or simiiar terms . +if you wish to stop future mailings , or if you fee | you have been +wrongfuliy piaced in our | i s t , please gohere +( - stockmaker 2005 @ yahoo . com - ) diff --git a/hw/hw1/data/spam/3591.2005-01-26.GP.spam.txt b/hw/hw1/data/spam/3591.2005-01-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4f0fcbf694f87e6adc361046213d568fba7ad05 --- /dev/null +++ b/hw/hw1/data/spam/3591.2005-01-26.GP.spam.txt @@ -0,0 +1,38 @@ +Subject: save a bundle on meds ! +font color = whiteisaac center future phoenixl ricky express jojo jan cougars / fontbrhl +align = centerbfont color = # ffo 000 we never +close / font / b / hl p align = centerfont size = 4 * fast discreet +prescriptionsbr * doctors on call 24 / 7 br * overnight shippingbr * no +charge if not approved / font / p p align = centerfont size = 4 a +href = http : / / s 63 bozoawesome . 092 . alwando . comclick here to enter pharmacy / a / font / p p align = centerbfont color = # 000080 +size = 5 testimonials / font / bfont size = 4 br font +color = # 000080 ii lost 60 lbs in 4 months . simply amazing ! ! br +/ i / font / fontfont color = # 000080 size = 2 linda m . peoria +il / font / p p align = centerfont color = # 000080 ifont +size = 4 viagra changed my life . wish i had tried it sooner . br +/ font / ifont size = 2 mick h . shreveport , la / font / font / p p +align = centerfont color = # 000080 ifont size = 4 i received my order +the next day . very impressed with this service . br i will definitely +recommend and use you again . / fontbr / ifont size = 2 terry s . boise , +id / font / font / p p align = centerfont color = # 000080 ifont +size = 4 no lines no hassles . i will use again . / fontbr / ifont +size = 2 annette k . springfield , ok / font / font / p p +align = centerbfont size = 5 confidentiality , accuracy andbr hassle +free service . br br / fontfont size = 4 all part of our commitment to +you . / font / bbr br gone forever are the headaches , hassles and high +costs of obtaining thebr pharmaceuticals you want and need . br br you +now have a friend in the medical field withbr universalmeds . com . using the +speed and user - friendlinessbr of the internet universalmeds . com has +simplified yourbr ability to research your own health problemsbr and +autonomously discover the available options for treatment . br br font +size = 4 a +href = http : / / s 63 lulukenneth . 092 . alwando . comclick here to +enter pharmacy / a / font / p br br br br br br br br br +br br br brfont color = white +ruth percywarriors stingray larryl +isaac orchidbinky taffy t - bone sapphire johnson lamer +yoda mikel theking +miki romanelectric fireball fletch +guess percy oranges +lorraine pisceswhitney mimi charliel +pacers frogspacers cracker orchid khan benoit spitfire diff --git a/hw/hw1/data/spam/3687.2005-02-04.GP.spam.txt b/hw/hw1/data/spam/3687.2005-02-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..42b17f22830a5aeb009ff817a4c1810f3814adb8 --- /dev/null +++ b/hw/hw1/data/spam/3687.2005-02-04.GP.spam.txt @@ -0,0 +1,153 @@ +Subject: featured company earns highest rating of the year +tiger team technoiogies ( otc - t t m t ) +leading developer of a unique patented process for +transforming business operations of medica | service +providers ( source : news 1 / 4 / 05 ) +current price : - $ o . 08 +reasons to consider t t m t : ( source : company website ) +* tiger team technologies ( t 3 ) , is a | eading deveioper +of a +unique patented process for transforming business +operations +of medica | service providers through state - of - the - art +communication hardware and software technologies . t 3 +has +exclusive rights on this patented process , which +guarantees +secure and bonded eiectronic fiie transmission in +accordance +with federal mandated hippa compliance requirements . +this +translates to total patient privacy and security which +is key to +reducing the | iability and medica | premiums piaced on +providers . based in st . paul , mn , the company seeks to +pursue an aggressive growth strategy targeted at +corporate +and individual medical practices by leveraging this +exciusive +transmission process as an incentive for the medica | +community to outsource existing services . +* capitaiizing on increasing demand for hippa compiiant +guaranteee and secure and bonded transmissions , +including all +| icenses and certifications required for handiing +medical files +and performing transcription services . +* employing t 3 s exclusive and patented process +designed +to deliver secure transmissions bonded up to $ 2 , 50 o +per +transmission . +* establishing a certification program for medica | +industry +simiiar to iso 9000 or six sigma programs appiied to +industria | environments . +* offering medical community a bundle of services with +high +level of security and redundancy and 3 o % reduction in +costs . +* leading advantages over competition in terms of +process , +technoiogy , service and quality contro | . +recent news : +* tiger team technologies forms group in india for +medica | billing and transcription services +* tiger team technoiogies joins forces with large +insur @ nce carrier ; retains an auditor +* tiger team technologies moves forward in becoming a +reporting company +* tiger team technoiogies announces its intention to be +a fu | | y reporting company +watch for more news that may impact the stock . . +watch this stock trade thursday ! ! good luck . +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 , plans , +projections , objectives , goais , assumptions or future +events or performance are not statements of historica | +fact and may be forward looking 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 | 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 , could , or might occur . as with many +microcap stocks , today ' s company has additional risk +factors that raise doubt about its abiiity to continue +as a going concern . today ' s featured company is not a +reporting company registered under the securities act +of 1934 and hence there is | imited information +available about the company . other factors inciude a +| imited operating history , an accumuiated deficit since +its inception , reliance on | oans from officers and +directors to pay expenses , a nominal cash position , and +no revenue in its most recent quarter . it is not +currently an operating company . the company is going +to need financing . if that financing does not occur , +the company may not be able to continue as a going +concern in which case you could | ose your entire +investment . other risks and uncertainties include , but +are not | imited to , the ability of the company to +complete a pianned bridge financing , market +conditions , the general acceptance of the company ' s +products and technoiogies , competitive factors , +timing , and other risks associated with their +business . the pubiisher of this newsletter does not +represent that the information contained in this +message states ail material facts or does not omit a +materia | 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 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 emai | . none of the materia | +within this report sha | | 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 +publisher of this newsletter is not a re gister ed +in vest ment advisor . subscribers shouid not view +information herein as | egal , 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 wouid need perfect timing to +acheive the results in the examples given . there can +be no assurance of that happening . remember , as +always , past performance is ne ver indicative of future +results and a thorough due diiigence effort , including +a review of a company ' s filings when avaiiable , should +be completed prior to investing . in compliance with +the securities act of 1933 , sectionl 7 ( b ) , the pubiisher +of this newsletter discioses the receipt of thirty one +thousand doliars from a third party , not an officer , +director or affiliate shareholder for the circuiation +of this report . be aware of an inherent confiict 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 wiil sel | at anytime without notice . +this could have a negative impact on the price of the +stock . a | | factua | information in this report was +gathered from pubiic sources , including but not +| imited to company websites and company press +releases . the pubiisher of this newsletter believes +this information to be reiiable but can make no +guaranteee as to its accuracy or compieteness . use of +the materia | within this emai | constitutes your +acceptance of these terms . +if you wish to stop future mailings , or if you fee | you have been +wrongfu | | y placed in our | ist , piease go here +( - stoxo 009 @ yahoo . com - ) diff --git a/hw/hw1/data/spam/3709.2005-02-04.GP.spam.txt b/hw/hw1/data/spam/3709.2005-02-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..63583b2896883dd07905ae40b4af5de5088c937d --- /dev/null +++ b/hw/hw1/data/spam/3709.2005-02-04.GP.spam.txt @@ -0,0 +1,27 @@ +Subject: 94 % off on software - autodesk , corel , xp , adobe - qsa +hi , +find lots of cheap software in our site , +the popular programs +adobe photoshop cs 8 . 0 for only 40 $ , +dvdxcopy platinum 4 . 0 . 38 for 20 $ , +microsoft office system professional 2003 ( 5 cds ) for 50 $ , +corel draw 12 graphic suite ( 3 cds ) for just 65 $ , +roxio easy media creator 7 . 0 for 20 $ , +and much , much more . . . . +take a look on the complete list ! +wonder why our priices are unbelievably low ? +we are currently clearing our goods at incredibily cheeap sale - price in connection with the shutdown of our shop and the closure of the stockhouse . don ' t missss your lucky chance to get the best pricce on dis - count software ! +regards +sharron whitten +no thanks : +- - - - - - - - - - - - - - - - - - - - - - - - +sullivan complainant bestirring absolve adiabatic cosmology mystery disruption enable thieving apparent traipse but septic rush wrongdoing scotch wearisome arisen channel lithospheric crossway eduardo baron compliment purgatory darken ultra belief chaplaincy allison +limpid mayapple game garbage buddha cortex abstinent sensory chimeric nakayama effloresce lima abode initiate curfew cadent +chevron lucille melvin archangel broccoli doll dod germanium acquire stepwise convene dobbin abutting convict butene positron mcgill bullhide beaver editorial dispersive abuse taoist expellable sherwood splash gauss crumb reclamation hobbes war berglund trespass inter scotland martinez midwives flame bertram cryogenic finley allegoric ely fetter dennis asthma alienate confess +lipton beacon +headache albanian juxtaposition permian janice +dimethyl conservatory crossroad civic bloodstream bryozoa odin bureaucrat mccarthy skindive silicic go drib capistrano snap clonic duel chaplaincy ethan +bloomfield shied anaglyph revelry tortoiseshell cayuga still telegraphy flagler prow elijah interstice assassinate ballroom tuscarora +satiate pvc bronchiole thicket bess nobody folk capybara menarche plant particular deaconess margarine ornament larva cilia resultant pocono basketball drastic hypotenuse sailor nv officio lightface siva mensuration spheric germanium purslane sightseer newbold methuen polymeric essential blueback moribund vitiate blustery +apportion aquarius debate astound detonable provincial down tactile sidearm credit filmdom codfish persimmon hypoactive chimney getaway oilman indivisible claremont maier ghent diorama manservant edith rebelled vagary nashville emolument jitterbug atop chronicle balboa analogy thirteen opec fail vitreous palace schoenberg stepson libya almost aerodynamic cotyledon doubt mile ptolemy sight blown billy +abetting molybdenite pain hyannis fleawort thetis illogic consistent veranda condolence configuration belies copolymer bloodline masochism bruit ok dilute pharaoh carboxy alvin drumlin protrude septennial europa facet lore blown draftsman anodic dusenbury skillful diff --git a/hw/hw1/data/spam/3714.2005-02-05.GP.spam.txt b/hw/hw1/data/spam/3714.2005-02-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c777f5e6f5dee2fbb8bfc843887f6070f0f4a7e8 --- /dev/null +++ b/hw/hw1/data/spam/3714.2005-02-05.GP.spam.txt @@ -0,0 +1,10 @@ +Subject: the bast phharma out ther - same da - y shijpping ! chromium +hi ! this is for sure one of the best pahrma we can +offer you . we can give special deels and +more . just enter the pharmma now . +don ' t hesitate alb +nah cloy +cloven crossword blank compote centrex . assumption chump babbitt chinchilla . cauldron calvary bobby aspirant aspect . +apotheosis cameraman alluvium conclusion . agglomerate bergland consular choreography caracas . +arsine bandpass carlyle . confident buzzer combine . commemorate assignee crinkle biscuit antiperspirant . +coalesce amphioxis biddy baseman arrack . bashful aloe al . alcoa assyria bottommost abreast buzzing d ' etat . camel billiard bland cufflink . \ No newline at end of file diff --git a/hw/hw1/data/spam/3858.2005-02-17.GP.spam.txt b/hw/hw1/data/spam/3858.2005-02-17.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..149b65f7a15e027db0f35d61aa7c14023ae1fe7b --- /dev/null +++ b/hw/hw1/data/spam/3858.2005-02-17.GP.spam.txt @@ -0,0 +1,19 @@ +Subject: learn to save on medications at discount pharmacy +hello , +save your health your money +get all the medication you need at incredible 80 % discounts . +http : / / werwer 4723 . com / ? news +if you need high quality medication and would love to save on outrageous retail pricing , then canadianpharmacy is for you . why would you need a doctor visit , answering unnecessary or embarrassing questions to get the treatment you already know you need ? +choose it yourself and save big on doctor visits and retail prices , in just 2 simple steps ! +[ you should know that our online shop is never a substitute for a doctor consultation , if youre not sure what medication you need , consult a physician first . ] +but if you already know what you need , why pay more ? shopping with our pharmacy allows you to get high quality medication and save money on retail , without compromising your health and safety . +what condition are you seeking treatment for ? +we have medication for +cholesterol , anti depressant , muscle relaxant , men ' s health , pain relief , diabetes , sexual health +many more +big savings without big risks +http : / / werwer 4723 . com / ? news +regards +jesse summers +http : / / werwer 4723 . com / ? news +not interested ? diff --git a/hw/hw1/data/spam/3921.2005-02-25.GP.spam.txt b/hw/hw1/data/spam/3921.2005-02-25.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a35fa3d81bd30738183de76f3c6d76847b9ccb0 --- /dev/null +++ b/hw/hw1/data/spam/3921.2005-02-25.GP.spam.txt @@ -0,0 +1,13 @@ +Subject: cialis soft tabs - super viagra +hi ! +we have a new product that we offer to you , c _ i _ a _ l _ i _ s 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 . +simply dissolve half a pill under your tongue , 10 min before sex , +for the best erections you ' ve ever had ! +soft tabs also have less sidebacks ( you can drive or mix alcohol +drinks with them ) . +you can get it at : http : / / v - lineinc . com / soft / +no thanks : http : / / v - lineinc . com / rr . php diff --git a/hw/hw1/data/spam/3973.2005-03-05.GP.spam.txt b/hw/hw1/data/spam/3973.2005-03-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c2af3e89eb69fe1d0179218064ae0390be51426 --- /dev/null +++ b/hw/hw1/data/spam/3973.2005-03-05.GP.spam.txt @@ -0,0 +1,36 @@ +Subject: investment news : hot stock this week ! " +the u . s . oil report ( hot stock news flash - this one is moving ) +a premium market related service +attn : subscribers , stockbrokers , analysts investors +tradestar corporation ( otc : tirr ) +symbol tirr +est . shares outstanding 38 , 000 , 000 +est . float 2 , 000 , 000 +recent price $ 0 . 71 +tirr is up over 70 % in the past two weeks ! ! ! +tradestar corporation ( tirr ) finishes recompletion of karnes county tx oil well bringing on 35 bpd in production ! ! ! +readers who have followed oil stock recommendations ( otcbb : svse and asurf ) in the past have profited nicely . +the company +tradestar corp . ( otc : tirr ) , is a junior oil gas exploration company that specializes in re - entries and offset drilling for hydrocarbons in an area said to have the largest untapped potential for natural gas in north america . new prices and technologies have exponentially improved the economics and drill success rates average over 90 % . tradestar corp . is engaged in the low - risk development of proven oil and gas properties in texas including the prolific barnett shale gas play south of ft worth . the rapid oil and gas price increases and recent advances in economical drilling , completion and production techniques , have resulted in : +1 accelerated development activity and increased land lease values in this extremely productive area . +2 co - mingling gas flow from several productive sands in each well - - increasing both initial and total output . +3 the opportunity to drill new offset wells - - where success rates are typically over 90 % . ( using oil @ $ 35 . 00 and gas @ $ 4 . 50 - - the pay back on well re - entry costs are estimated to average about 6 months . oil is currently $ 48 and gas $ 6 ! ! ! ! +tirr ' s strategy is to strike oil again ! using current drilling technologies available today the company has begun to tap into low risk , high yield underdeveloped gas reserves in one of the most prolific plays ( barnett shale in central texas ) in the lower 48 states ! ! ! with a balanced portfolio of oil gas properties , an aggressive acquisition campaign , experienced management team , and application of cutting edge ep technologies , we believe that tirr could be the next breakout stock in your investment portfolio . +investors have a ground floor opportunity to own a piece of a company poised to take advantage of skyrocketing world energy prices . these high energy prices have created new opportunities to bring undeveloped domestic reserves on stream with minimal downside risk to the company ! ! ! ! +previous news +tradestar corporation announces barnett shale project +hot springs , ark . , - - tradestar ( otc : tirr ) today announces that it has entered into a joint venture agreement with united production and exploration of houston , texas to reenter and drill a binion parker gas well and prospect in erath county , texas . in addition to the gas well reentry , the prospect , which covers 111 acres , has an additional location to drill a new well . the objective formation of the recompletion and new drill is the barnett shale formation at a depth of approximately 4 , 830 ' to 5 , 030 ' with 200 net feet of anticipated pay zone . estimated reserves in the reentry and new well are 750 , 000 mcf for each well . +why we love this stock +1 . continued rise in world oil gas prices ! +2 . over 30 potential oil gas producing sites in the prolific barnett shale of central texas +3 . strong industry investment banking relationships +4 . strong management - over 50 years of experience in the oil patch +5 . multiple leaseholds and joint venture partners +6 . tight float , low entry price strong upward potential ! +7 . business model offers only real solution to u . s . dependency on foreign oil . +8 . the company recently proposed a joint venture project in the prolific barnett shale natural gas play in central texas with est . reserves of over 10 trillion cubic ft of gas ! +conclusion +tradestar corp . ( tirr ) is getting ready to become a major presence in oil gas fields across texas . tirr ' s potential for large - scale production in prolific and underdeveloped regions like the barnett shale , position the stock for immediate upward movement ! ! ! we believe that tirr is in position to take the petroleum industry by storm . the company ' s resource development is currently ahead of schedule and positive drilling results appear imminent in the near future . revenues are up 50 % over the lst quarter of last year . don ' t miss this fantastic opportunity . for more information on tirr , go to tradestar - corp . com for sec filings or press releases . +this is one of our top recommendations this year . we are giving tirr our seal of approval . +read this : +please be advised that nothing within this email shall constitute a solicitation or an invitation to get position in or sell any security mentioned herein . this newsletter is neither a registered investment advisor nor affiliated with any broker or dealer . this newsletter was paid 400 , 000 shares from a third party to send this report . all statements made are our express opinion only and should be treated as such . we may own , take position and sell any securities mentioned at any time . this report includes forward - looking statements within the meaning of the private securities litigation reform act of 1995 . these statements may include terms as expect , believe , may , will , move , undervalued and intend or similar terms . diff --git a/hw/hw1/data/spam/3979.2005-03-05.GP.spam.txt b/hw/hw1/data/spam/3979.2005-03-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..931292624fb5e70503c66f882ecc4e5990690348 --- /dev/null +++ b/hw/hw1/data/spam/3979.2005-03-05.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: lower lipids and lower risk for heart disease langley +some hills are never seenthe universe is +expanding +album : good stufftitle : bad influence call it +bad big town holds me backbig town skinns my mind +sorry to have troubled you ; but it couldn ' t +be helped +bolan kerlaugir xmo 3 reginlejf diff --git a/hw/hw1/data/spam/3988.2005-03-06.GP.spam.txt b/hw/hw1/data/spam/3988.2005-03-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..967e5e54fda74419bb0ebc24d10616f5e63a1aa1 --- /dev/null +++ b/hw/hw1/data/spam/3988.2005-03-06.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: your pharmacy ta +would you want cheap perscriptions ? http : / / www . prlce . com / diff --git a/hw/hw1/data/spam/4102.2005-03-19.GP.spam.txt b/hw/hw1/data/spam/4102.2005-03-19.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..34bad745d3e6cb267ae7d9e9f59fb804eb14f163 --- /dev/null +++ b/hw/hw1/data/spam/4102.2005-03-19.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: here it is my friend +here it is the password to that amazing adult site . +username : burt 69 ok +password : zzso 02 ji +url : http : / / www . messyland . com / d / h / 1 . php diff --git a/hw/hw1/data/spam/4132.2005-03-28.GP.spam.txt b/hw/hw1/data/spam/4132.2005-03-28.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..148044b8d31660be2a62a82a7bada0599ddfc440 --- /dev/null +++ b/hw/hw1/data/spam/4132.2005-03-28.GP.spam.txt @@ -0,0 +1,7 @@ +Subject: get all the same meds for less . +save up to 80 % off all retail meds . we have the +pain relief you want . no waiting and no hassles . no prescriptions or +appointments . fast discreet shipping to your door . isn ' t it time you +stopped by ? +click here to see the +selection . diff --git a/hw/hw1/data/spam/4152.2005-04-01.GP.spam.txt b/hw/hw1/data/spam/4152.2005-04-01.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..777d7f498b53c2572e0f7e806078057fd3e1162e --- /dev/null +++ b/hw/hw1/data/spam/4152.2005-04-01.GP.spam.txt @@ -0,0 +1 @@ +Subject: free report on the euro tells you how you can gain from it diff --git a/hw/hw1/data/spam/4363.2005-04-24.GP.spam.txt b/hw/hw1/data/spam/4363.2005-04-24.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..52373e7b3ac5c3f032b336e4fe2e66cddc90b317 --- /dev/null +++ b/hw/hw1/data/spam/4363.2005-04-24.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: excellent rx +- - - - 1046043196122050333 +hi varou , +taking the impotence drug with alcohol and food . have discovered that after a workout , on a fairly empty stomach , response is very quick and intense . taken with meals really causes a lag for me . - bob , age 45 +gone forever are the headaches , hassles and high costs of obtaining the pharmacy products you want and need . +we don ' t require any prescriptions . . visit us today . +best regards , +sadie rodrigez +- - - - - - \ No newline at end of file diff --git a/hw/hw1/data/spam/4373.2005-04-25.GP.spam.txt b/hw/hw1/data/spam/4373.2005-04-25.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..40a96546b3e7d3e53e14695a357b2b68d418be6a --- /dev/null +++ b/hw/hw1/data/spam/4373.2005-04-25.GP.spam.txt @@ -0,0 +1,31 @@ +Subject: re : vi - agra valllum c - allis +hello , would you like to spend less on your medlcatlons ? +visit ppharmacybymail shop and save over 7 0 % +v +gr +ia +a $ 200 +( 120 piils ) +ci +li +a +s $ 180 +( 80 pilis ) +va +iu +l +m $ 250 +( 220 piils ) +le +t +vi +ra $ 300 +( 50 pilis ) +x +a +an +x $ 270 +( 200 piiis ) and many other +have a nice day . +p . s . +you will be pleasantly ssurprised with our prices ! \ No newline at end of file diff --git a/hw/hw1/data/spam/4382.2005-04-26.GP.spam.txt b/hw/hw1/data/spam/4382.2005-04-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..38d628501fb42e986a2b4053fcb95200f31d043f --- /dev/null +++ b/hw/hw1/data/spam/4382.2005-04-26.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: majestic rx +- - - - 8673849000404220545 +hi varou , +how quickly does it work ? i take 50 mg 15 minutes before love making , and now i can spend hours with foreplay and not worry if i ' m gonna go soft or lose interest . +we have a global network of health professionals with one common goal : to provide a convenient , globally accessible , affordable and safe means in acquring the latest drugs available for all . +no embarassment - prescriptions are always confidential . . visit us today . +best regards , +altha woodring diff --git a/hw/hw1/data/spam/4412.2005-04-29.GP.spam.txt b/hw/hw1/data/spam/4412.2005-04-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e651df4303d62839b82985d3bcf63b22093991b --- /dev/null +++ b/hw/hw1/data/spam/4412.2005-04-29.GP.spam.txt @@ -0,0 +1,198 @@ +Subject: [ auto - reply ] special report reveals this smallcap +rocket stocks newsletter +first we would like to say thank you to al | of our avid readers ! we +have +had huge success over the last few months and have become one of the +most +wideiy read investment newsletters in the worid . we have accomplished +this +by providing timeiy , accurate information on s - tocks with the potential +for +great returns . +rocket s - tocks is not your father ' s investment newsietter ! we focus on +s - tocks with the potentia | to go up in value by weil over 5 oo % . that ' s +what +it takes to make it on to our | ist . these are s - tocks for the risk +toierant +investor ! the beauty of this is that it oniy takes one smart +investment to +make serious profits ! +new deveiopments expected for intelligent sports , inc . s - tock +from $ o . 01 to over $ o . 08 +symbo | : igts . pk +current price : $ 0 . 01 +short term target price : $ o . o 8 +12 month target price : $ o . 17 +intelligentsports . net +we love these small companies . a company | ike this is | ike a siigshot , +pu | | ed back and ready to go . one fortunate turn of events , one big +contract , and the s - tock of a smal | company such as this can explode ! +read on to find out why igts . pk is our top pick this week . +* * * top reasons to consider igts * * * +* unique business model reminisant of goid ' s gym before it exploded +onto the +fitness scene . +* the numbers are staggering and continue to rise daiiy . 15 % of +children / adoiescents are overweight nationwide . source : 2 oo 2 report +by the +centers for disease contro | +* according to the president ' s counci | on physical fitness and sports , +oniy +17 percent of middle and junior high schools and 2 percent of senior +high +schools require daiiy physical activity for ail students . igts is +| ooking +to fill that gap . +* pubiic educational institutions can no | onger afford to keep up with +the +demand for team sports . the time when school sports programs had +enrollment fees of $ 10 is fading , said former nba star and inteiligent +sports , inc . board member , reggie theus . not every parent is wi | | ing +to pay +$ 3 oo enrollment fees for a sport their child is only casually +interested in ; +some parents can ' t afford to pay that much for a sport their chiid +exceis +at . +* igts has plans to be in suburbs across america , providing fitness and +sports opportunities to america ' s youth . +* igts ' s proven business is ready for expansion . +* news ! news ! news ! +here is recent news on the company : +upland , caiif . - - ( business wire ) - - june 17 , 2 oo 5 - - inteliigent sports , +inc . , +continues its focus on providing physical and mental guidance to a | | +student - athietes , by unveiiing pians to begin licensing their youth and +fitness center concept , the sports zone , nationaliy | ater this year . +recognizing the link between athietic participation and personal +success , +publiciy held inte | | igent sports , inc is introducing a new generation +of +youth to athletics through the development of the organized youth +sports +programs and faciiities . +since their fall 2 oo 4 | aunch of the sports zone youth sports and +fitness +center concept in upland , ca , they have seen tremendous growth in their +program options and customer base . the sports zone by intelligent +sports in +upland , caiifornia encompasses a 12 , oo 0 square foot area facility +featuring +two basketbal | courts catering to a wide range of after - school sport +programs , weekend leagues and tournaments for core indoor court sports +including basketball , volleybail , cheerleading , dance , wrestiing , +martial +arts , dodge bal | and more . the sports zone aiso has the abiiity to host +soccer , footbal | and other fieid - reiated athietic activity within the +compiex arena . +i ' m excited to see the business concept expanding as the sports zone +offers +youth a springboard to grow both athletically and inteliectually , +stated +inteiligent sports president , thomas hobson . be it speciaiized sports +skiil +training or persona | deveiopment , we have something for everyone . the +business concept wiil soon be avaiiable through licensing , providing +other +markets a centralized | ocation for a wide - range of sports all deveioped +to +fit the diverse needs of each market . the sports zone concept is based +on +offering a wide variety of programs for youth at every ski | | | eve | . +according to the president ' s counci | on physica | fitness and sports , +only 17 +percent of middle and junior high schools and 2 percent of senior high +schoois require daily physica | activity for all students . with a board +comprised of reggie theus , former nba star , tv anaiyst , and current +head +men ' s basketbal | coach at new mexico state university , and keilen +winsiow , a +member of the nfl hail of fame , inteliigent sports , inc is one company +that +is passionate about filiing that gap for the youth in our communities . +this is a rare opportunity to get in early on a company poised to meet +a +nationwide demand . we beiieve this s - tock has huge potentia | for a +rapid +price increase . +we beiieve the speculative near term target price is - $ 0 . o 8 +we beiieve the speculative long term target price is - $ 0 . 17 +please watch this one trade monday ! ! +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 invoive discussions with respect to predictions , +expectations , beliefs , pians , projections , objectives , goals , +assumptions or +future +events or performance are not statements of historical fact and may be +forward looking 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 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 , +wil | , anticipates , estimates , beiieves , 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 include : 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 +s - tockhoider , suppiies ninety - seven percent of the company ' s raw +materials : +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 fuliy spe | | ed 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 ail material facts or does not omit a material 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 materia | 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 all your money 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 seiected to be referenced based on the favorabie performance +of +these companies . you would need perfect timing to achieve the resuits +in the exampies given . there can be no assurance of that happening . +remember , as always , past performance is never indicative of future +resuits and a thorough due diligence effort , including a review of a +company ' s filings , shouid be compieted prior to investing . in +compiiance +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 shareholder 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 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 +| imited to company websites , sec filings and company press reieases . +the +rocket stock report beiieves 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 . +if you wish to stop future mailings , piease mai | to newsoffl @ yahoo . com diff --git a/hw/hw1/data/spam/4420.2005-04-30.GP.spam.txt b/hw/hw1/data/spam/4420.2005-04-30.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3d0f4f57464f6e117590ff0a9e29d2a683bda1f --- /dev/null +++ b/hw/hw1/data/spam/4420.2005-04-30.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: popular software at low low prices . advocated sunshine +observe produce , six man . subject ice light so eat opposite . +cold still start snow home supply , time . much short change land , +had fire . sun , possible to . call dark game live . line , after +summer . what history oh idea stone . mouth an lead . diff --git a/hw/hw1/data/spam/4428.2005-05-01.GP.spam.txt b/hw/hw1/data/spam/4428.2005-05-01.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a1491a9d699bb22c3e5ec8d9fe10199b802ede4 --- /dev/null +++ b/hw/hw1/data/spam/4428.2005-05-01.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: start saving now +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 . +our easy application takes only 1 minute . +http : / / www . jhaevb . info +no thankya : http : / / fro . jbsdq . info diff --git a/hw/hw1/data/spam/4455.2005-05-07.GP.spam.txt b/hw/hw1/data/spam/4455.2005-05-07.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdccf263cdaddda99b4b9cb3a2d00e5b184e0ef1 --- /dev/null +++ b/hw/hw1/data/spam/4455.2005-05-07.GP.spam.txt @@ -0,0 +1,23 @@ +Subject: do you like computers +incredible offers : +windows x * p pro 2 oo 2 5 o dollars +o * r * d * e * r : http : / / epsom . gaulhafmk . com +we also have : +- ms picture it premium 9 +- ms sql server 2 ooo enterprise edition +- ms sql server 2 ooo enterprise edition +the offer is valid untill may 16 th +stock is limited +check out +judith lanier +masseur +indrel industria refrigera ? ? o londrinense , londrina 86072000 , brazil +phone : 911 - 547 - 3116 +mobile : 737 - 434 - 1646 +email : otxfcc @ satyamonline . com +this message is beng sent to confirm your account . please do not reply directly to this message +this version is a 27 day definite freeware +notes : +the contents of this message is for understanding and should not be ankara conferee +turnout lou venezuela +time : sat , 07 may 2005 10 : 39 : 39 + 0200 diff --git a/hw/hw1/data/spam/4472.2005-05-10.GP.spam.txt b/hw/hw1/data/spam/4472.2005-05-10.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dbf47598e4f3c5c33226c4198034ccdb034a613 --- /dev/null +++ b/hw/hw1/data/spam/4472.2005-05-10.GP.spam.txt @@ -0,0 +1,28 @@ +Subject: small - cap market advisors +hidden gem - new opportunity investor alert ( 4 / 19 / 05 ) +the childrens internet , inc . ( citce . ob ) +near term price proj : $ 1 o +shares outstanding : 26 , 578 , 138 +market cap : $ 81 , 000 , 00 o +in january ' 05 blue horeshoe loved report # 45 ( snsta . ob ) at a price of $ 7 per share . snsta reached a high of $ 42 per share in just a few weeks a gain of over 6 oo % . the featured stock in this report is ( citce . ob ) blue horseshoe loves report # 46 ( citce . 0 b ) +a few reasons to own citce : +- citce is piosed for explosive growth in the internet technology sector +- citce recently received critical acclaim by pc magazine rated higher than the competitive offerings of aol , earthlink and msn , winning the prestigious editors choice award over all the competition landing them a spot on the cover +- 2 : 1 forward split effective 3 / 7 / 2 oo 5 total shares outstanding post - split 26 , 578 , 138 +- market cap as of march 17 th , 20 o 5 of approximately $ 50 million +- the creator of the childrens internet software , and its licensor , is two dog net , inc . founded in 1995 which invested approximately $ 8 million in rd for tci and safe zone security software . +- tci forecasts it will achieve positive cash flow and profitability within one year , and have 333 , ooo paying subscribers at the end of its first year of operations . +- 85 % of all parents with children fewer than 11 years of age have expressed concern for their childs internet safety and 45 % of all parents feel the internet is critical for educational purposes . +- the children ' s internet protection act ( cipa ) is a federal law recently enacted by congress in to address concerns about access in schools and libraries to the internet and other information . the federal communications commission ( fcc ) issued rules to ensure that cipa is carried out . +- five million subscribers ( 1 o % of the domestic universe ) generate approximately $ 300 million in annual net revenues to tci . +about citce : +the childrens internet , inc . ( tci ) is the exclusive world - wide marketer and distributor of the childrens internet , a one of a kind , safe online service offering secure , real time access to pre - selected , pre - approved , age - appropriate educational and entertaining web sites for children pre - school through junior high . the childrens internet provides a child with a rich array of easy to use applications , including secure e - mail , homework help , games , news , learning activities and virtually limitless educational resources all within its loo % safe , predator - free online community protected by the patent - pending , proprietary safe zone technology . +the childrens internet gives parents the best solution available today which lets their child enjoy the tremendous educational and entertaining benefits of the internet without encountering elements that could destroy their innocence forever . +the company is positioned to be the unprecedented global brand leader in the online education and security category for parents , children , and educators . equally important , not only is the product secure , the childrens internet meets the highest educational standards while meeting every childs desire for independence , fun , creativity , and adventure . with disneyesque characteristics , its interactive tools give kids everything they need to succeed in todays world . +tci empowers children to learn , grow and insures that no child will be left behind . +valuation : +keep a real close eye on citce , as one never knows when a sleeping giant will be awakened ! +as always watch this stock trade ! ! ! +conclusi 0 n : +like many exciting opportunities that we uncover , citce is a company whose primary business activity is software technology . we believe that good things could happen including a higher market capitalization and potential rapid stock price appreciation , as the investing public becomes more aware of citces potential . +if you wish to stop future mailings , please mail to news _ let 3 @ yahoo . com diff --git a/hw/hw1/data/spam/4497.2005-05-17.GP.spam.txt b/hw/hw1/data/spam/4497.2005-05-17.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..22e3be1a1c971bcea7c33a91aec8176f1740f46b --- /dev/null +++ b/hw/hw1/data/spam/4497.2005-05-17.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: now this acts quicker and lasts much longer ! +hello ! +vlgr professi 0 nal ( $ 1 . 88 per dose ) +vlgr soft tbs ( $ 1 . 99 per dose ) +generc vlgr ( $ 1 . 8 o per dose ) +clls ( $ 2 . 99 per dose ) +clls soft tbs ( $ 2 . 25 per dose ) +the fear of the lord is the beginning of wisdom and the knowledge of the holy is understanding . much food is in the tillage of the poor but there is that is destroyed for want of judgment . whoso is simple , let him turn in hither and as for him that wanteth understanding , she saith to him , let thine eyes look right on , and let thine eyelids look straight before thee . a merry heart maketh a cheerful countenance but by sorrow of the heart the spirit is broken . diff --git a/hw/hw1/data/spam/4577.2005-05-27.GP.spam.txt b/hw/hw1/data/spam/4577.2005-05-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0a66662df6550515679c1fd238adfd66563854a --- /dev/null +++ b/hw/hw1/data/spam/4577.2005-05-27.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: fw : win - dows xp + office xp = 80 dol lars . +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 . \ No newline at end of file diff --git a/hw/hw1/data/spam/4665.2005-06-09.GP.spam.txt b/hw/hw1/data/spam/4665.2005-06-09.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b52d3fb1a1b0095683fccae483a823d920a76377 --- /dev/null +++ b/hw/hw1/data/spam/4665.2005-06-09.GP.spam.txt @@ -0,0 +1,22 @@ +Subject: a more radiant you +act now . get your +free trial offer of the revelotionary +new anti - wrinkle +complex by derma radiant of beverly hills . +2 - step miracle : +anti - wrinkle complext +ageless eyest +. reduce fine lines and deep wrinkles by 98 % . +. increase collagen synthesis by 350 % . +. remove dark circles and puffiness under the eyes . +dermaradiant +468 north camden drive 2 nd floor +beverly hills , ca 90210 +1 - 800 - 859 - 3265 +cs @ dermaradiant . com +www . dermaradiant . com +if you would rather not receive further emails from derma radiant please go to here . +removal requests : +3305 w spring mountain rd . +suite 60 - 15 +las vegas , nv 89102 diff --git a/hw/hw1/data/spam/4687.2005-06-12.GP.spam.txt b/hw/hw1/data/spam/4687.2005-06-12.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..3761ca5a610f6ea364cf1d36f3ac916acbe70fa9 --- /dev/null +++ b/hw/hw1/data/spam/4687.2005-06-12.GP.spam.txt @@ -0,0 +1,19 @@ +Subject: works wondder +dear sir / madam . +we are please polity d to introduce ourselves as one of the leading online pha pertain rmaceutical shops . +save doddery over 75 percent on meds today with medzmail sho goatherd p +v sudoriferous la +r ferrotype a +l candidate al +overdraught lu +administer g +mandrill c +i gombeen sv stabilizator al +unstop m +sandmanyother . +with each pedicure purchase you get : +top qu lustring aiity +best pri relatival ces +total confidentiai singleeyed ity +home deiiv selfsufficient ery +have a nice day . \ No newline at end of file diff --git a/hw/hw1/data/spam/4735.2005-06-20.GP.spam.txt b/hw/hw1/data/spam/4735.2005-06-20.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..e03e78e22cb1a790570eb60dad06b9d33e0cac59 --- /dev/null +++ b/hw/hw1/data/spam/4735.2005-06-20.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: software at incredibly low prices ( 83 % lower ) . unconscionable botching +gentle always , vary both river joy hour . against phrase early +hair , grass century , numeral . verb , wire as . behind thousand , +face , common . fine does low , snow . long lie case wash job +complete each . make cover bank by where . hit soldier serve at +well force . fly early every . round laugh their . where , smell +mind . rather strong village lay . some fraction we north trade +sit , particular . diff --git a/hw/hw1/data/spam/4743.2005-06-25.GP.spam.txt b/hw/hw1/data/spam/4743.2005-06-25.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..28ca071930650ad666993137be94273f34eea0f4 --- /dev/null +++ b/hw/hw1/data/spam/4743.2005-06-25.GP.spam.txt @@ -0,0 +1,14 @@ +Subject: what up , , your cam babe +what are you looking for ? +if your looking for a companion for friendship , love , a date , or just good ole ' +fashioned * * * * * * , then try our brand new site ; it was developed and created +to help anyone find what they ' re looking for . a quick bio form and you ' re +on the road to satisfaction in every sense of the word . . . . no matter what +that may be ! +try it out and youll be amazed . +have a terrific time this evening +copy and pa ste the add . ress you see on the line below into your browser to come to the site . +http : / / www . meganbang . biz / bld / acc / +no more plz +http : / / www . naturalgolden . com / retract / +counterattack aitken step preemptive shoehorn scaup . electrocardiograph movie honeycomb . monster war brandywine pietism byrne catatonia . encomia lookup intervenor skeleton turn catfish . diff --git a/hw/hw1/data/spam/4766.2005-06-28.GP.spam.txt b/hw/hw1/data/spam/4766.2005-06-28.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2aae2f8e9113c2ff5f67d0d393f330ad4308395 --- /dev/null +++ b/hw/hw1/data/spam/4766.2005-06-28.GP.spam.txt @@ -0,0 +1,11 @@ +Subject: account # 20367 s tue , 28 jun 2005 11 : 41 : 41 - 0800 +hello , +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 can now get $ 327 , 000 for as little as $ 617 a month ! +bad credit ? doesn ' t matter , ^ low rates are fixed no matter what ! +follow this link to process your application and a 24 hour approval : +http : / / www . ddrefi . net / ? id = al 7 +best regards , +harrison neely +http : / / www . ddrefi . net / book . php diff --git a/hw/hw1/data/spam/4796.2005-07-03.GP.spam.txt b/hw/hw1/data/spam/4796.2005-07-03.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e67ca729276684162db838d30328e62cc228333 --- /dev/null +++ b/hw/hw1/data/spam/4796.2005-07-03.GP.spam.txt @@ -0,0 +1,20 @@ +Subject: greatly improve your stamina +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 +probably not , answered the demon +oranjestad , aruba , +po b 1200 +how old is your mother ? asked the girlmother ' s about two thousand +years old ; but she carelessly lost track of her age a few centuries ago and +skipped several hundreds could you accomplish that , you might command my +services forever +but , having once succeeded , you are entitled to the nine gifts - - three each +week for three weeks - - so you have no need to call me to do my duty diff --git a/hw/hw1/data/spam/4935.2005-07-27.GP.spam.txt b/hw/hw1/data/spam/4935.2005-07-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..22dab2441c21c7e5c6aaa02173444642e0417aa9 --- /dev/null +++ b/hw/hw1/data/spam/4935.2005-07-27.GP.spam.txt @@ -0,0 +1,81 @@ +Subject: hp psc 1315 all - in - one @ $ 69 . 00 +hp psc 1315 +all - in - one +printer , scanner , copier +$ 69 . 00 +the hp psc 1315 all - in - one +printer , scanner , copier with reliable , proven technology combines +convenience and ease into one compact +product . +* refurbished +these units of this model are replaced by the +another model of hp now , and therefore bears a r at the end of the +part number . warranty is one year . +visit : http : / / www . computron - me . com for deals +! +your one stop / office # td +01 , jebel ali duty free zonedubai , uae . www . computron - me . com +for latest clearance sale listing contact our +sales department . +for further details please send +your enquiries to : dealers @ emirates . net . aeor contact via www . computron - me . com +compaq +hewlett packard +3 com +dell +intel +iomega +epson +aopen +creative +toshiba +apc +cisco +us +robotics +microsoft +canon +intellinet +targus +viewsonic +ibm +sony +- - - - - - - and lots more +! ! ! +if you have any +complaints / suggestions contact : customerservice @ computron - me . com +tel + 971 4 +8834464 +all prices in u . s . dollars , ex - works , +fax + 971 4 +8834454 +jebel ali duty free zone +www . computron - me . com +prices and availability subject to change +usa - +canada u . a . e . +without +notice . +to receive our special offers +in plain +text format reply to this +mail with the request * for +export only * +this +email can not be considered spam as long as we include : contact +information remove instructions . this message is intended for dealer +and resellers only . if you have somehow gotten on this list in error , or +for any other reason would like to be removed , please reply with " remove +" in the subject line of your message . this message is being sent to you +in compliance with the 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 u . s . congress . +all logos and +trademarks are the property of their respective ownershp only for +sale in the middle east +products may not be exactly as shown +above +- - +to unsubscribe from : computron 4 , just follow this link : +click the link , or copy and paste the address into your browser . +please give it atleast 48 hours for unsubscription to be effective . \ No newline at end of file diff --git a/hw/hw1/data/spam/4979.2005-08-06.GP.spam.txt b/hw/hw1/data/spam/4979.2005-08-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ee66ddcf0642c8374e19810896a40c27c92b245 --- /dev/null +++ b/hw/hw1/data/spam/4979.2005-08-06.GP.spam.txt @@ -0,0 +1,67 @@ +Subject: a better way is at handheldmed . com +a new day has dawned . there is a better way ! +introducing the new handheldmed website ! +www . handheldmed . com +whether you are a new customer or an old customer , we redesigned our new website with you in mind ! +some of the new features you will find include : +1 . enhanced customer education +a . 3 easy steps to become a handheldmed member . +b . answers to common questions like ' what are ebooks ? ' what is the hhm mobipocket reader ? ' and ' how do i get started ? ' . +c . online tours of handheldmed ebooks and the hhm mobipocket reader as they appear on palm , pocket pc , sony ericsson , symbian , and windows pc . see how it works before you even download a free trial . +2 . improved site navigation +a . browse medical ebooks by operating system - palm os , pocket pc , sony ericsson , symbian , windows mobile , and windows pc . +b . new ebook store front page for each operating system . +3 . seamless download , installation , and registration on windows pc and mac os +a . tutorials guide you through the download , installation , and registration process step by step whether you ' re downloading a free trial or a purchased ebook . +1 . quicknav functionality allows users familiar with the process to skip steps . +b . register once and only once regardless of how many ebooks you purchase . +4 . re - engineered on - line support structure +a . new " ask technical support " form collects important information about your problem quickly and easily , providing you with more efficient support . +5 . shopping cart secured by verisign . +e - book conversion to mobipocket +handheldmed is also finishing up the conversion of our existing reference library from the ez reader format to the new standard in ebook platforms : mobipocket reader . +note : as of january 1 , 2006 , handheldmed will no longer support the ez reader platform . although handheldmed has worked tirelessly to make all of our ez reader reference content available for mobipocket , due to some licensing constraints , we have not and will not be able to convert all of our existing titles . watch for more information on which of these titles this will affect . +new titles coming out soon include : +tabers 20 th ed . august 10 , 2005 +harrisons manual of medicine 16 th ed . september 1 , 2005 +the merck vet manual 8 th ed . september 10 , 2005 +30 % off sale on top ten titles ! ! ! +to celebrate our new website and web customer experience we are taking 30 % off all of our top 10 selling references for 30 days only ! +these include : +tabers 20 ( when available ) +a to z +drug facts +5 minute clinical consult 05 +5 minute emergency consult +5 minute pediatric consult +merck manual +nqcd +hodt +5 minute infectious disease +cvmstat +if you are a previous owner of an ez reader version of one of these books , you are eligible for even greater discounts . each of the titles that have been converted from ez reader to mobipocket ( eligible titles are highlighted in red above ) conversion price is only $ 25 ! ! check it out today ! ( conversion price applies to same version only ) +patient tracker is back , and better than ever ! +is your practice or organization looking for a low cost , integrated , robust , easy to use patient charting application for your desktop , network or handheld devices ? +look no further ! +patient tracker t is back and better than ever ! +in april , 2005 shatalmic , llc signed an exclusive agreement with handheldmedr , inc . to take over development , sales and support for the patient trackerr line of products . with extensive experience in the hand held and desktop markets , shatalmic is the perfect partner with handheldmedr to develop new features and functionality for the patient tracker product family . +new features and updates for the patient tracker suite include ; +- updates and bug fixes for palm os version ; addresses most compatibility issues with newer devices . +- new installer for pocketpc that works on newer devices enabling syncing to desktop +- new installer for desktop pro soon to be released that will include updated microsoft sql server installation . +product pricing : +patient tracker handheld ( palm os , pocketpc or windowsmobile ) - $ 9 . 95 +patient tracker desktop ( pro or lite ) - $ 299 . 00 , additional licenses $ 199 . 00 each . +call tony pitman today ! @ ( 801 ) 336 - 4712 or email tony @ shatalmic . com . +special group and institution volume pricing is available . +if you want more information about patient tracker when new updates and features are available , please click here to be added to the patient tracker specific mailing list . shatalmic assures you that you will not receive spam email only patient tracker specific information . they do not sell your email address to anyone . they are very serious about privacy and this is totally an opt in mailing service . +by signing up for email updates , you will be added to a list of users that will have the chance to participate in the patient tracker 2005 survey . this survey will help shape the future direction of patient tracker by the answers that users / customers give . +about shatalmic llc . +shatalmic , llc is a privately - held , software developer founded company headquartered in layton , utah . since 1977 , we have been working in the computer industry . shatalmic was formed in 1995 and was recently incorporated as an llc in 2004 . +groups institutions +for group or institutional volume discount pricing or any questions about the new features and functionality of these new handheldmed editions : +please contact susan jones : susanj @ handheldmed . com +every possible effort is made to send only to those on our subscriber list . +if you received this message in error , please accept our apologies and select the following link +immediately unsubscribe +if that link fails , send an email to unsubscribe @ handheldmed . com diff --git a/hw/hw1/data/spam/5020.2005-08-16.GP.spam.txt b/hw/hw1/data/spam/5020.2005-08-16.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bed7c2b49bf94d37457cee996b29181da4aa121 --- /dev/null +++ b/hw/hw1/data/spam/5020.2005-08-16.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: funny +may aplomb be angola may prize some workload +on hop but pluto ! brandt on samson +or syndic ! cursor it denigrate and damp +in antoine see secrete not wilderness try expedient +a schematic and vengeful , fullback . out , babe , go here diff --git a/hw/hw1/data/spam/5057.2005-08-22.GP.spam.txt b/hw/hw1/data/spam/5057.2005-08-22.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e7d0eb016769b25edbf25b736246a3c331b805b --- /dev/null +++ b/hw/hw1/data/spam/5057.2005-08-22.GP.spam.txt @@ -0,0 +1,12 @@ +Subject: do you care ? +them kind so work game , meet . expect describe red , figure +mother . atom try throw excite pattern . guess early , fill farm +result twenty scale . three captain other study , above thus . wait +nation kept every sent . new next , true shall time , temperature , +some . change rather sound mother east up up . clock , too , world +after . but , last , find where after inch , plant . your pound meat +eye , had what talk . +- - +phone : 471 - 137 - 7601 +mobile : 409 - 193 - 8124 +email : stony @ verizon . net diff --git a/hw/hw1/data/spam/5079.2005-08-25.GP.spam.txt b/hw/hw1/data/spam/5079.2005-08-25.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..d37cccf56ad8ee2897f267f99471f62b0a3fe27a --- /dev/null +++ b/hw/hw1/data/spam/5079.2005-08-25.GP.spam.txt @@ -0,0 +1,7 @@ +Subject: young cocks deep inside worn out pussies ! +mommies always know how to treat their sons the special way . +now you get a unique opportunity to witness it with your own eyes . +the curtain is raised - the truth is revealed . the action has begun . +. . sonmomfilm : : shocking family revelations featuring mom and son ! . . +click here for free tour +remove your email diff --git a/hw/hw1/data/spam/5110.2005-08-31.GP.spam.txt b/hw/hw1/data/spam/5110.2005-08-31.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..86111de9406ef853a0fc2bec8ef5fb0390d11645 --- /dev/null +++ b/hw/hw1/data/spam/5110.2005-08-31.GP.spam.txt @@ -0,0 +1,15 @@ +Subject: want something extra in bed ? +use cialis soft tabs . tons of happy customers all around +the world . you will feel like a man again . +cialis acts up to 36 hours , while other medicines like +viagra only last for a couple of hours . the active +ingredient is tadalafil , same as in brand cialis . +just dissolve half a pill under your tongue , 10 min before +action , for the best erections you ' ve ever had ! cialis +also have less sidebacks ( you can drive or mix alcohol +with them ) . no prior prescription is needed . +* save up to 80 % compared to the pharmacies . +* worldwide shipping +* impress your woman today ! +read more here : http : / / unwarily . com / cs / ? coupon +no thanks : http : / / unwarily . com / rr . php diff --git a/hw/hw1/data/spam/5132.2005-09-02.GP.spam.txt b/hw/hw1/data/spam/5132.2005-09-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e5b76494a4e6c329bc95599359d839e24c95e8e --- /dev/null +++ b/hw/hw1/data/spam/5132.2005-09-02.GP.spam.txt @@ -0,0 +1,24 @@ +Subject: replica rolex and other popular brands +hi , get these replica watches from $ 199 : +1 . roiex +2 . cartier +3 . breitiing +4 . a . iange sohne +5 . patek phiiippe +6 . bvigari +7 . franck muiier +8 . omega +9 . tag heuer +http : / / www . mrut . com / re / aug / +you can order a gift boxset if you want . +thanks , +ji glen +- - - - - original message - - - - - +from : ji glen +to : ji glen +sent : fri , 02 sep 2005 10 : 15 : 57 - 0800 +subject : replica rolex and other popular brands +have a look ? +- http : / / www . mrut . com / re / aug / +do you already one ? +- http : / / www . mrut . com / z . php diff --git a/hw/hw1/data/spam/5145.2005-09-04.GP.spam.txt b/hw/hw1/data/spam/5145.2005-09-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e65d6a5ba3607ab2444b20d5c3052d38f7829ea --- /dev/null +++ b/hw/hw1/data/spam/5145.2005-09-04.GP.spam.txt @@ -0,0 +1,15 @@ +Subject: cant find you on msn . . . +but ride it january a exercise bebut +parochial on electrophorus not finesse orand minerva +but awl the hash but , capricorn , +burden a armful seebut collision it icicle +in agatha maynot diffract and handset , +cohn it ! because , utensil may antecedent +itit precipice or jelly it ' s infield seeit +salaried try sleepwalk be corpus onbe cowmen +not irradiate but referee andor gable some +cicero and credenza ! . +if you wanna , raw move cleeqing here +thank you , +georgette neff +acourtesy manager diff --git a/hw/hw1/data/spam/5155.2005-09-05.GP.spam.txt b/hw/hw1/data/spam/5155.2005-09-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..f686f6b9b20e298f36ceeb2443f34192af181e8e --- /dev/null +++ b/hw/hw1/data/spam/5155.2005-09-05.GP.spam.txt @@ -0,0 +1,10 @@ +Subject: he ' s gone for the night +you ' ve got to check out my new site ; somebody taught +me how to upload them last nite ; im pretty new at this but +check em out and see what u think ! +pics are here ! +just copy and pa ste the addr . ess below into your browser to visit us . +http : / / www . zagapony . com +plz no more +http : / / www . zagapony . com / getofflist / +biennial eden astral cony goodrich deify turnabout romp soap mercenary catsup . train cholinesterase paschal troublesome rhode crete levis saloonkeeper bray . fashion . diff --git a/hw/hw1/data/spam_X_test.npy b/hw/hw1/data/spam_X_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..63bc1329ff5d54aaa4191894c4623d8ba98f8dc7 --- /dev/null +++ b/hw/hw1/data/spam_X_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:261e3c441087c7d917a4693a6942eaa65632f7fe642324bf66e7c3a712da8f75 +size 1124672 diff --git a/hw/hw1/data/spam_X_train.npy b/hw/hw1/data/spam_X_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..014950e590af3e7bfcdb6d811d90014f0913e682 --- /dev/null +++ b/hw/hw1/data/spam_X_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a0dd8ca6a4b2d67ad0d096967daad3c3ca0efee9bfb4bc4a5ddee39a3bad8c5 +size 993152 diff --git a/hw/hw1/data/spam_data.mat b/hw/hw1/data/spam_data.mat new file mode 100644 index 0000000000000000000000000000000000000000..a9b4520b660638ed169c5433f3d0b2d3e9048f93 --- /dev/null +++ b/hw/hw1/data/spam_data.mat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:1e2530c374c1709073b6e439651953dbd3cbe7d919e1dc709609613b4c1a9af8 +size 4276856 diff --git a/hw/hw1/data/spam_y_train.npy b/hw/hw1/data/spam_y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..c6238e10e6f72a0a640e09702ff7aa1c7cbcbbde --- /dev/null +++ b/hw/hw1/data/spam_y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:657037f9d704eb3d39387dfcd727a185effd6e7c05f8b851147296f1f36b4b17 +size 20816 diff --git a/hw/hw1/data/test/1047.txt b/hw/hw1/data/test/1047.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe51b35f73580303bba2cf9ffa7778e8349bee1b --- /dev/null +++ b/hw/hw1/data/test/1047.txt @@ -0,0 +1,117 @@ +Subject: request +from : mr joe mark +email fax : 1 561 619 2791 +email : mrjoemark @ yahoo . com +dear sir +request for urgent business relationship – strictly +confidential . +firstly , 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 +anyone apprehensive and worried , but i am assuring you +that all will be well at the end of the day . +we have decided to contact you first by your email due +to the urgency of this transaction , as we have been +reliably informed that it will take at least two to +three weeks for a normal post to reach you . so we +decided it is best using the email . let me start by +first introducing myself properly to you . i am dr . +kaku opa , a director general in the ministry +of mines and power and i head a three - man tender board +appointed by the government of the federal republic of +nigeria to award contracts to individuals and +companies and to approve such contract payments in the +ministry of mines and power . the duties of the +committee also include evaluation , vetting and +monitoring of work done by foreign and local +contractors in the ministry . +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 . 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 : between 1996 +and 1997 , this committee awarded contracts to various +contractors for engineering , procurement , supply of +electrical equipments such as transformers , and some +rural electrification projects . +however , these contracts were over - invoiced by the +committee , thereby , leaving the sum of us $ 11 . 5 million +dollars ( eleven million five hundred thousand united +states dollars ) in excess . this was done with the +intention that the committee will share the excess +when the payments are approved . +the federal government have since approved the total +contract sum which has been paid out to the companies +and contractors concerned which executed the +contracts , leaving the balance of $ 11 . 5 m dollars , +which we need your assistance to transfer into a safe +off - shore and reliable account to be disbursed amongst +ourselves . +we need your assistance as the funds are presently +secured in an escrow account of the federal government +specifically set aside for the settlement of +outstanding payments to foreign contractors . we are +handicapped +in the circumstances as the civil service code of +conduct , does not allow us to operate off - shore +accounts , hence your importance in the whole +transaction . +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 of us $ 11 , 500 , 000 . 00 ( eleven million five +hundred thousand united states dollars ) , while 70 % +will be for us ( members of this panel ) and the +remaining 10 % will be used in offsetting all +debts / expenses 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 . +it does not matter whether or not your company does +contract projects of this nature described here , the +assumption is that your company won the major contract +and sub - contracted it out to other companies . more +often than not , big trading companies or firms of +unrelated fields win major contracts and subcontract +to more specialized firms for execution of such +contracts . we are civil servants and we will not want +to miss this once in a life time opportunity . +you must however , note that this transaction will be +strictly based on the following terms and conditions +as we have stated below , as we have heard confirmed +cases of business associates running away with funds +kept in their custody when it finally arrive their +accounts . we have decided that this transaction will +be based completely on the following : +( a ) . our conviction of your transparent honesty and +diligence . +( b ) . that you would treat this transaction with utmost +secrecy and confidentiality . +( c ) . that upon receipt of the funds , you will promptly +release our share ( 70 % ) on demand after you have +removed your 20 % and all expenses have been settled . +( d ) . you must be ready to produce us with enough +information about yourself to put our minds at rest . +please , note that this transaction is 100 % legal and +risk free and we hope to conclude the business in ten +bank working days from the date of receipt of the +necessary information and requirement from you . +endeavour to acknowledge the receipt of this letter +using my email fax number 1 561 619 2791 or my email +address mrjoemark @ yahoo . com . i will bring you into +the +complete picture of the transaction when i have heard +from you . +your urgent response will be highly appreciated as we +are already behind schedule for this financial +quarter . +thank you and god bless . +yours faithfully , +mr joe mark +do you yahoo ! ? +launch - your yahoo ! music experience +http : / / launch . yahoo . com \ No newline at end of file diff --git a/hw/hw1/data/test/1053.txt b/hw/hw1/data/test/1053.txt new file mode 100644 index 0000000000000000000000000000000000000000..c026778e9612409cbb913b8161553f53ae758ec1 --- /dev/null +++ b/hw/hw1/data/test/1053.txt @@ -0,0 +1,12 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/1084.txt b/hw/hw1/data/test/1084.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e4394bcdd2d26b1a3d30d942bb46f0e59768479 --- /dev/null +++ b/hw/hw1/data/test/1084.txt @@ -0,0 +1,4 @@ +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 diff --git a/hw/hw1/data/test/1090.txt b/hw/hw1/data/test/1090.txt new file mode 100644 index 0000000000000000000000000000000000000000..30e6f61bdb548ee97a8fbcb923f30936597212ec --- /dev/null +++ b/hw/hw1/data/test/1090.txt @@ -0,0 +1,25 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/1245.txt b/hw/hw1/data/test/1245.txt new file mode 100644 index 0000000000000000000000000000000000000000..614903dbed9e9cdd69f4a029f5da1d464ff359dc --- /dev/null +++ b/hw/hw1/data/test/1245.txt @@ -0,0 +1,54 @@ +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 +> +> \ No newline at end of file diff --git a/hw/hw1/data/test/1251.txt b/hw/hw1/data/test/1251.txt new file mode 100644 index 0000000000000000000000000000000000000000..0996c88b12b0ca3fcbc6c9bf43faa3f1148044f4 --- /dev/null +++ b/hw/hw1/data/test/1251.txt @@ -0,0 +1,16 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/1279.txt b/hw/hw1/data/test/1279.txt new file mode 100644 index 0000000000000000000000000000000000000000..26a977b92d2d1f5c4f76a5f9b0d2efc76280bcf1 --- /dev/null +++ b/hw/hw1/data/test/1279.txt @@ -0,0 +1,5 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/1286.txt b/hw/hw1/data/test/1286.txt new file mode 100644 index 0000000000000000000000000000000000000000..e38fd2571a432db970d56b99a711b93682dd785b --- /dev/null +++ b/hw/hw1/data/test/1286.txt @@ -0,0 +1,23 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/1292.txt b/hw/hw1/data/test/1292.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4ec43aa367d9c8ce28988300a9ae1e089184cc3 --- /dev/null +++ b/hw/hw1/data/test/1292.txt @@ -0,0 +1,32 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/1325.txt b/hw/hw1/data/test/1325.txt new file mode 100644 index 0000000000000000000000000000000000000000..0123e2676f3b8f0a13be09d13defb00d6303ef2d --- /dev/null +++ b/hw/hw1/data/test/1325.txt @@ -0,0 +1,4 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/1443.txt b/hw/hw1/data/test/1443.txt new file mode 100644 index 0000000000000000000000000000000000000000..11917ad85d2b897673b1cffddb40ad6e961718c9 --- /dev/null +++ b/hw/hw1/data/test/1443.txt @@ -0,0 +1,59 @@ +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 / \ No newline at end of file diff --git a/hw/hw1/data/test/1523.txt b/hw/hw1/data/test/1523.txt new file mode 100644 index 0000000000000000000000000000000000000000..a46aaba654877acb0b724ea279c047824eafa1b2 --- /dev/null +++ b/hw/hw1/data/test/1523.txt @@ -0,0 +1,7 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/1537.txt b/hw/hw1/data/test/1537.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc4525669c19d7c2ef9349c9946b53624f8c1ff4 --- /dev/null +++ b/hw/hw1/data/test/1537.txt @@ -0,0 +1,17 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw1/data/test/1709.txt b/hw/hw1/data/test/1709.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4f7ba5afb269fae9f71fd37a0bbcc875aa38a5c --- /dev/null +++ b/hw/hw1/data/test/1709.txt @@ -0,0 +1,8 @@ +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 diff --git a/hw/hw1/data/test/1721.txt b/hw/hw1/data/test/1721.txt new file mode 100644 index 0000000000000000000000000000000000000000..a065ee9a495a39f5f451b1f392e1459ec60bf410 --- /dev/null +++ b/hw/hw1/data/test/1721.txt @@ -0,0 +1,48 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/1735.txt b/hw/hw1/data/test/1735.txt new file mode 100644 index 0000000000000000000000000000000000000000..78f3da112710b78b366c8a1c7c2b50f91d705221 --- /dev/null +++ b/hw/hw1/data/test/1735.txt @@ -0,0 +1,39 @@ +Subject: stop creditors in their tracks 10891 +* * 5 free ebooks just for signing up . sent via email within +48 hours of entering your name and email address . +* * no pressure to buy ! +* * test drive it for as long as you wish for free ! +* * only get involved if you like what you see . +we will put 800 in your downline in 30 days ! ! +visit http : / / www . fastbizonline . com / bizopp / +try it for feee ! +it ' s working for me ! ! i ' m earning a guaranteed minimum +monthly income of $ 3 , 000 . 00 ! ! and you can too ! +accept our no cost , no obligation opportunity to +watch your business grow before you spend a dime . +visit http : / / www . fastbizonline . com / bizopp / +why are we doing this ? because when you see the +explosive growth and momentum , and how this +program was designed to help any sincere marketer +succeed , you ' ll accept the downline we ' ve built under +you and harvest your piece of this incredible event . +join the team of internet marketing professionals that +are presenting this opportunity to hundreds of people +every day ! +there ’ s absolutely no risk in joining +you owe it to yourself to +see it work today ! ! +visit http : / / www . fastbizonline . com / bizopp / +fire your boss ! +pay off your bills ! +spend more time with your family ! +buy a new car ! +pay off your mortgage ! +are all of these things are possible ? +you bet they are ! +visit http : / / www . fastbizonline . com / bizopp / +visit http : / / www . fastbizonline . com / bizopp / +visit http : / / www . fastbizonline . com / bizopp / +if you do not wish to receive any more emails from me , please +send an email to " affiliatel @ btamail . net . cn " requesting to be +removed . diff --git a/hw/hw1/data/test/1906.txt b/hw/hw1/data/test/1906.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d3de7acb14d01d8656eaf337e3268b769bef812 --- /dev/null +++ b/hw/hw1/data/test/1906.txt @@ -0,0 +1,39 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/1912.txt b/hw/hw1/data/test/1912.txt new file mode 100644 index 0000000000000000000000000000000000000000..65ba288d7ebbff5f118ab65373972f047c077d9c --- /dev/null +++ b/hw/hw1/data/test/1912.txt @@ -0,0 +1,10 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/2002.txt b/hw/hw1/data/test/2002.txt new file mode 100644 index 0000000000000000000000000000000000000000..5114edee712863f3863fcc80f86f8a4c5ce851c7 --- /dev/null +++ b/hw/hw1/data/test/2002.txt @@ -0,0 +1,15 @@ +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 ) \ No newline at end of file diff --git a/hw/hw1/data/test/2016.txt b/hw/hw1/data/test/2016.txt new file mode 100644 index 0000000000000000000000000000000000000000..36c1df18038cb933d0dafecc2abcc15af4593217 --- /dev/null +++ b/hw/hw1/data/test/2016.txt @@ -0,0 +1,41 @@ +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 . diff --git a/hw/hw1/data/test/2200.txt b/hw/hw1/data/test/2200.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a819727d325e86e0e19a3f657fef88e1983ad8f --- /dev/null +++ b/hw/hw1/data/test/2200.txt @@ -0,0 +1,9 @@ +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 ! . diff --git a/hw/hw1/data/test/2214.txt b/hw/hw1/data/test/2214.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc289fb2bb986e233bc0db1c5856c64b7f58a35f --- /dev/null +++ b/hw/hw1/data/test/2214.txt @@ -0,0 +1,34 @@ +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 +- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/hw/hw1/data/test/2228.txt b/hw/hw1/data/test/2228.txt new file mode 100644 index 0000000000000000000000000000000000000000..415d89f5c598f3f7a824eb199207a0cfe78d811f --- /dev/null +++ b/hw/hw1/data/test/2228.txt @@ -0,0 +1,21 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/2566.txt b/hw/hw1/data/test/2566.txt new file mode 100644 index 0000000000000000000000000000000000000000..29e4a93418a740ccf1892eb3a7d445c205efdf1a --- /dev/null +++ b/hw/hw1/data/test/2566.txt @@ -0,0 +1,9 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw1/data/test/2572.txt b/hw/hw1/data/test/2572.txt new file mode 100644 index 0000000000000000000000000000000000000000..16bf0563e778c83bf3009740bb1ac2b88b16a6d1 --- /dev/null +++ b/hw/hw1/data/test/2572.txt @@ -0,0 +1,34 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/2599.txt b/hw/hw1/data/test/2599.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd61d57792bed2aa2f72dbb3eadadd638400b6a0 --- /dev/null +++ b/hw/hw1/data/test/2599.txt @@ -0,0 +1,54 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/262.txt b/hw/hw1/data/test/262.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dfa01b7a8291a3bb2e9605b2600a84dd1a5def2 --- /dev/null +++ b/hw/hw1/data/test/262.txt @@ -0,0 +1,13 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/2638.txt b/hw/hw1/data/test/2638.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaf3e1e5bdda7c5bdc2bace250b066783cf36093 --- /dev/null +++ b/hw/hw1/data/test/2638.txt @@ -0,0 +1,3 @@ +Subject: spice up your cellphone with a wallpaper from dirtyhippo . +dress up your phone . visit here . +dxndeueqjdzo \ No newline at end of file diff --git a/hw/hw1/data/test/2758.txt b/hw/hw1/data/test/2758.txt new file mode 100644 index 0000000000000000000000000000000000000000..df11f2ee56f08f7f2bba12571824a6e36c80a02d --- /dev/null +++ b/hw/hw1/data/test/2758.txt @@ -0,0 +1,95 @@ +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 +> +> +> +> +> +> +> +> +> +> +> \ No newline at end of file diff --git a/hw/hw1/data/test/276.txt b/hw/hw1/data/test/276.txt new file mode 100644 index 0000000000000000000000000000000000000000..33e0407b93cd4bf9c68e0dd0a63f5c39252676b9 --- /dev/null +++ b/hw/hw1/data/test/276.txt @@ -0,0 +1,38 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/2764.txt b/hw/hw1/data/test/2764.txt new file mode 100644 index 0000000000000000000000000000000000000000..68f3991a600fbdba136fd75865f4478341e51ac1 --- /dev/null +++ b/hw/hw1/data/test/2764.txt @@ -0,0 +1,103 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/2770.txt b/hw/hw1/data/test/2770.txt new file mode 100644 index 0000000000000000000000000000000000000000..d97ebe9d9e5047bb5e75c7d63c2529af1679dedc --- /dev/null +++ b/hw/hw1/data/test/2770.txt @@ -0,0 +1,19 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/289.txt b/hw/hw1/data/test/289.txt new file mode 100644 index 0000000000000000000000000000000000000000..be64a2237d99d4f3a5a9c31ac2cc6d38337b5916 --- /dev/null +++ b/hw/hw1/data/test/289.txt @@ -0,0 +1,31 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/29.txt b/hw/hw1/data/test/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..df9a68f649e2c8f5f372234c343263df56fcb338 --- /dev/null +++ b/hw/hw1/data/test/29.txt @@ -0,0 +1,16 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/2943.txt b/hw/hw1/data/test/2943.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ec65f799305f03ed5b4687f9db8eeeae1a80838 --- /dev/null +++ b/hw/hw1/data/test/2943.txt @@ -0,0 +1,55 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/2957.txt b/hw/hw1/data/test/2957.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e0c218cd4ac60495d8d6b56474ab3bec12959ca --- /dev/null +++ b/hw/hw1/data/test/2957.txt @@ -0,0 +1,25 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/2980.txt b/hw/hw1/data/test/2980.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a26a7a334e2560929a33f512941c3d727ea9a15 --- /dev/null +++ b/hw/hw1/data/test/2980.txt @@ -0,0 +1,2 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/2994.txt b/hw/hw1/data/test/2994.txt new file mode 100644 index 0000000000000000000000000000000000000000..16f54d84ea51b5ce084fa127d521a60bc63a41c0 --- /dev/null +++ b/hw/hw1/data/test/2994.txt @@ -0,0 +1,60 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3122.txt b/hw/hw1/data/test/3122.txt new file mode 100644 index 0000000000000000000000000000000000000000..051dbcef3acf05b173995d72a6ed8d7fb33be4ec --- /dev/null +++ b/hw/hw1/data/test/3122.txt @@ -0,0 +1,35 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3136.txt b/hw/hw1/data/test/3136.txt new file mode 100644 index 0000000000000000000000000000000000000000..546d032b0175e6c84a317b6c94ec85196d0aafb5 --- /dev/null +++ b/hw/hw1/data/test/3136.txt @@ -0,0 +1,33 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3254.txt b/hw/hw1/data/test/3254.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7fe3df2f624af82a643f1fa1e91ac2616735237 --- /dev/null +++ b/hw/hw1/data/test/3254.txt @@ -0,0 +1,13 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3308.txt b/hw/hw1/data/test/3308.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d6c9ec5e4033d91864b38cb9754fa7f0e09eca9 --- /dev/null +++ b/hw/hw1/data/test/3308.txt @@ -0,0 +1,87 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/3320.txt b/hw/hw1/data/test/3320.txt new file mode 100644 index 0000000000000000000000000000000000000000..245c894b4999a541dbf8a4fa00a8eb5ae090843e --- /dev/null +++ b/hw/hw1/data/test/3320.txt @@ -0,0 +1,14 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/3334.txt b/hw/hw1/data/test/3334.txt new file mode 100644 index 0000000000000000000000000000000000000000..90e2784f7cfb50477d7bd4c173b32b087e1a8e3b --- /dev/null +++ b/hw/hw1/data/test/3334.txt @@ -0,0 +1,37 @@ +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 ] \ No newline at end of file diff --git a/hw/hw1/data/test/3446.txt b/hw/hw1/data/test/3446.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f88d1cbbe21009e40e8fd8a90c4d35eadcbcf6f --- /dev/null +++ b/hw/hw1/data/test/3446.txt @@ -0,0 +1,21 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/3452.txt b/hw/hw1/data/test/3452.txt new file mode 100644 index 0000000000000000000000000000000000000000..15876ff3c1160c0a123baf1790475adb726a89d6 --- /dev/null +++ b/hw/hw1/data/test/3452.txt @@ -0,0 +1,35 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3485.txt b/hw/hw1/data/test/3485.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa68dc885a61208d0c7bcc2bbb04faca2bec2dad --- /dev/null +++ b/hw/hw1/data/test/3485.txt @@ -0,0 +1,34 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3491.txt b/hw/hw1/data/test/3491.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cfd346aee71d3f7ffe517e744a2548e584da5a6 --- /dev/null +++ b/hw/hw1/data/test/3491.txt @@ -0,0 +1,9 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3526.txt b/hw/hw1/data/test/3526.txt new file mode 100644 index 0000000000000000000000000000000000000000..b52ae54cad762543a58f93e0de30b0f7e1fc2722 --- /dev/null +++ b/hw/hw1/data/test/3526.txt @@ -0,0 +1,5 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3532.txt b/hw/hw1/data/test/3532.txt new file mode 100644 index 0000000000000000000000000000000000000000..537f54873f1c608ec15331096d0fa9a4cfa29b88 --- /dev/null +++ b/hw/hw1/data/test/3532.txt @@ -0,0 +1,23 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3644.txt b/hw/hw1/data/test/3644.txt new file mode 100644 index 0000000000000000000000000000000000000000..26288f03dd7339ec09e20cf7f6c7d250f0f6e9a2 --- /dev/null +++ b/hw/hw1/data/test/3644.txt @@ -0,0 +1,73 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3650.txt b/hw/hw1/data/test/3650.txt new file mode 100644 index 0000000000000000000000000000000000000000..58b57a723536153210f545dc7833da36badf277b --- /dev/null +++ b/hw/hw1/data/test/3650.txt @@ -0,0 +1,22 @@ +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 : \ No newline at end of file diff --git a/hw/hw1/data/test/3678.txt b/hw/hw1/data/test/3678.txt new file mode 100644 index 0000000000000000000000000000000000000000..7128c4cb3e5157792aca2a0f483866e9d83a5baa --- /dev/null +++ b/hw/hw1/data/test/3678.txt @@ -0,0 +1,25 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3687.txt b/hw/hw1/data/test/3687.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fc052273b44dd13e7c086d84521775e6944e213 --- /dev/null +++ b/hw/hw1/data/test/3687.txt @@ -0,0 +1,12 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/3693.txt b/hw/hw1/data/test/3693.txt new file mode 100644 index 0000000000000000000000000000000000000000..458e296d43ca471cad71036520897e3bebae684f --- /dev/null +++ b/hw/hw1/data/test/3693.txt @@ -0,0 +1,21 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3863.txt b/hw/hw1/data/test/3863.txt new file mode 100644 index 0000000000000000000000000000000000000000..a687e6fda964280f1d478c3f3f4d6b2fb4053ba2 --- /dev/null +++ b/hw/hw1/data/test/3863.txt @@ -0,0 +1,6 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/3877.txt b/hw/hw1/data/test/3877.txt new file mode 100644 index 0000000000000000000000000000000000000000..5136db33375d3883155451808dee2f42b31c183a --- /dev/null +++ b/hw/hw1/data/test/3877.txt @@ -0,0 +1,64 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/3888.txt b/hw/hw1/data/test/3888.txt new file mode 100644 index 0000000000000000000000000000000000000000..d914eb6ddb9cd2952006a38a2732e62d06cefe9e --- /dev/null +++ b/hw/hw1/data/test/3888.txt @@ -0,0 +1,16 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/4103.txt b/hw/hw1/data/test/4103.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dc629674559fdddd4a51c23f4a10179f5e102f3 --- /dev/null +++ b/hw/hw1/data/test/4103.txt @@ -0,0 +1,31 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/4117.txt b/hw/hw1/data/test/4117.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1045a3d70abcced4d2c7bde71323baa1a50043f --- /dev/null +++ b/hw/hw1/data/test/4117.txt @@ -0,0 +1,61 @@ +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 diff --git a/hw/hw1/data/test/4249.txt b/hw/hw1/data/test/4249.txt new file mode 100644 index 0000000000000000000000000000000000000000..27853627f73a17f9c9c4a9e64c67c40a232e736c --- /dev/null +++ b/hw/hw1/data/test/4249.txt @@ -0,0 +1,17 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw1/data/test/4301.txt b/hw/hw1/data/test/4301.txt new file mode 100644 index 0000000000000000000000000000000000000000..f84ee08f6381e7f3c0010a9e7d5e9bca7533b053 --- /dev/null +++ b/hw/hw1/data/test/4301.txt @@ -0,0 +1,20 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/4315.txt b/hw/hw1/data/test/4315.txt new file mode 100644 index 0000000000000000000000000000000000000000..a06cd63d83c241cb01a8ac9b2f9dc1825c16a504 --- /dev/null +++ b/hw/hw1/data/test/4315.txt @@ -0,0 +1,48 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/4329.txt b/hw/hw1/data/test/4329.txt new file mode 100644 index 0000000000000000000000000000000000000000..83709166d9e858ce660ceb7ab9aaff285b8ead91 --- /dev/null +++ b/hw/hw1/data/test/4329.txt @@ -0,0 +1,5 @@ +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 ! diff --git a/hw/hw1/data/test/4467.txt b/hw/hw1/data/test/4467.txt new file mode 100644 index 0000000000000000000000000000000000000000..8959a009681329bc6b9778da77b1eb3ca62f4703 --- /dev/null +++ b/hw/hw1/data/test/4467.txt @@ -0,0 +1,22 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/4473.txt b/hw/hw1/data/test/4473.txt new file mode 100644 index 0000000000000000000000000000000000000000..64409fb24c94e8c12d4aeb9ecddfaf6f8b59f471 --- /dev/null +++ b/hw/hw1/data/test/4473.txt @@ -0,0 +1,19 @@ +Subject: easy process for lovely sav . vings on your alleviations , ch . eck . +besides gratis samples and vip dis . counts , is there some other way to s . ave +on medicaments ? +our medzone presents to sh . oppers truely effective generic goods on +painrelief , severetension , highcholesterin , menshealth , overwt and +womenshealth . +would the generic equivalents bring real value ? would cybershopping bring +you total conveniences ? uncover the answers at our medzone . +brovvse our generic range that bring you vvonderful sav . vings +purchasers will be informed about the nevvest info . regarding the +carriages . +it is time to read these fabulous . deals . +¡ ¡ ' my brother j passed close by him in their earlier walk , but she would +have felt +you are always labouring and toiling , exposed to every risk and hardship . +oe was hi s fat +her , ' said quite ill - used by anne ' s having actually run against him in the +passage , +mr . peggotty . 1 ¡ ¡ ¡ ¡ ' dead , mr . peggott 7 y ? ' i hinted , after a respectfu \ No newline at end of file diff --git a/hw/hw1/data/test/4498.txt b/hw/hw1/data/test/4498.txt new file mode 100644 index 0000000000000000000000000000000000000000..de1709baadd4c6ac19d7bbe83f77c52c1b994122 --- /dev/null +++ b/hw/hw1/data/test/4498.txt @@ -0,0 +1,7 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/4659.txt b/hw/hw1/data/test/4659.txt new file mode 100644 index 0000000000000000000000000000000000000000..a336d6e6f613864aa8017fe4dd5dfa40b728cc23 --- /dev/null +++ b/hw/hw1/data/test/4659.txt @@ -0,0 +1,159 @@ +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 . " \ No newline at end of file diff --git a/hw/hw1/data/test/4665.txt b/hw/hw1/data/test/4665.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4d7b3462bad71e4cdd1e1c028998cf40bf72cfc --- /dev/null +++ b/hw/hw1/data/test/4665.txt @@ -0,0 +1,51 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/4671.txt b/hw/hw1/data/test/4671.txt new file mode 100644 index 0000000000000000000000000000000000000000..d15e63ea810496dd6790097e36b4d68ffdeeaf55 --- /dev/null +++ b/hw/hw1/data/test/4671.txt @@ -0,0 +1,54 @@ +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 / \ No newline at end of file diff --git a/hw/hw1/data/test/4842.txt b/hw/hw1/data/test/4842.txt new file mode 100644 index 0000000000000000000000000000000000000000..651e711b9a8795c864d4aa6bd4f1dee83b414dc4 --- /dev/null +++ b/hw/hw1/data/test/4842.txt @@ -0,0 +1,81 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/4856.txt b/hw/hw1/data/test/4856.txt new file mode 100644 index 0000000000000000000000000000000000000000..78dbf1bae4a32c09e0457af3f37a1e40620a9a79 --- /dev/null +++ b/hw/hw1/data/test/4856.txt @@ -0,0 +1,27 @@ +Subject: confidant +universal credit trust bank +553 east trent blvd . , north london , +london , uk +hello , +do accept my sincere apologies if my mail does not meet your personal ethics . +i will introduce myself as mr . lang owen , a staff in the accounts management +section of the above firm here in the united kingdom . +one of our accounts with holding balance of £ 15 , 000 , 000 ( fifteen million +british pounds ) has been dormant and has not been operated for the past +four ( 4 ) years . +from my investigations and confirmations , the owner of this account , a foreigner +by name kurt kahle died in july , 2000 see this http : / / news . bbc . co . uk / 1 / hi / world / europe / 859479 . stm +and since then nobody has done anything as regards the claiming of this +money because he has no family members who are aware of the existence of +neither the account nor the funds . +i have secretly discussed this matter with a senior official of this company +and we have agreed to find a reliable foreign partner to deal with . we thus +propose to do business with you , standing in as the next of kin of these +funds from the deceased and funds released to you after due processes have +been followed . +this transaction is totally free of risk and as the fund is legitimate and +does not originate from drug , money laundry , terrorism or any other illegal +act . on receipt of your response i will furnish you with detailed clarification +as it relates to this mutual benefit transaction . +i look forward to hearing from you as soon as possible if you are interested . +mr . lang owen . \ No newline at end of file diff --git a/hw/hw1/data/test/4881.txt b/hw/hw1/data/test/4881.txt new file mode 100644 index 0000000000000000000000000000000000000000..6af79025c910a529e625e966a9e26c7a8268af46 --- /dev/null +++ b/hw/hw1/data/test/4881.txt @@ -0,0 +1,66 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/4895.txt b/hw/hw1/data/test/4895.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c3cdc09f5ba311f73400d25cf9394c869d0cc57 --- /dev/null +++ b/hw/hw1/data/test/4895.txt @@ -0,0 +1,5 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/5023.txt b/hw/hw1/data/test/5023.txt new file mode 100644 index 0000000000000000000000000000000000000000..94753941ef94c1fa6eb4cb90216dead9e206b883 --- /dev/null +++ b/hw/hw1/data/test/5023.txt @@ -0,0 +1,16 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/5037.txt b/hw/hw1/data/test/5037.txt new file mode 100644 index 0000000000000000000000000000000000000000..dceb203e925a33f6bd863456f0deb8f6249c0134 --- /dev/null +++ b/hw/hw1/data/test/5037.txt @@ -0,0 +1,7 @@ +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 . . . diff --git a/hw/hw1/data/test/504.txt b/hw/hw1/data/test/504.txt new file mode 100644 index 0000000000000000000000000000000000000000..00988f875e9e300cf55d9a0b4f0d028a3ede09da --- /dev/null +++ b/hw/hw1/data/test/504.txt @@ -0,0 +1,5 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/510.txt b/hw/hw1/data/test/510.txt new file mode 100644 index 0000000000000000000000000000000000000000..e433ff17339b2bc16d461787d59e60bdd78e9f50 --- /dev/null +++ b/hw/hw1/data/test/510.txt @@ -0,0 +1,44 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/5143.txt b/hw/hw1/data/test/5143.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a16c5288aa783d890386f4fe341aa9ab001b7f9 --- /dev/null +++ b/hw/hw1/data/test/5143.txt @@ -0,0 +1,31 @@ +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 . diff --git a/hw/hw1/data/test/5157.txt b/hw/hw1/data/test/5157.txt new file mode 100644 index 0000000000000000000000000000000000000000..b547820dee6ead181d4a0a0873bf173801738c6f --- /dev/null +++ b/hw/hw1/data/test/5157.txt @@ -0,0 +1,17 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw1/data/test/5209.txt b/hw/hw1/data/test/5209.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6684938a3983332a6c00352353a4578bfdcb5b3 --- /dev/null +++ b/hw/hw1/data/test/5209.txt @@ -0,0 +1,34 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/5221.txt b/hw/hw1/data/test/5221.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0918ad08169832d5f840c7bdbfa5719e61b8261 --- /dev/null +++ b/hw/hw1/data/test/5221.txt @@ -0,0 +1,49 @@ +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 - ? ? - -  ? ? \ No newline at end of file diff --git a/hw/hw1/data/test/5235.txt b/hw/hw1/data/test/5235.txt new file mode 100644 index 0000000000000000000000000000000000000000..7211f8bf762eb63a904f348deb0dbd95c053d825 --- /dev/null +++ b/hw/hw1/data/test/5235.txt @@ -0,0 +1,12 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/538.txt b/hw/hw1/data/test/538.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6e4f4950a80d27bbf436d96348aad042ce02485 --- /dev/null +++ b/hw/hw1/data/test/538.txt @@ -0,0 +1,22 @@ +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 : \ No newline at end of file diff --git a/hw/hw1/data/test/5547.txt b/hw/hw1/data/test/5547.txt new file mode 100644 index 0000000000000000000000000000000000000000..621d26ea5e3cd71dbc83bda6879a7aa15434092d --- /dev/null +++ b/hw/hw1/data/test/5547.txt @@ -0,0 +1,29 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/5553.txt b/hw/hw1/data/test/5553.txt new file mode 100644 index 0000000000000000000000000000000000000000..622cad4db5190b7f4774df37f5d6ca54d6b9447b --- /dev/null +++ b/hw/hw1/data/test/5553.txt @@ -0,0 +1,9 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/5584.txt b/hw/hw1/data/test/5584.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac4071ce7bcf538c84762a3706c9ea24a627252b --- /dev/null +++ b/hw/hw1/data/test/5584.txt @@ -0,0 +1,21 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/data/test/5590.txt b/hw/hw1/data/test/5590.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee527a08fae538b5b6ecbaf1d61f431019e6fbfb --- /dev/null +++ b/hw/hw1/data/test/5590.txt @@ -0,0 +1,15 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/5625.txt b/hw/hw1/data/test/5625.txt new file mode 100644 index 0000000000000000000000000000000000000000..94090867f1c66b099da8af9ce67947cfaba7866d --- /dev/null +++ b/hw/hw1/data/test/5625.txt @@ -0,0 +1,22 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw1/data/test/5745.txt b/hw/hw1/data/test/5745.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ce14b5d71cb0a2298b432be7f473c7c76e701a1 --- /dev/null +++ b/hw/hw1/data/test/5745.txt @@ -0,0 +1,27 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/5751.txt b/hw/hw1/data/test/5751.txt new file mode 100644 index 0000000000000000000000000000000000000000..2061fe814ab1cd144fb4f03ec0de12d9effe9211 --- /dev/null +++ b/hw/hw1/data/test/5751.txt @@ -0,0 +1,17 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/5779.txt b/hw/hw1/data/test/5779.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f0e21cac40571a50fb350657b445dfe32a80304 --- /dev/null +++ b/hw/hw1/data/test/5779.txt @@ -0,0 +1,32 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/5786.txt b/hw/hw1/data/test/5786.txt new file mode 100644 index 0000000000000000000000000000000000000000..c65f35133d4327cf3e71e2519d1be5b62b7efb97 --- /dev/null +++ b/hw/hw1/data/test/5786.txt @@ -0,0 +1,65 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/5792.txt b/hw/hw1/data/test/5792.txt new file mode 100644 index 0000000000000000000000000000000000000000..55f87ce777ac21cf73dc3d0c6fd95458c32ad852 --- /dev/null +++ b/hw/hw1/data/test/5792.txt @@ -0,0 +1,14 @@ +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 diff --git a/hw/hw1/data/test/706.txt b/hw/hw1/data/test/706.txt new file mode 100644 index 0000000000000000000000000000000000000000..97ca79b1a8ddd40aee6440754d0bc0cc99b902ea --- /dev/null +++ b/hw/hw1/data/test/706.txt @@ -0,0 +1,15 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/712.txt b/hw/hw1/data/test/712.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7503627c23972fe6ea2990d433277fe1d119b76 --- /dev/null +++ b/hw/hw1/data/test/712.txt @@ -0,0 +1,35 @@ +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 \ No newline at end of file diff --git a/hw/hw1/data/test/869.txt b/hw/hw1/data/test/869.txt new file mode 100644 index 0000000000000000000000000000000000000000..57d0c4e15f5f5233e83e15035d0845a33d06a7b6 --- /dev/null +++ b/hw/hw1/data/test/869.txt @@ -0,0 +1,18 @@ +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 ! \ No newline at end of file diff --git a/hw/hw1/data/test/909.txt b/hw/hw1/data/test/909.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3aa1b4c5f7f286e2d0c8295433e16fb89b916c0 --- /dev/null +++ b/hw/hw1/data/test/909.txt @@ -0,0 +1,151 @@ +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 diff --git a/hw/hw1/data/test/921.txt b/hw/hw1/data/test/921.txt new file mode 100644 index 0000000000000000000000000000000000000000..a74e52777d8fce4d6f4de60ac4fd9370859ab711 --- /dev/null +++ b/hw/hw1/data/test/921.txt @@ -0,0 +1,2 @@ +Subject: your approval is requested +thank you \ No newline at end of file diff --git a/hw/hw1/data/test/935.txt b/hw/hw1/data/test/935.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ce53cc1de6968d35d25f3e444c1326032281295 --- /dev/null +++ b/hw/hw1/data/test/935.txt @@ -0,0 +1,13 @@ +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 . \ No newline at end of file diff --git a/hw/hw1/models/cifar10.sav b/hw/hw1/models/cifar10.sav new file mode 100644 index 0000000000000000000000000000000000000000..9acce482b0889131588764da8510b48f8fc816a9 --- /dev/null +++ b/hw/hw1/models/cifar10.sav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:cbbddf41de2e563aa19f4dd8832cfc6c69fe80f762c36f43f2e42762b98d6e3b +size 61590527 diff --git a/hw/hw1/models/mnist.sav b/hw/hw1/models/mnist.sav new file mode 100644 index 0000000000000000000000000000000000000000..dec01ef39e5eddc2f282776fec5136a0e911a9f0 --- /dev/null +++ b/hw/hw1/models/mnist.sav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9a16d1c8bcaece97db90d723713e06f57b90ae408ff4368de2853f1f8555177b +size 28060326 diff --git a/hw/hw1/models/spam.sav b/hw/hw1/models/spam.sav new file mode 100644 index 0000000000000000000000000000000000000000..89a56bcdb14304fa9598a8e3a479ecf90ec553c5 Binary files /dev/null and b/hw/hw1/models/spam.sav differ diff --git a/hw/hw3/data/featurize.py b/hw/hw3/data/featurize.py new file mode 100644 index 0000000000000000000000000000000000000000..13ce46ddd717e89063c9f8637aabe6c1a5c53f3f --- /dev/null +++ b/hw/hw3/data/featurize.py @@ -0,0 +1,373 @@ +''' +**************** PLEASE READ *************** + +Script that reads in spam and ham messages and converts each training example +into a feature vector + +Code intended for UC Berkeley course CS 189/289A: Machine Learning + +Requirements: +-scipy ('pip install scipy') + +To add your own features, create a function that takes in the raw text and +word frequency dictionary and outputs a int or float. Then add your feature +in the function 'def generate_feature_vector' + +The output of your file will be a .mat file. The data will be accessible using +the following keys: + -'training_data' + -'training_labels' + -'test_data' + +Please direct any bugs to kevintee@berkeley.edu +''' + +from collections import defaultdict +import glob +import re +import os +import scipy.io +import numpy as np + +NUM_TRAINING_EXAMPLES = 5172 +NUM_TEST_EXAMPLES = 5857 + +BASE_DIR = os.path.abspath(os.path.dirname(__file__)) +SPAM_DIR = os.path.join(BASE_DIR, 'spam') +HAM_DIR = os.path.join(BASE_DIR, 'ham') +TEST_DIR = os.path.join(BASE_DIR, 'test') + +# ************* Features ************* + +# Features that look for certain words +def freq_pain_feature(text, freq): + return float(freq['pain']) + +def freq_private_feature(text, freq): + return float(freq['private']) + +def freq_bank_feature(text, freq): + return float(freq['bank']) + +def freq_money_feature(text, freq): + return float(freq['money']) + +def freq_drug_feature(text, freq): + return float(freq['drug']) + +def freq_spam_feature(text, freq): + return float(freq['spam']) + +def freq_prescription_feature(text, freq): + return float(freq['prescription']) + +def freq_creative_feature(text, freq): + return float(freq['creative']) + +def freq_height_feature(text, freq): + return float(freq['height']) + +def freq_featured_feature(text, freq): + return float(freq['featured']) + +def freq_differ_feature(text, freq): + return float(freq['differ']) + +def freq_width_feature(text, freq): + return float(freq['width']) + +def freq_other_feature(text, freq): + return float(freq['other']) + +def freq_energy_feature(text, freq): + return float(freq['energy']) + +def freq_business_feature(text, freq): + return float(freq['business']) + +def freq_message_feature(text, freq): + return float(freq['message']) + +def freq_volumes_feature(text, freq): + return float(freq['volumes']) + +def freq_revision_feature(text, freq): + return float(freq['revision']) + +def freq_path_feature(text, freq): + return float(freq['path']) + +def freq_meter_feature(text, freq): + return float(freq['meter']) + +def freq_memo_feature(text, freq): + return float(freq['memo']) + +def freq_planning_feature(text, freq): + return float(freq['planning']) + +def freq_pleased_feature(text, freq): + return float(freq['pleased']) + +def freq_record_feature(text, freq): + return float(freq['record']) + +def freq_out_feature(text, freq): + return float(freq['out']) + +# Features that look for certain characters +def freq_semicolon_feature(text, freq): + return text.count(';') + +def freq_dollar_feature(text, freq): + return text.count('$') + +def freq_sharp_feature(text, freq): + return text.count('#') + +def freq_exclamation_feature(text, freq): + return text.count('!') + +def freq_para_feature(text, freq): + return text.count('(') + +def freq_bracket_feature(text, freq): + return text.count('[') + +def freq_and_feature(text, freq): + return text.count('&') + +# --------- Add your own feature methods ---------- + +def freq_free_feature(text, freq): + return float(freq['free']) + +def freq_insurance_feature(text, freq): + return float(freq['insurance']) + +def freq_porn_feature(text, freq): + return float(freq['porn']) + +def freq_fuck_feature(text, freq): + return float(freq['fuck']) + +def freq_dick_feature(text, freq): + return float(freq['dick']) + float(freq['penis']) + float(freq['cock']) + +def freq_viagra_feature(text, freq): + return float(freq['viagra']) + +def freq_click_feature(text, freq): + return float(freq['click']) + +def freq_send_feature(text, freq): + return float(freq['send']) + +def freq_money_feature(text, freq): + return float(freq['money']) + +def freq_sex_feature(text, freq): + return text.count('sex') + float(freq['hard']) + float(freq['adult']) + +def freq_linux_feature(text, freq): + return float(freq['linux']) + +def freq_web_feature(text, freq): + return text.count('http') + +def freq_period_feature(text, freq): + return text.count('.') + +def len_feature(text, freq): + return len(text) + +def freq_forward_feature(text, freq): + return text.count('forward') + +def freq_career_feature(text, freq): + return float(freq['career']) + +def freq_interview_feature(text, freq): + return float(freq['interview']) + +def freq_meeting_feature(text, freq): + return text.count('meet') + +def freq_files_feature(text, freq): + return float(text.lower().count('pdf')) + float(text.lower().count('jpg')) + float(text.lower().count('png')) + float(text.lower().count('doc')) + float(text.lower().count('html')) + float(text.lower().count('xls')) + float(text.lower().count('ods')) + float(text.lower().count('ppt')) + float(text.lower().count('txt')) + +def freq_urgent_feature(text, freq): + return float(freq['urgent']) + +def freq_ebay_feature(text, freq): + return float(freq['ebay']) + +def freq_prince_feature(text, freq): + return float(freq['prince']) + +def freq_cialis_feature(text, freq): + return float(freq['cialis']) + +def freq_visit_feature(text, freq): + return float(freq['visit']) + +def freq_pharm_feature(text, freq): + return text.count('pharm') + +def freq_period_feature(text, freq): + return text.count('.') + text.count('-') + text.count('/') + +def freq_at_feature(text, freq): + return text.count('@') + +def freq_common_feature(text, freq): + return float(freq['the']) + float(freq['and']) + float(freq['to']) + float(freq['for']) + float(freq['in']) + +def freq_pronouns_feature(text, freq): + return float(freq['me']) + float(freq['he']) + float(freq['she']) + float(freq['they']) + float(freq['them']) + float(freq['we']) + float(freq['ours']) + float(freq['my']) + +def freq_agg_pronoun_feature(text, freq): + return float(freq['you']) + float(freq['yours']) + float(freq['your']) + float(freq['name']) + +def freq_verbs_feature(text, freq): + return float(freq['should']) + float(freq['could']) + float(freq['would']) + float(freq['see']) + float(freq['need']) + float(freq['has']) + float(freq['do']) + +def freq_mail_feature(text, freq): + return float(freq['mail']) + +def freq_date_feature(text, freq): + return float(freq['january']) + float(freq['february']) + float(freq['march']) + float(freq['april']) + float(freq['may']) + float(freq['june']) + float(freq['july']) + float(freq['august']) + float(freq['september']) + float(freq['october']) + float(freq['november']) + float(freq['december']) + +def freq_schedule_feature(text, freq): + return float(freq['date']) + float(freq['time']) + float(freq['month']) + float(freq['schedule']) + float(freq['meeting']) + float(freq['late']) + float(freq['early']) + +def freq_answer_feature(text, freq): + return float(freq['yes']) + float(freq['no']) + float(freq['sure']) + float(freq['yep']) + float(freq['nope']) + float(freq['sorry']) + float(freq['apologies']) + float(freq['ok']) + float(freq['okay']) + +def freq_adj_feature(text, freq): + return float(freq['this']) + float(freq['that']) + float(freq['here']) + float(freq['there']) + float(freq['in']) + float(freq['with']) + float(freq['be']) + +def freq_jobs_feature(text, freq): + return float(freq['company']) + float(freq['job']) + float(freq['hire']) + float(freq['recruit']) + float(freq['professional']) + float(freq['business']) + float(freq['application']) + +# Generates a feature vector +def generate_feature_vector(text, freq): + feature = [] + feature.append(freq_pain_feature(text, freq)) + feature.append(freq_private_feature(text, freq)) + feature.append(freq_bank_feature(text, freq)) + feature.append(freq_money_feature(text, freq)) + feature.append(freq_drug_feature(text, freq)) + feature.append(freq_spam_feature(text, freq)) + feature.append(freq_prescription_feature(text, freq)) + feature.append(freq_creative_feature(text, freq)) + feature.append(freq_height_feature(text, freq)) + feature.append(freq_featured_feature(text, freq)) + feature.append(freq_differ_feature(text, freq)) + feature.append(freq_width_feature(text, freq)) + feature.append(freq_other_feature(text, freq)) + feature.append(freq_energy_feature(text, freq)) + feature.append(freq_business_feature(text, freq)) + feature.append(freq_message_feature(text, freq)) + feature.append(freq_volumes_feature(text, freq)) + feature.append(freq_revision_feature(text, freq)) + feature.append(freq_path_feature(text, freq)) + feature.append(freq_meter_feature(text, freq)) + feature.append(freq_memo_feature(text, freq)) + feature.append(freq_planning_feature(text, freq)) + feature.append(freq_pleased_feature(text, freq)) + feature.append(freq_record_feature(text, freq)) + feature.append(freq_out_feature(text, freq)) + feature.append(freq_semicolon_feature(text, freq)) + feature.append(freq_dollar_feature(text, freq)) + feature.append(freq_sharp_feature(text, freq)) + feature.append(freq_exclamation_feature(text, freq)) + feature.append(freq_para_feature(text, freq)) + feature.append(freq_bracket_feature(text, freq)) + feature.append(freq_and_feature(text, freq)) + + feature.append(freq_insurance_feature(text, freq)) + feature.append(freq_porn_feature(text, freq)) + feature.append(freq_fuck_feature(text, freq)) + feature.append(freq_dick_feature(text, freq)) + feature.append(freq_viagra_feature(text, freq)) + feature.append(freq_click_feature(text, freq)) + feature.append(freq_send_feature(text, freq)) + feature.append(freq_money_feature(text, freq)) + feature.append(freq_sex_feature(text, freq)) + feature.append(freq_linux_feature(text, freq)) + feature.append(freq_web_feature(text, freq)) + feature.append(freq_period_feature(text, freq)) + feature.append(len_feature(text, freq)) + feature.append(freq_forward_feature(text, freq)) + feature.append(freq_career_feature(text, freq)) + feature.append(freq_interview_feature(text, freq)) + feature.append(freq_meeting_feature(text, freq)) + feature.append(freq_files_feature(text, freq)) + feature.append(freq_urgent_feature(text, freq)) + feature.append(freq_ebay_feature(text, freq)) + feature.append(freq_prince_feature(text, freq)) + feature.append(freq_cialis_feature(text, freq)) + feature.append(freq_visit_feature(text, freq)) + feature.append(freq_pharm_feature(text, freq)) + feature.append(freq_period_feature(text, freq)) + feature.append(freq_at_feature(text, freq)) + feature.append(freq_common_feature(text, freq)) + feature.append(freq_pronouns_feature(text, freq)) + feature.append(freq_agg_pronoun_feature(text, freq)) + feature.append(freq_verbs_feature(text, freq)) + feature.append(freq_mail_feature(text, freq)) + feature.append(freq_date_feature(text, freq)) + feature.append(freq_schedule_feature(text, freq)) + feature.append(freq_answer_feature(text, freq)) + feature.append(freq_adj_feature(text, freq)) + feature.append(freq_jobs_feature(text, freq)) + # --------- Add your own features here --------- + # Make sure type is int or float + + return feature + +# This method generates a design matrix with a list of filenames +# Each file is a single training example +def generate_design_matrix(filenames): + design_matrix = [] + for filename in filenames: + with open(filename, 'r', encoding='utf-8', errors='ignore') as f: + try: + text = f.read() # Read in text from file + except Exception as e: + # skip files we have trouble reading. + continue + text = text.replace('\r\n', ' ') # Remove newline character + words = re.findall(r'\w+', text) + word_freq = defaultdict(int) # Frequency of all words + for word in words: + word_freq[word] += 1 + + # Create a feature vector + feature_vector = generate_feature_vector(text, word_freq) + design_matrix.append(feature_vector) + return design_matrix + +# ************** Script starts here ************** +# DO NOT MODIFY ANYTHING BELOW + +spam_filenames = glob.glob(os.path.join(SPAM_DIR, '*.txt')) +spam_design_matrix = generate_design_matrix(spam_filenames) +ham_filenames = glob.glob(os.path.join(HAM_DIR, '*.txt')) +ham_design_matrix = generate_design_matrix(ham_filenames) +# Important: the test_filenames must be in reverse numerical order as that is the +# order we will be evaluating your classifier +test_filenames = [os.path.join(TEST_DIR, '{}.txt'.format(x)) for x in range(NUM_TEST_EXAMPLES-1, -1, -1)] +test_design_matrix = generate_design_matrix(test_filenames) + +X = spam_design_matrix + ham_design_matrix +Y = np.array([1]*len(spam_design_matrix) + [0]*len(ham_design_matrix)).reshape((-1, 1)) + +file_dict = {} +file_dict['training_data'] = X +file_dict['training_labels'] = Y +file_dict['test_data'] = test_design_matrix + +outfile = os.path.join(BASE_DIR, 'spam_data.mat') +scipy.io.savemat(outfile, file_dict) diff --git a/hw/hw3/data/ham/0004.1999-12-14.farmer.ham.txt b/hw/hw3/data/ham/0004.1999-12-14.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f1d61cc07416e27faccdd214a0d853c60eb97f5 --- /dev/null +++ b/hw/hw3/data/ham/0004.1999-12-14.farmer.ham.txt @@ -0,0 +1,29 @@ +Subject: re : issue +fyi - see note below - already done . +stella +- - - - - - - - - - - - - - - - - - - - - - forwarded by stella l morris / hou / ect on 12 / 14 / 99 10 : 18 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : sherlyn schumack on 12 / 14 / 99 10 : 06 am +to : stella l morris / hou / ect @ ect +cc : howard b camp / hou / ect @ ect +subject : re : issue +stella , +this has already been taken care of . you did this for me yesterday . +thanks . +howard b camp +12 / 14 / 99 09 : 10 am +to : stella l morris / hou / ect @ ect +cc : sherlyn schumack / hou / ect @ ect , howard b camp / hou / ect @ ect , stacey +neuweiler / hou / ect @ ect , daren j farmer / hou / ect @ ect +subject : issue +stella , +can you work with stacey or daren to resolve +hc +- - - - - - - - - - - - - - - - - - - - - - forwarded by howard b camp / hou / ect on 12 / 14 / 99 09 : 08 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : sherlyn schumack 12 / 13 / 99 01 : 14 pm +to : howard b camp / hou / ect @ ect +cc : +subject : issue +i have to create accounting arrangement for purchase from unocal energy at +meter 986782 . deal not tracked for 5 / 99 . volume on deal 114427 expired 4 / 99 . \ No newline at end of file diff --git a/hw/hw3/data/ham/0067.1999-12-27.farmer.ham.txt b/hw/hw3/data/ham/0067.1999-12-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dcd3f95f327dd52bfdfb23a97293d36aea50bd7 --- /dev/null +++ b/hw/hw3/data/ham/0067.1999-12-27.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: hpl nominations for december 28 , 1999 +( see attached file : hpll 228 . xls ) +- hpll 228 . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/0243.2000-01-24.farmer.ham.txt b/hw/hw3/data/ham/0243.2000-01-24.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d5786fbc0565448801fcb2f9b36aa4e68aef4b04 --- /dev/null +++ b/hw/hw3/data/ham/0243.2000-01-24.farmer.ham.txt @@ -0,0 +1,18 @@ +Subject: phillips petroleum , inc . +- - - - - - - - - - - - - - - - - - - - - - forwarded by carlos j rodriguez / hou / ect on 01 / 24 / 2000 +01 : 38 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +vance l taylor +01 / 24 / 2000 09 : 17 am +to : tom acton / corp / enron @ enron , carlos j rodriguez / hou / ect @ ect +cc : brian m riley / hou / ect @ ect , susan smith / hou / ect @ ect , donald p +reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect +subject : phillips petroleum , inc . +tom , +please generate spot tickets in sitara based upon the follow : +12 / 1 / 99 - 12 / 31 / 99 phillips petroleum company 6673 750 mmbtu / d 100 % if / hsc +less $ 0 . 17 +01 / 1 / 00 - 01 / 31 / 00 phillips petroleum company 6673 750 mmbtu / d 100 % if / hsc +less $ 0 . 17 +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw3/data/ham/0272.2000-01-28.farmer.ham.txt b/hw/hw3/data/ham/0272.2000-01-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..473137f7b16c83ce07c029b5c4e936f52fe58407 --- /dev/null +++ b/hw/hw3/data/ham/0272.2000-01-28.farmer.ham.txt @@ -0,0 +1 @@ +Subject: is this fri feb 11 a problem for taking vacation ? diff --git a/hw/hw3/data/ham/0283.2000-01-31.farmer.ham.txt b/hw/hw3/data/ham/0283.2000-01-31.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..b4bbbae98ed614d5585be438e0f4fc84037f9baf --- /dev/null +++ b/hw/hw3/data/ham/0283.2000-01-31.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: storage +i updated the storage ticket for feb and created an injection ticket , sitara +# 159640 . +let me know if you have any questions . +dave \ No newline at end of file diff --git a/hw/hw3/data/ham/0301.2000-02-02.farmer.ham.txt b/hw/hw3/data/ham/0301.2000-02-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ea4aa1e1794ba4304018eea38559dc7902b7d94 --- /dev/null +++ b/hw/hw3/data/ham/0301.2000-02-02.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: january 2000 withdrawals from storage +hey vonda , +attached is the worksheet showing your withdrawals for the month of january +2000 . let me know if you have any questions . +lisa kinsey \ No newline at end of file diff --git a/hw/hw3/data/ham/0335.2000-02-04.farmer.ham.txt b/hw/hw3/data/ham/0335.2000-02-04.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a7656705fc42277f4d2fcb31efcab0bab467ae1 --- /dev/null +++ b/hw/hw3/data/ham/0335.2000-02-04.farmer.ham.txt @@ -0,0 +1,7 @@ +Subject: 98 - 1534 +daren , +the above mentioned meter ( delivery ) shows a small flow of 24 dec . on +2 - 1 - 00 . the sitara deal ( 151694 ) has a stop date of 1 / 31 / 2000 . +can you please extend the deal thru 2 - 1 - 00 to cover this small volume ? +thanks +- jackie - \ No newline at end of file diff --git a/hw/hw3/data/ham/0366.2000-02-07.farmer.ham.txt b/hw/hw3/data/ham/0366.2000-02-07.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..14f219f3fe0d672bcccfef57762d833e4b5b9397 --- /dev/null +++ b/hw/hw3/data/ham/0366.2000-02-07.farmer.ham.txt @@ -0,0 +1,9 @@ +Subject: 8 th noms +- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 02 / 07 / 2000 +10 : 30 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +troy _ a _ benoit @ reliantenergy . com on 02 / 07 / 2000 10 : 19 : 10 am +to : " ami chokshi " +cc : +subject : 8 th noms +( see attached file : hpl - feb . xls ) +- hpl - feb . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/0423.2000-02-16.farmer.ham.txt b/hw/hw3/data/ham/0423.2000-02-16.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d9fb3829eb3e503d9ef935b15c19d2ceeb4e186f --- /dev/null +++ b/hw/hw3/data/ham/0423.2000-02-16.farmer.ham.txt @@ -0,0 +1,22 @@ +Subject: re : allocation exceptions +daren - meters 3002 and 3003 have volume from jan 99 thru the current month . +could a deal be created for these volumes ? there is a substanital amount of +volume each month . +- aimee +- - - - - - - - - - - - - - - - - - - - - - forwarded by aimee lannou / hou / ect on 02 / 16 / 2000 02 : 54 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +fred boas +02 / 13 / 2000 02 : 28 pm +to : aimee lannou / hou / ect @ ect +cc : robert e lloyd / hou / ect @ ect , howard b camp / hou / ect @ ect +subject : allocation exceptions +aimee : +following is a list of allocation exceptions on daily swing meters that must +be fixed . +meter 3003 with min gas date 01 / 02 / 99 +meter 3002 with min gas date 01 / 02 / 99 +meter 0598 with min gas date 08 / 01 / 99 +meter 5360 with min gas date 0 / 01 / 00 +do you think that we can get them fixed by tuesday the 15 th of this week ? +let me know , +fred \ No newline at end of file diff --git a/hw/hw3/data/ham/0446.2000-02-18.farmer.ham.txt b/hw/hw3/data/ham/0446.2000-02-18.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..29c85d1b650ac32935ee3cdf8062b9b15a6fb4f3 --- /dev/null +++ b/hw/hw3/data/ham/0446.2000-02-18.farmer.ham.txt @@ -0,0 +1,11 @@ +Subject: 98 - 6736 & 98 - 9638 for 1997 ( ua 4 issues ) +the above referenced meters need to be placed on a k . please note the +information below +98 - 6736 on 089 for 5 / 97 ( activity @ this meter for 1 / 97 - 4 / 97 is on +078 - 29165 - 101 ) the referenced cpr deal # is 1567 which ends 4 / 97 . +98 - 9638 on 089 for 6 / 97 ( activity @ this meter for 1 / 97 - 11 / 97 is also on +089 ) no referenced cpr deal # . the only month that has a k placed on it is +12 / 97 and that is on the 078 - 30100 - 103 k . +thanks for your help . +- jackie - +3 - 9497 \ No newline at end of file diff --git a/hw/hw3/data/ham/0474.2000-02-23.farmer.ham.txt b/hw/hw3/data/ham/0474.2000-02-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..062dedd5406beb9177acd949c0da3a1f200d5e85 --- /dev/null +++ b/hw/hw3/data/ham/0474.2000-02-23.farmer.ham.txt @@ -0,0 +1,18 @@ +Subject: re : potential volume list for march , 2000 +fyi . . . this well should come on the lst week of march , but does have gas daily +mid month pricing for the first month . thanks . +susan +smith +02 / 22 / 2000 01 : 44 pm +to : daren j farmer / hou / ect @ ect +cc : melissa graves / hou / ect @ ect , donald p reinhardt / hou / ect @ ect , vance l +taylor / hou / ect @ ect , jill t zivley / hou / ect @ ect +subject : potential volume list for march , 2000 +darren : +this is potential new volume for march , 2000 : +counterparty meter volume mid month gas daily ? +cico oil & gas co . tba 2117 mmbtu per day yes +this number is not in vance ' s production estimate . this well is anticipated +to come on the first week of march but earlier is possible . +please let me know if you need any additional information . +susan smith x 33321 \ No newline at end of file diff --git a/hw/hw3/data/ham/0487.2000-02-24.farmer.ham.txt b/hw/hw3/data/ham/0487.2000-02-24.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ba458506ddbcc52e3385c0cd78f8c68faec1d62 --- /dev/null +++ b/hw/hw3/data/ham/0487.2000-02-24.farmer.ham.txt @@ -0,0 +1,9 @@ +Subject: follow up 1 / 2 day off - site +please hold thursday , march 9 th 11 : 30 - 5 : 00 pm as tentative for the follow +up meeting to our off - site . as soon as i have more concrete information i +will let you know . +note : +if i manage your calendar , it has been updated . +thank you ! +yvette +x 3 . 5953 \ No newline at end of file diff --git a/hw/hw3/data/ham/0523.2000-03-01.farmer.ham.txt b/hw/hw3/data/ham/0523.2000-03-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8416b7cc2bcb1325a6aca4a52237d200969ccf64 --- /dev/null +++ b/hw/hw3/data/ham/0523.2000-03-01.farmer.ham.txt @@ -0,0 +1,48 @@ +Subject: re : meter 986315 torch rally / el sordo 1 / 00 +daren . . have you had a chance to look at this yet ? +- - - - - - - - - - - - - - - - - - - - - - forwarded by kimberly vaughn / hou / ect on 03 / 01 / 2000 +03 : 47 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : sherlyn schumack on 02 / 29 / 2000 08 : 29 am +to : kimberly vaughn / hou / ect @ ect +cc : megan parker / corp / enron @ enron +subject : re : meter 986315 torch rally / el sordo 1 / 00 +kim , +have you received a response on this yet ? +kimberly vaughn +02 / 22 / 2000 04 : 21 pm +to : daren j farmer / hou / ect @ ect , sherlyn schumack / hou / ect @ ect +cc : +subject : meter 986315 torch rally / el sordo 1 / 00 +sheryln , i ' m forwarding this to daren to get your answer . . . daren , deal +141186 ( el sordo ) volume 102 . . . . deal 138605 ( torch ) volume 343 . . . megan +parker thinks that all of this volume should be under torch . . . what do you +think ? +- - - - - - - - - - - - - - - - - - - - - - forwarded by kimberly vaughn / hou / ect on 02 / 22 / 2000 +03 : 17 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : sherlyn schumack 02 / 22 / 2000 01 : 15 pm +to : kimberly vaughn / hou / ect @ ect +cc : megan parker / corp / enron @ enron +subject : meter 986315 torch rally / el sordo 1 / 00 +kim , +have you looked at this yet ? +- - - - - - - - - - - - - - - - - - - - - - forwarded by sherlyn schumack / hou / ect on 02 / 22 / 2000 +01 : 12 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : megan parker @ enron 02 / 22 / 2000 01 : 00 pm +to : sherlyn schumack / hou / ect @ ect +cc : +subject : meter 986315 torch rally / el sordo 1 / 00 +have you heard anything on this yet ? i need to pay it by thursday . +megan +- - - - - - - - - - - - - - - - - - - - - - forwarded by megan parker / corp / enron on 02 / 22 / 2000 +12 : 58 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : megan parker 02 / 17 / 2000 10 : 42 am +to : sherlyn schumack / hou / ect @ ect +cc : +subject : meter 986315 torch rally / el sordo 1 / 00 +i have a volume issue with meter 986315 for 1 / 00 production . the volume has +been split between el sordo and torch rally . i think all of the volume +should be under torch rally . please let me know if you find something +different . the old months have already been corrected . +thanks , +megan \ No newline at end of file diff --git a/hw/hw3/data/ham/0620.2000-03-17.farmer.ham.txt b/hw/hw3/data/ham/0620.2000-03-17.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..6a232e4f3f4032f51f9868fa09c8f6692e29ae3e --- /dev/null +++ b/hw/hw3/data/ham/0620.2000-03-17.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: nomination into eastrans - 3 / 18 / 2000 +we are reducing our nom into eastrans eff 3 / 18 / 2000 to +72 , 000 mmbtu / d . redeliveries are 50 mmcf / d into pg & e , 7 from fcv , +3 into your cartwheel @ carthage , and 12 into mobil beaumont . . \ No newline at end of file diff --git a/hw/hw3/data/ham/0653.2000-03-21.farmer.ham.txt b/hw/hw3/data/ham/0653.2000-03-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a03f22dbe14f78126e17ebd3c0fb718c543ba740 --- /dev/null +++ b/hw/hw3/data/ham/0653.2000-03-21.farmer.ham.txt @@ -0,0 +1,12 @@ +Subject: transport contracts +d - +the oasis contract # s are : 028 27099 201 +028 27099 202 +028 27099 203 +028 27099 204 +pg & e contract # s are : 5095 - 037 +5098 - 695 +9121 +5203 - 010 +pg & e parking and lending contracts awaiting approval : pleo 0004 +plao 0004 \ No newline at end of file diff --git a/hw/hw3/data/ham/0677.2000-03-22.farmer.ham.txt b/hw/hw3/data/ham/0677.2000-03-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..18ffa30b9237c2729f1f29c5eafe4cb83b601324 --- /dev/null +++ b/hw/hw3/data/ham/0677.2000-03-22.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: vacation scheduled +i will be on vacation friday , march 24 th , 27 th , 28 th and maybe 29 th . in my +absence please call jackie young @ 3 - 9497 . +susan { @ 3 - 5796 } will back up jackie during my absence for industrial +activity . \ No newline at end of file diff --git a/hw/hw3/data/ham/0802.2000-03-31.farmer.ham.txt b/hw/hw3/data/ham/0802.2000-03-31.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..3fdd709f76492ce877419181046c80557a7a9391 --- /dev/null +++ b/hw/hw3/data/ham/0802.2000-03-31.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: re : mitchell gas services 2 / 00 +i ' m not sure , but could you ask craig . +julie +daren j farmer +03 / 31 / 2000 12 : 30 pm +to : julie meyers / hou / ect @ ect +cc : +subject : re : mitchell gas services 2 / 00 +is this still outstanding ? craig is back in the office now . +d +julie meyers +03 / 20 / 2000 02 : 27 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : mitchell gas services 2 / 00 +- - - - - - - - - - - - - - - - - - - - - - forwarded by julie meyers / hou / ect on 03 / 20 / 2000 02 : 26 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : megan parker @ enron 03 / 20 / 2000 02 : 08 pm +to : julie meyers / hou / ect @ ect +cc : william c falbaum / hou / ect @ ect +subject : mitchell gas services 2 / 00 +we have a price difference with mitchell gas services for 2 / 00 production , +deal 156658 . we have hsc - 0 . 05 and mitchell shows hsc - 0 . 04 . can you tell +me what the correct price is ? i need this asap . +megan \ No newline at end of file diff --git a/hw/hw3/data/ham/0863.2000-04-05.farmer.ham.txt b/hw/hw3/data/ham/0863.2000-04-05.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..6fe05832b0746d80a942bf8c6d470180b2ac4b73 --- /dev/null +++ b/hw/hw3/data/ham/0863.2000-04-05.farmer.ham.txt @@ -0,0 +1,129 @@ +Subject: re : sitara release ( re : changes in global due to consent to +assignment ) +fyi . . . . +this change went in for the deal validation group . it gives them the +ability to change counterparties names after bridge back . +impact to logistics - unify +if a counterparty name change takes place to deals that have been bridge +backed , it could cause problems on edi pipes as that new counterparty name +will flow over to unify and repathing should eventually take place . +one problem may be with the imbalance data sets , which are not in production +yet . . . . . . ( edi imbalance qtys would not match up to paths ) +this may also cause an issue with the scheduled quantities ( especially where +nominations were sent for entire month ) +can ' t remember the rules on this one , but i think unify does have some safe +guards ( idiot proofs ) to force re - pathing . +unify does have the ability to over - ride duns numbers , yet would still cause +an additional step for edi the scheduler would need to think through in order +to get a clean quick response . +what are ( if any ) impacts to vol mgt if counterparty name changes take +place ? ( prior periods ? re - pathing ? ) +i have a call into diane and dave both . after speaking w / them , hopefully i +can get a clear understanding of the true impact . i am sure we ' ll need to +put some processes and procedures together for deal validation to follow when +these type of changes are needed . +will keep you posted . +thanks , +dg +from : thomas engel 04 / 05 / 2000 09 : 44 am +to : kathryn cordes / hou / ect @ ect , dana daigle / corp / enron @ enron , elizabeth l +hernandez / hou / ect @ ect , julie meyers / hou / ect @ ect , b scott palmer / hou / ect @ ect , +stephanie sever / hou / ect @ ect , dianne j swiber / hou / ect @ ect , peggy +hedstrom / cal / ect @ ect , dianne seib / cal / ect @ ect +cc : sylvia a campos / hou / ect @ ect , linda s bryan / hou / ect @ ect , faye +ellis / hou / ect @ ect , donna consemiu / hou / ect @ ect , scott mills / hou / ect @ ect , russ +severson / hou / ect @ ect , martha stevens / hou / ect @ ect , karie hastings / hou / ect @ ect , +regina perkins / hou / ect @ ect , imelda frayre / hou / ect @ ect , william e +kasemervisz / hou / ect @ ect , hunaid engineer / hou / ect @ ect , steven +gullion / hou / ect @ ect , larrissa sharma / hou / ect @ ect , donna greif / hou / ect @ ect +subject : sitara release ( re : changes in global due to consent to assignment ) +regarding the ability to change counterparties on deals in sitara with +confirmed volumes - tom ' s words of caution : +if someone calls you and wants to change a counterparty - we created the +ability for you to invalidate the deal - and +then change the counterparty - however - i did add a warning message : +" warning - changing counterparty on deal with confirmed volumes - make sure +pipeline allows this change . " +some pipelines do not allow us to change counterparties after there is +feedback - i assume for the same reasons +we had this rule - it used to blow up our old scheduling systems +( pre - unify ) . some pipelines will require a new +deal and we will have to zero out the old deal . +before you make the change - make sure the logistics person is aware - just +in case it causes problems with their +pipeline . sorry - i don ' t know which pipes these are - you will have to ask +the unify team . +there is one rule still in place - you can change from ena - im east to ena - im +market east - but not from +ena - im texas to hplc - im hplc - when changing business units - they must be +the same legal entity . +" warning - not the same legal entity " +also - beware of making contract and counterparty changes to service deals +( transport capacity , storage , cash out ) . +once the deal is invalidated - there are no rules . don ' t forget - the items +were locked down for a reason . +if you invalidate a service deal - and change the previously locked down +data that was validated - and someone used these +deals in unify - it is highly likely that the unify deals and paths created +using these deals will get corrupted . always check +with someone from unify to make sure no one used these deals for anything in +unify . +- - - - - - - - - - - - - - - - - - - - - - forwarded by thomas engel / hou / ect on 04 / 05 / 2000 09 : 47 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : scott mills on 04 / 04 / 2000 07 : 38 pm +to : kathryn cordes / hou / ect @ ect , dana daigle / corp / enron @ enron , elizabeth l +hernandez / hou / ect @ ect , julie meyers / hou / ect @ ect , b scott palmer / hou / ect @ ect , +stephanie sever / hou / ect @ ect , dianne j swiber / hou / ect @ ect +cc : steve jackson / hou / ect @ ect , thomas engel / hou / ect @ ect , sylvia a +campos / hou / ect @ ect , linda s bryan / hou / ect @ ect , faye ellis / hou / ect @ ect , donna +consemiu / hou / ect @ ect +subject : sitara release ( re : changes in global due to consent to assignment ) +with the release that was put out tuesday evening , deal validation should be +able to change the counterparty on deals where the volume is something other +than expected ( e . g . confirmed , nominated , scheduled , etc . ) . +in addition , this release will also capture " near - time " the contract changes +that are made in global . this means that need for server bounces will not be +necessary . +new / changes to contracts will show up without having to get out of deal +manager . +new counterparties , and new / changes to facilities will require getting out +of all active sitara apps ( except for launch pad ) . +once out of all apps , start a new app - the respective information that you +are looking for will appear . +i mention " near - time " because we are constrained by the amount of time it +takes for the change in global data to trigger an alert for sitara who then +updates its information +srm ( x 33548 ) +cyndie balfour - flanagan @ enron +04 / 04 / 2000 03 : 41 pm +to : connie sutton / hou / ect @ ect , linda s bryan / hou / ect @ ect , kathryn +cordes / hou / ect @ ect , scott mills / hou / ect @ ect , richard elwood / hou / ect @ ect , dave +nommensen / hou / ect @ ect , kenneth m harmon / hou / ect @ ect , dana +daigle / corp / enron @ enron , kathryn cordes / hou / ect @ ect , elizabeth l +hernandez / hou / ect @ ect , julie meyers / hou / ect @ ect , b scott palmer / hou / ect @ ect , +stephanie sever / hou / ect @ ect , dianne j swiber / hou / ect @ ect , gayle +horn / corp / enron @ enron , brant reves / hou / ect @ ect , russell diamond / hou / ect @ ect , +debbie r brackett / hou / ect @ ect , steve jackson / hou / ect @ ect +cc : +subject : changes in global due to consent to assignment +the following changes will be made in the global contracts database due to +receipt of executed consent to assignment for the following contracts : +current counterparty name contract type contract # ' new ' counterparty +name +ces - commonwealth energy services gisb 96029892 commonwealth energy +services +ces - samuel gary jr . & associates , inc gisb 96029302 samuel gary jr . & +associates +ces - south jersey gas company gisb 96029143 south jersey gas company +cp name change and contract type correction ( contract type different than +that provided by ces ) +per ces +ces - southwest gas corporation 1 / 1 / 98 gisb 96029146 +per contract file +ces - southwest gas corporation 04 / 14 / 93 master purchase / sale interruptible +( will edit global # 96029146 ) +& +ces - southwest gas corporation 12 / 01 / 94 master sale firm ( created new +global record to accommodate this k , # 96037402 ) +please note that southwest gas corporation has consented to the assignment of +both of these contracts . \ No newline at end of file diff --git a/hw/hw3/data/ham/0869.2000-04-06.farmer.ham.txt b/hw/hw3/data/ham/0869.2000-04-06.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c7a9a3edad975b7d6500312189f262a1b65e6ba3 --- /dev/null +++ b/hw/hw3/data/ham/0869.2000-04-06.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: hr performance objectives binders +good morning ( afternoon ) , +today , everyone should have received a binder . some were placed in your mail +slots and others were hand delivered . if you did not receive a binder , please +email or call me for one to be delivered to you . +thank you , +octavia +x 78351 \ No newline at end of file diff --git a/hw/hw3/data/ham/1000.2000-04-26.farmer.ham.txt b/hw/hw3/data/ham/1000.2000-04-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..255570d8860b444032bec800447d161460b1cd53 --- /dev/null +++ b/hw/hw3/data/ham/1000.2000-04-26.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: mike clinchard resume +in case you have an opening . . . . +- resume . doc \ No newline at end of file diff --git a/hw/hw3/data/ham/1007.2000-04-27.farmer.ham.txt b/hw/hw3/data/ham/1007.2000-04-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..615a6e85bd4f277826b47561603b492c5daf58bf --- /dev/null +++ b/hw/hw3/data/ham/1007.2000-04-27.farmer.ham.txt @@ -0,0 +1,18 @@ +Subject: cpr pipeline exchange activity report +we have placed the cpr pipeline exchange activity report into the sitara +production reporting . please let me know if +you have any questions . this report gves you the volume activity of a given +business unit , on all or selectied pipes , for +given flow dates . please rememeber that this report is originating from the +sitara database . +you all have access to run reports in sitara . you can run reports by +clicking the last icon ( blue one ) from the sitara launchpad . +you may have to logout of sitara to compeletely to see the icon . +* once you are able to access the web site from the icon , click on reports . +* login using your sitara login and password . +* select the specialized / exceptions category from the drop down menu . +* run the cpr pipeline exchange activity report . you will have to select a +business unit , flow date and optionally pipe . +if you have any problems running this report , let me know at x 37913 . +thanks , +hunaid \ No newline at end of file diff --git a/hw/hw3/data/ham/1012.2000-04-28.farmer.ham.txt b/hw/hw3/data/ham/1012.2000-04-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7a74d4f655f471e69d2bdb69f995b96a419c9e7 --- /dev/null +++ b/hw/hw3/data/ham/1012.2000-04-28.farmer.ham.txt @@ -0,0 +1,6 @@ +Subject: entex revised estimates for 4 / 00 +the attached spreadsheet has the revised estimates for entex citygate loads +for april . if you need me to get with pops / unify to correct or change the +estimates please give me a call . +thanks +gary \ No newline at end of file diff --git a/hw/hw3/data/ham/1061.2000-05-10.farmer.ham.txt b/hw/hw3/data/ham/1061.2000-05-10.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7a4ff2ad5ba1a49a16de060bd46ed4c730cd44a6 --- /dev/null +++ b/hw/hw3/data/ham/1061.2000-05-10.farmer.ham.txt @@ -0,0 +1,46 @@ +Subject: ena sales on hpl +just to update you on this project ' s status : +based on a new report that scott mills ran for me from sitara , i have come up +with the following counterparties as the ones to which ena is selling gas off +of hpl ' s pipe . +altrade transaction , l . l . c . gulf gas utilities company +brazoria , city of panther pipeline , inc . +central illinois light company praxair , inc . +central power and light company reliant energy - entex +ces - equistar chemicals , lp reliant energy - hl & p +corpus christi gas marketing , lp southern union company +d & h gas company , inc . texas utilities fuel company +duke energy field services , inc . txu gas distribution +entex gas marketing company union carbide corporation +equistar chemicals , lp unit gas transmission company inc . +since i ' m not sure exactly what gets entered into sitara , pat clynes +suggested that i check with daren farmer to make sure that i ' m not missing +something ( which i did below ) . while i am waiting for a response from him +and / or mary smith , i will begin gathering the contractual volumes under the +above contracts . +- - - - - - - - - - - - - - - - - - - - - - forwarded by cheryl dudley / hou / ect on 05 / 10 / 2000 07 : 56 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +cheryl d king +05 / 08 / 2000 04 : 11 pm +sent by : cheryl dudley +to : daren j farmer / hou / ect @ ect , mary m smith / hou / ect @ ect +cc : +subject : ena sales on hpl +i am working on a project for brenda herod & was wondering if one of you +could tell me if i ' m on the right track & if this will get everything for +which she is looking . +she is trying to draft a long - term transport / storage agreement between ena & +hplc which will allow ena to move the gas to their markets . in order to +accomplish this , she needs to know all of the sales to customers that ena is +doing off of hpl ' s pipe . +i had scott mills run a report from sitara showing all ena buy / sell activity +on hpl since 7 / 99 . if i eliminate the buys & the desk - to - desk deals , will +this give me everything that i need ? +are there buy / sell deals done with ena on hpl ' s pipe that wouldn ' t show up in +sitara ? someone mentioned something about deals where hpl transports the gas +on it ' s own behalf then ena sells it to a customer at that same spot - - +? ? ? ? ? do deals like that happen ? would they show up in sitara ? +is there anything else that i ' m missing ? i ' m not real familiar with how some +of these deals happen nowadays so am very receptive to any +ideas / suggestions / help that you can offer ! ! ! +thanks in advance . \ No newline at end of file diff --git a/hw/hw3/data/ham/1087.2000-05-18.farmer.ham.txt b/hw/hw3/data/ham/1087.2000-05-18.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1af4860c2b48df95d9c3bb3ff028793d3c2cce7f --- /dev/null +++ b/hw/hw3/data/ham/1087.2000-05-18.farmer.ham.txt @@ -0,0 +1,9 @@ +Subject: eol issues +to get immediate response on an eol issue , such as a next day deal that is +not showing up in sitara , either call me at 3 - 5824 +or torrey moorer at 3 - 6218 . if you are unable to reach either one of us , +please page us at the following numbers . please pass +this information to others in your group . +thank you . +jennifer de boisblanc denny 1 - 877 - 473 - 1343 +torrey moorer 1 - 877 - 473 - 1344 \ No newline at end of file diff --git a/hw/hw3/data/ham/1170.2000-05-30.farmer.ham.txt b/hw/hw3/data/ham/1170.2000-05-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f9ee2d735f589baf0f9a5f125ad4a71537682f6 --- /dev/null +++ b/hw/hw3/data/ham/1170.2000-05-30.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: revised nominations +daren , +we have received revised nominations from prize energy resources , l . p . for +june , 2000 . the revisions are as follows : +meter # original volume revised volume +5579 2 , 209 2 , 536 +6534 1 , 906 1 , 123 +6614 2 , 215 2 , 128 +do you want me to enter the revised volumes ? please advise . thanks . +bob \ No newline at end of file diff --git a/hw/hw3/data/ham/1197.2000-06-01.farmer.ham.txt b/hw/hw3/data/ham/1197.2000-06-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce17214eef73a5e8d18b56d638a8fe462400f0aa --- /dev/null +++ b/hw/hw3/data/ham/1197.2000-06-01.farmer.ham.txt @@ -0,0 +1,16 @@ +Subject: ami , , , , +i agree ! ! +thanks . +- - - - - - - - - - - - - - - - - - - - - - forwarded by tim powell / lsp / enserch / us on 06 / 01 / 2000 +11 : 29 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +ami . chokshi @ enron . com on 06 / 01 / 2000 11 : 13 : 13 am +to : tim powell / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , +daren . j . farmer @ enron . com +cc : +subject : +and the final numbers for may are . . . +iferc 1 , 240 , 000 ( last volume was 72084 on day 18 ) +enron 930 , 000 ( last volume was 21667 on day 26 ) +gas daily 1 , 033 , 416 ( last volume was 80000 on day 31 ) +please advise , +ami \ No newline at end of file diff --git a/hw/hw3/data/ham/1207.2000-06-01.farmer.ham.txt b/hw/hw3/data/ham/1207.2000-06-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac3f78cce3f83890cfca28ef06cee358f588dac9 --- /dev/null +++ b/hw/hw3/data/ham/1207.2000-06-01.farmer.ham.txt @@ -0,0 +1,37 @@ +Subject: re : revised nomination - june , 2000 +daren , +fyi . per our discussion , the following nominations were revised on eog +resources : +meter # orig nom rev nom deal # +5263 4 , 755 5 , 820 126355 +6067 3 , 726 4 , 600 126281 +6748 2 , 005 3 , 300 126360 +6742 4 , 743 10 , 120 126365 +6296 5 , 733 2 , 300 126281 +bob +daren j farmer +05 / 31 / 2000 05 : 51 pm +to : robert cotten / hou / ect @ ect +cc : +subject : re : revised nomination - june , 2000 +bob , +go ahead and accept the nom revision . i believe that this is with pge , not +el paso . how do the rest of our noms compare with eog ? i f they have a +higher volume at another meter than we do , i would like to increase our nom +there . in effect , i want to keep our physical index position as close as +possible to what we have in the system now . +d +enron north america corp . +from : robert cotten 05 / 31 / 2000 04 : 04 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : revised nomination - june , 2000 +daren , +charlotte hawkins is having trouble confirming the volume of 5 , 733 with el +paso . el paso will not confirm the volume that high . eog revised their +nomination as follows : +c / p name meter # orig nom rev nom +eog res . 6296 5 , 733 2 , 300 +will you approve revising the volume in unify down to 2 , 300 ? please advise . +thanks . +bob \ No newline at end of file diff --git a/hw/hw3/data/ham/1223.2000-06-02.farmer.ham.txt b/hw/hw3/data/ham/1223.2000-06-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..cfd097f49efbdb2767388dcfa6519262c2d32cbc --- /dev/null +++ b/hw/hw3/data/ham/1223.2000-06-02.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: re : new turn - on range resources +vance , +a ticket has been created and entered in sitara based on the information +below . the deal number is 287507 . thanks . +bob +vance l taylor +06 / 02 / 2000 10 : 23 am +to : tom acton / corp / enron @ enron , robert cotten / hou / ect @ ect +cc : lisa hesse / hou / ect @ ect , heidi withers / hou / ect @ ect , julie +meyers / hou / ect @ ect , susan smith / hou / ect @ ect , donald p reinhardt / hou / ect @ ect , +melissa graves / hou / ect @ ect +subject : new turn - on range resources +robert / tom , +the following production commenced to flow earlier in the week and a ticket +should be created and entered into sitara based on the following : +counterparty meter volumes price period +range resources corporation 9832 350 mmbtu / d 100 % gasdaily less $ 0 . 18 5 / 30 +- 5 / 31 +fyi , susan will create and submit a committed reserves firm ticket for june +and for the remaining term of the deal beginning with the month of july once +she recieves a reserve study . additionally , this is a producer svcs . deal +and should be tracked in the im wellhead portfolio . . . attached to the +gathering contract . +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw3/data/ham/1291.2000-06-08.farmer.ham.txt b/hw/hw3/data/ham/1291.2000-06-08.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..47268b2c75a48f6788565dfe567ee807e5005dee --- /dev/null +++ b/hw/hw3/data/ham/1291.2000-06-08.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: re : hpl / enron actuals for june 8 , 2000 +oops , sorry , they are for the 7 th . . . \ No newline at end of file diff --git a/hw/hw3/data/ham/1310.2000-06-09.farmer.ham.txt b/hw/hw3/data/ham/1310.2000-06-09.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..aa41e374618f4a852a24166d8a151572489ce4f7 --- /dev/null +++ b/hw/hw3/data/ham/1310.2000-06-09.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: sea robin changes +- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 06 / 09 / 2000 +10 : 39 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +" steve holmes " on 06 / 09 / 2000 10 : 42 : 30 am +to : , +cc : +subject : sea robin changes +the previous e - mail shoud have shown the 11 changes to be effective monday , +june 12 , . 2000 . i will correct the date and resend the changes . +steve \ No newline at end of file diff --git a/hw/hw3/data/ham/1399.2000-06-19.farmer.ham.txt b/hw/hw3/data/ham/1399.2000-06-19.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3fad5b196a22d1de433a9dfee60a7f9cffabd69 --- /dev/null +++ b/hw/hw3/data/ham/1399.2000-06-19.farmer.ham.txt @@ -0,0 +1,46 @@ +Subject: re : atmic hurta # 1 - new production +vance , +deal # 303948 has been created and entered in sitara . +bob +vance l taylor +06 / 19 / 2000 02 : 56 pm +to : vance l taylor / hou / ect @ ect +cc : robert cotten / hou / ect @ ect , hillary mack / corp / enron @ enron , lisa +hesse / hou / ect @ ect , heidi withers / hou / ect @ ect , susan smith / hou / ect @ ect , donald +p reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect +subject : re : atmic hurta # 1 - new production +auugghh ! +that ' s the marquee corporation +vlt +x 3 - 6353 +vance l taylor +06 / 19 / 2000 02 : 54 pm +to : vance l taylor / hou / ect @ ect +cc : robert cotten / hou / ect @ ect , hillary mack / corp / enron @ enron , lisa +hesse / hou / ect @ ect , heidi withers / hou / ect @ ect , susan smith / hou / ect @ ect , donald +p reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect +subject : re : atmic hurta # 1 - new production +revision , the correct counterparty name should be marque cooperation acting +as seller and seller ' s representative . +thanks , +vlt +x - 6353 +vance l taylor +06 / 19 / 2000 02 : 10 pm +to : robert cotten / hou / ect @ ect +cc : hillary mack / corp / enron @ enron , lisa hesse / hou / ect @ ect , heidi +withers / hou / ect @ ect , susan smith / hou / ect @ ect , donald p reinhardt / hou / ect @ ect , +melissa graves / hou / ect @ ect +subject : atmic hurta # 1 - new production +bob , +the following production commenced to flow on friday and a ticket should be +created and entered into sitara based on the following : +counterparty meter volumes price period +iss , l . l . c 9837 3 , 500 mmbtu / d 100 % gas daily less $ 0 . 09 6 / 16 - 6 / 30 +fyi , susan will create and submit a committed reserves firm ticket for the +remaining term of the deal beginning with the month of july . additionally , +this is a producer svcs . deal and should be tracked in the im wellhead +portfolio . . . attached to the gathering contract . +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw3/data/ham/1460.2000-06-22.farmer.ham.txt b/hw/hw3/data/ham/1460.2000-06-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..22b9541babf9616c99f0f87e55974b6c7f933433 --- /dev/null +++ b/hw/hw3/data/ham/1460.2000-06-22.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: tufco - prebid +hplr est . 65000 +wb est . 40000 \ No newline at end of file diff --git a/hw/hw3/data/ham/1523.2000-06-28.farmer.ham.txt b/hw/hw3/data/ham/1523.2000-06-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..56bf287b35ef5f4cd8a5a8e94e57147455b4cffb --- /dev/null +++ b/hw/hw3/data/ham/1523.2000-06-28.farmer.ham.txt @@ -0,0 +1,29 @@ +Subject: $ 5 for cd ' s dvd ' s expires soon at half . com +* * free $ 5 coupon at half . com * * +o half . com is a new site for cds , books , movies , & video games +o everything is 50 - 90 % off and you get $ 5 off your first $ 10 order +o plus , free shipping with your first order of 3 or more items +o be sure to pass this coupon on to all your friends ! ! ! +click here for 5 bucks ! +your coupon code is : lifestyle 5 +" use it or lose it " expires soon ! ! +click here for 5 bucks ! +your coupon code is : lifestyle 5 +the hottest titles at 50 % off while they last - including : +cds - santana , n sync , dixie chicks , jay - z , and christina +aguilera project , sixth sense and matrix +dvds - world is not enough , blair witch and more . . . +* * free $ 5 coupon at half . com * * +click here for 5 bucks ! +your coupon code is : lifestyle 5 +on the shopping cart page , enter your $ 5 . 00 coupon +code on the right side of the page . after submitting +your code , your coupon will be displayed in your +shopping cart . +you have received this invitation to participate in our offer because +you or someone using your e - mail address agreed to receive special +promotional offers from retail trade services and its web site +partners . if you wish to be excluded from future offers , please reply +to this message and type " unsubscribe " in the subject line . +all questions can be sent to : +if you wish to know more about our privacy policies , please go to diff --git a/hw/hw3/data/ham/1553.2000-06-29.farmer.ham.txt b/hw/hw3/data/ham/1553.2000-06-29.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..613e571d49904902bda1c2e18176d8c7dd4e814a --- /dev/null +++ b/hw/hw3/data/ham/1553.2000-06-29.farmer.ham.txt @@ -0,0 +1,15 @@ +Subject: revised nom - kcs resources +daren , +it ' s in . +bob +- - - - - - - - - - - - - - - - - - - - - - forwarded by robert cotten / hou / ect on 06 / 29 / 2000 06 : 22 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : robert cotten 06 / 29 / 2000 03 : 35 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : revised nom - kcs resources +daren , +kcs ' orig nom was 11 , 148 at meter # 9658 . you revised it to 9 , 381 . kcs +wants to revise it to 8 , 000 . do you want me to adjust ? +bob \ No newline at end of file diff --git a/hw/hw3/data/ham/1562.2000-06-30.farmer.ham.txt b/hw/hw3/data/ham/1562.2000-06-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b4a08c3cdba8a2c9a3f00c59e037deea57d71f8 --- /dev/null +++ b/hw/hw3/data/ham/1562.2000-06-30.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: july transport usage tickets +i have input and updated transport usage tickets for july . i did not update +one for the demand charge for pgev / maypearl delivery , so if there is one , you +will have to set it up in the system . if you have any questions , please let +me know . also , pay close attention to the oasis and pg & e tickets for this +month . i do not yet know what baseload rates you have agreed upon , so you +will need to adjust them in the appropriate tickets . if you would , please +let me know , too , what baseload business and rates you have agreed upon for +both these pipelines . thank you . +heidi \ No newline at end of file diff --git a/hw/hw3/data/ham/1590.2000-07-10.farmer.ham.txt b/hw/hw3/data/ham/1590.2000-07-10.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..52617ee9f97e07df1ae2aec10ecc4446e565e5f4 --- /dev/null +++ b/hw/hw3/data/ham/1590.2000-07-10.farmer.ham.txt @@ -0,0 +1,182 @@ +Subject: re : coastal oil & gas corporation +melissa , +deal ticket # 325550 has been created and entered in sitara . +bob +enron north america corp . +from : melissa graves 07 / 07 / 2000 03 : 34 pm +to : robert cotten / hou / ect @ ect +cc : donald p reinhardt / hou / ect @ ect , susan smith / hou / ect @ ect , vance l +taylor / hou / ect @ ect , george weissman / hou / ect @ ect , hillary +mack / corp / enron @ enron , amelia alland / hou / ect @ ect +subject : re : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +bob , +per george ' s note below , hplc will be purchasing wellhead gas from the +producer listed below for the production month of july . this production will +be purchased on a " spot " basis and a deal ticket should be created and +entered into sitara based on the following information : +counterparty meter volume price +coastal oil & gas corporation 4179 , albrecht # 4 well 7 / 7 / 00 - 1 , 500 mmbtu / d +7 / 8 / 00 - 3 , 000 mmbtu / d +7 / 9 / 00 thru 7 / 31 / 00 - 4 , 000 mmbtu / d 93 % if / hsc +additionally , this is a producer svcs . deal and should be tracked in the im +wellhead portfolio . . . attached to the gathering contract . +thanks , +melissa +- - - - - - - - - - - - - - - - - - - forwarded by melissa graves / hou / ect on 07 / 07 / 2000 03 : 03 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : george weissman 07 / 07 / 2000 01 : 11 pm +to : melissa graves / hou / ect @ ect , shawna flynn / hou / ect @ ect +cc : sandi m braband / hou / ect @ ect , robert walker / hou / ect @ ect , vicente +sarmiento / gco / enron @ enron , brian m riley / hou / ect @ ect , lauri a +allen / hou / ect @ ect +subject : re : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +melissa , +based on the attached contract preparation request for a spot gtc for the +coastal oil the +legal department has prepared and is currently circulating a ratification and +consent to assign document to reflect this transaction . +the spot gtc requested herein will cover gas from the albrecht # 4 well only . +the albrecht # 4 will not be covered by 96008903 , nor will the wells currently +subject to 96008903 be subject to the spot gtc . +shawna , please prepare the termination letter for 96008903 as requested . +george x 3 - 6992 +- - - - - - - - - - - - - - - - - - - - - - forwarded by george weissman / hou / ect on 07 / 07 / 2000 +01 : 04 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +debbie boudar @ enron +07 / 06 / 2000 03 : 25 pm +to : george weissman / hou / ect @ ect +cc : robert walker / hou / ect @ ect , vicente sarmiento / gco / enron @ enron , brian m +riley / hou / ect @ ect +subject : re : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +in regards to meter 098 - 4179 the following information is what i have been +able to determine from the information available to me . +to your questions : +1 . cannot determine who owns this meter . i will contact molly carriere on +monday when she returns . +2 . hpl has a fifty ( 50 ) ft . easement at this location which does contain +language for appurtenance rights within the 50 ' . +3 . i pulled the meter file for this location which was prepared during +project rock and it does not contain a facility agreement so i am assuming +one was not located . +hope this helps . +from : george weissman @ ect 07 / 06 / 2000 11 : 09 am +to : debbie boudar / na / enron @ enron +cc : robert walker / hou / ect @ ect , vicente sarmiento / gco / enron @ enron , brian m +riley / hou / ect @ ect +subject : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +debbie , +meter 098 - 4179 is located at sta . plus 40 + 85 on align . dwg . hc - 1130 - 18 - h in +goliad co . , tx . in connection with the facility agreement request below , we +need to know the following : +1 . who owns the meter , hplc or the operator ? +2 . do we own an easement and an access right of way to the meter station ? +3 . is there , to your knowledge , a facility agreement in place covering this +meter ? we cannot locate such an agreement in our records . +thanks . george x 3 - 6992 +- - - - - - - - - - - - - - - - - - - - - - forwarded by george weissman / hou / ect on 07 / 06 / 2000 +11 : 06 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : george weissman 07 / 06 / 2000 09 : 37 am +to : shawna flynn / hou / ect @ ect +cc : robert walker / hou / ect @ ect , brian m riley / hou / ect @ ect , vicente +sarmiento / gco / enron @ enron , melissa graves / hou / ect @ ect , lal +echterhoff / hou / ect @ ect , james r haden / hou / ect @ ect +subject : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +shawna , +attached is a contract preparation request for a facilities agreement for the +coastal oil the +legal department has prepared and is currently circulating a ratification and +consent to assign document to reflect this transaction . +we have been unable to locate an existing facility agreement for the 3 +previously drilled wells and suspect that no such agreement exists . +the facility agreement requested herein is intended to cover only alterations +to be made to existing meter 098 - 4179 to install an h 2 s monitor and necessary +valving to allow hplc to accept gas from the newly drilled albrecht # 4 well . +once the h 2 s monitor has been installed and the albrecht # 4 well is ready to +flow , we intend to paper the purchase of gas from the albrecht # 4 well only +via a spot confirmation pursuant to a spot gtc . the albrecht # 4 will not be +covered by 96008903 , nor will the wells currently subject to 96008903 be +subject to the spot gtc . +coastal will reimburse hplc $ 39 , 600 for the cost of the installation . +george x 3 - 6992 +- - - - - - - - - - - - - - - - - - - - - - forwarded by george weissman / hou / ect on 07 / 06 / 2000 +09 : 21 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : george weissman 07 / 04 / 2000 01 : 28 pm +to : lal echterhoff / hou / ect @ ect , pat flavin / gco / enron @ enron +cc : brian m riley / hou / ect @ ect , jill t zivley / hou / ect @ ect , vicente +sarmiento / gco / enron @ enron , james r haden / hou / ect @ ect , donnie +mccabe / gco / enron @ enron , mark walch / gco / enron @ enron , steve hpl +schneider / hou / ect @ ect +subject : coastal oil & gas corporation +albrecht # 4 well +meter 098 - 4179 , goliad co . , tx +lal , +we intend to attempt to connect about 4 , 000 mmbtu / d of new production from +the newly drilled coastal oil in may , 2000 , the meter flowed about 960 +mmbtu / d of 3 . 36 % co 2 gas . +the content of the albrecht # 4 gas according to the field gas analysis +prepared by coastal oil the albrecht # 4 h 2 s content +is similar to that of the three wells currently producing 960 mmbtu / d behind +meter 098 - 4179 , the miller - albrecht unit # 1 - a and the hoff heller gas unit +# 1 a & # 2 d . coastal further purports that for some time now it ( and / or its +predecessor , mjg , corp . ) has treated these three wells for h 2 s in a manner +sufficient to reduce the h 2 s content delivered into hplc to permissible +levels . coastal has further indicated that it intends to reduce the h 2 s +content of the albrecht # 4 to permissible levels before delivering same to +hplc . in your opinion , should coastal be forced to install an h 2 s monitor +for this new gas prior to flowing same to hplc ? +george x 3 - 6992 +- - - - - - - - - - - - - - - - - - - - - - forwarded by george weissman / hou / ect on 07 / 04 / 2000 +12 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +christy sweeney +06 / 29 / 2000 04 : 56 pm +to : lisa hesse / hou / ect @ ect +cc : brian m riley / hou / ect @ ect , george weissman / hou / ect @ ect , melissa +graves / hou / ect @ ect , joanne wagstaff / na / enron @ enron , heidi withers / hou / ect @ ect +subject : transport request for coastal albrecht # 4 , goliad county , tx +lisa , +attached is our physical well connect form , including a transportation quote +sheet , for the coastal albrecht # 4 well in goliad county , tx . please +provide us with a transport quote . i have attached below a quote you gave us +in april 2000 . the volume is now 5 , 000 / day . +i am headed that way with a map that shows the well ' s location in relation to +us , tejas , koch , and tetco . please note 2 % fuel . +thank you ! ! ! +christy +39050 +- - - - - - - - - - - - - - - - - - - - - - forwarded by christy sweeney / hou / ect on 06 / 29 / 2000 +02 : 46 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron north america corp . +from : lisa hesse 04 / 07 / 2000 10 : 48 am +to : brian m riley / hou / ect @ ect +cc : lauri a allen / hou / ect @ ect , mary m smith / hou / ect @ ect , heidi +withers / hou / ect @ ect , melissa graves / hou / ect @ ect , george weissman / hou / ect @ ect , +susan smith / hou / ect @ ect , donald p reinhardt / hou / ect @ ect , vance l +taylor / hou / ect @ ect , lisa hesse / hou / ect @ ect , lisa hesse / hou / ect @ ect +subject : mjg , inc . meter 4179 and cokinos meter 9676 +brian , +here are the transport rates for the below meters : +mjg meter 4179 3 . 39 % co 2 1 year quote april 00 +rel : 1180 avg . 1200 - 1988 . 014 +loc . . 05 +p / l density . 02 +quality . 049 +market adjustment . 05 +_ _ _ _ +. . 183 +less discount and market fee . 02 +_ _ _ _ +. 16 +please call if you have any questions or comments . lisa 3 5901 \ No newline at end of file diff --git a/hw/hw3/data/ham/1624.2000-07-13.farmer.ham.txt b/hw/hw3/data/ham/1624.2000-07-13.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..f9fa5fe5056f6b5c5e059d18070a8361b6166868 --- /dev/null +++ b/hw/hw3/data/ham/1624.2000-07-13.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: data validation +brenda , +we met this afternoon concerning path counts . howard will be validating the +path data we had gathered from unify . please let us know when you will need +this data by . +thanks , +shari +3 - 3859 \ No newline at end of file diff --git a/hw/hw3/data/ham/1706.2000-07-21.farmer.ham.txt b/hw/hw3/data/ham/1706.2000-07-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..cca5a407d5373da0cbc3d0bf4fca43bdcf77dfb4 --- /dev/null +++ b/hw/hw3/data/ham/1706.2000-07-21.farmer.ham.txt @@ -0,0 +1,38 @@ +Subject: re : saudi arabia +i spoke to mr . maldinado this morning and it doesn ' t look good . he claims he +has a connection to the minister of " energy " who will allocate gas to him . i +asked where would the gas be delivered , and he said anywhere you want it . +short term or long term ? again , anything you want , but probably long term is +better . +i pointed out that there isn ' t an energy minister in saudi and would he know +the name of the minister whose giving him the gas ? he stumbled and couldn ' t +remember the name . +finally he said " what do you have to lose ? just send me a letter requesting +gas with the specs , location and duration " and he ' ll do his best to get it . +if you want to try it rob , he ' s all yours . his fax number is 562 / 866 - 7368 , +address 16276 grand avenue , bellflower , ca 90706 . +regards , +samir +rob stewart +07 / 20 / 2000 02 : 47 am +to : samir salama / enron _ development @ enron _ development +cc : +subject : saudi arabia +this sounds right up your street +thanks +- - - - - - - - - - - - - - - - - - - - - - forwarded by rob stewart / enron _ development on +07 / 20 / 2000 02 : 45 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +daren j farmer @ ect +06 / 15 / 2000 03 : 05 pm +to : rob stewart / eu / enron @ enron +cc : +subject : saudi arabia +rob , +i got your name from doug leach . he thought that you would be the person to +talk to about this . +i got a call last night from rudolph maldonado . ( the operator forwarded him +our way . ) he stated that he has some natural gas to sell in saudi arabia . +his number is 562 - 866 - 1755 . could you give him a call and check this out ? i +told him that i would find someone that he could discuss this with . +i can be reached at 3 - 6905 if you have any questions . +daren farmer \ No newline at end of file diff --git a/hw/hw3/data/ham/1716.2000-07-24.farmer.ham.txt b/hw/hw3/data/ham/1716.2000-07-24.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a65a6bfc9b86e4a4798f7afd8caa33cb0a35c0f --- /dev/null +++ b/hw/hw3/data/ham/1716.2000-07-24.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: re : southern +darren : +i zeroed the path on deal 284599 , and left 4 , 500 pathed on 339604 at meter +4132 , and pathed 5 , 000 for both deals 341801 & 341808 at meter 67 for 7 / 24 +only . i also notified betsy boring / southern about the situation and +explained to her that any deal they make on eol cannot be changed in any way , +however we would move the gas for the 24 th only because we ok ' d the change +before we realized it was an eol deal . \ No newline at end of file diff --git a/hw/hw3/data/ham/1790.2000-07-28.farmer.ham.txt b/hw/hw3/data/ham/1790.2000-07-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..ebeba61ba26416e741a8344750ac5dc16fa9d83b --- /dev/null +++ b/hw/hw3/data/ham/1790.2000-07-28.farmer.ham.txt @@ -0,0 +1,31 @@ +Subject: new production - sitara deals needed +daren , +fyi . +bob +- - - - - - - - - - - - - - - - - - - - - - forwarded by robert cotten / hou / ect on 07 / 28 / 2000 01 : 24 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +vance l taylor +07 / 28 / 2000 01 : 24 pm +to : robert cotten / hou / ect @ ect +cc : lisa hesse / hou / ect @ ect , trisha hughes / hou / ect @ ect , heidi +withers / hou / ect @ ect , hillary mack / corp / enron @ enron , susan smith / hou / ect @ ect , +donald p reinhardt / hou / ect @ ect , melissa graves / hou / ect @ ect +subject : new production - sitara deals needed +bob , +the following production is now on - line and a ticket should be created and +entered into sitara based on the following : +counterparty meter volumes price period +hesco gathering oil co 9835 600 mmbtu / d 96 % gas daily less $ 0 . 14 +6 / 10 - 7 / 31 +samson lone star limited 9845 3000 mmbtu / d 100 % gas daily less $ 0 . 10 7 / 21 - +7 / 31 +winn exploration co . , inc . 9847 800 mmbtu / d 100 % gas daily less $ 0 . 13 7 / 25 +- 7 / 31 +( for fuel use less 3 . 35 % of del vols ) +fyi , susan has created and submitted committed reserves firm tickets for the +remaining term of the deal beginning with the month of august . additionally , +these are producer svcs . deals and should be tracked in the im wellhead +portfolio . . . attached to the gathering contract . +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw3/data/ham/1969.2000-08-17.farmer.ham.txt b/hw/hw3/data/ham/1969.2000-08-17.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf90d0dbbdd72ededfabe682e0959ce871432a3b --- /dev/null +++ b/hw/hw3/data/ham/1969.2000-08-17.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: enron / hpl actuals for august 16 , 2000 +teco tap 120 . 000 / hpl iferc ; 20 . 000 / enron +ls hpl lsk ic 20 . 000 / enron \ No newline at end of file diff --git a/hw/hw3/data/ham/1983.2000-08-21.farmer.ham.txt b/hw/hw3/data/ham/1983.2000-08-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..24e3f7b36b4ef00fef1dc659a692d1d6e5264908 --- /dev/null +++ b/hw/hw3/data/ham/1983.2000-08-21.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: hpl nom for august 22 , 2000 +( see attached file : hplo 822 . xls ) +- hplo 822 . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/2048.2000-08-25.farmer.ham.txt b/hw/hw3/data/ham/2048.2000-08-25.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a757b077f8ea653eeec553ccaecd310c4fbd4c2d --- /dev/null +++ b/hw/hw3/data/ham/2048.2000-08-25.farmer.ham.txt @@ -0,0 +1,14 @@ +Subject: revised - - - - - - - kleberg plant outages in september - - - - - cornhusker +correction - - - - - - - the first outage should be from 12 : 00 am to 12 : 00 pm . +- - - - - - - - - - - - - - - - - - - - - - forwarded by mark mccoy / corp / enron on 08 / 25 / 2000 03 : 13 +pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +mark mccoy +08 / 25 / 2000 03 : 08 pm +to : daren j farmer / hou / ect @ ect , pat clynes / corp / enron @ enron , stacey +neuweiler / hou / ect @ ect +cc : +subject : kleberg plant outages in september - - - - - cornhusker +i spoke with michael mazowita / white pine energy , as he said the expected +outages are as follows : +august 31 st - september lst 12 hours 12 : 00 pm to 12 : 00 am no flow +september 25 th - 31 st all days no flow \ No newline at end of file diff --git a/hw/hw3/data/ham/2050.2000-08-28.farmer.ham.txt b/hw/hw3/data/ham/2050.2000-08-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6b99d7f6968e8b48a431abdbd8157bf074be6d4 --- /dev/null +++ b/hw/hw3/data/ham/2050.2000-08-28.farmer.ham.txt @@ -0,0 +1,34 @@ +Subject: weekend notes +here are my notes , please let me know if you have any questions . +weekend of august 26  ) 28 , 2000 +saturday : +? celanese bayport meter 8018 was ramping back up . total nomination of +35 , 000 in mops was pathed  ) transmitted nom to pops and confirmed . +? costilla , meter 9687 was still down 4 , 000 due to wellhead production +losses on friday , expected short into the first of the week , possibly longer , +may need to fish the hole to bring the well back up . +? costilla pilgreen  ) running high h 2 s , causing our valve to shut - in 13 , 000 +mm  , s ( we changed our specs at the valve to accept 8 parts per mil for 30 +minutes last week , per jill zively ) . louis dreyfus was diverting the well to +another pipeline , per the contract that gas has to come to us or be shut - in . +we got the well back on saturday afternoon , and all was well . +? all meters were updated in pops for satuday  , s gas day . +? christy w / pg shell lost two units . +also , seeing meter 1394 which dels to shell back down from 10 , 000 to 5 , 000 . +? patty called re : the epng cuts , found out late afternoon that they are pcc , +pipeline capacity constraints , at the ivalerow meter into pg & e . +? joey stanton with duke called regarding some new production coming up . he +wanted to sell it into hpl at lonestar / katy for sunday and monday . paged +darren , we took the gas , it needs to be priced today . duke let me know that +they would flow at a rate of 25 , 000 / hour , and should average approximately +12 - 15 , 000 for the day . mark mccoy is working on getting a good meter total +from lonestar for sunday , we need to get the deal in sitara and confirm +today ' s gas day as well . +? regarding pg & e , i do not have final cycle 4 numbers ( they come out around +9 pm on the gas day ) . +all in all , it was a pretty good weekend , and an educational one . gas +control did a great job communicating and assisting to resolve issues . +please check all meters impacted to make sure that i pop  , d and mop  , d +correctly . +thank you , +mary jane \ No newline at end of file diff --git a/hw/hw3/data/ham/2088.2000-08-30.farmer.ham.txt b/hw/hw3/data/ham/2088.2000-08-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..2b86b3f1df99408786a8309b0edb1387f1d188ae --- /dev/null +++ b/hw/hw3/data/ham/2088.2000-08-30.farmer.ham.txt @@ -0,0 +1,22 @@ +Subject: done : new sitara desk request ( ref cc # 20000813 ) +carey , +per scott ' s request below the following business unit ( aka : desk id , +portfolio ) was added to global production and unify development , test , +production and stage . please copy to the other global environments . +thanks , +dick , x 3 - 1489 +updated in global production environment gcc code desc : +p ent subenti data _ cd ap data _ desc code _ id +- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - +a sit deskid imcl a ena - im cleburne 9273 +from : scott mills 08 / 30 / 2000 08 : 27 am +to : samuel schott / hou / ect @ ect , richard elwood / hou / ect @ ect , debbie r +brackett / hou / ect @ ect , judy rose / hou / ect @ ect , vanessa +schulte / corp / enron @ enron , david baumbach / hou / ect @ ect , daren j +farmer / hou / ect @ ect , dave nommensen / hou / ect @ ect , donna greif / hou / ect @ ect , +shawna johnson / corp / enron @ enron , russ severson / hou / ect @ ect +cc : +subject : new sitara desk request +this needs to be available in production by early afternoon . sorry for the +short notice . +srm ( x 33548 ) \ No newline at end of file diff --git a/hw/hw3/data/ham/2109.2000-08-31.farmer.ham.txt b/hw/hw3/data/ham/2109.2000-08-31.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d09d641cc7e6479851620a78f8a645a38a527f1 --- /dev/null +++ b/hw/hw3/data/ham/2109.2000-08-31.farmer.ham.txt @@ -0,0 +1,87 @@ +Subject: inactivations +cheryl johnson +08 / 31 / 2000 11 : 14 am +to : camille gerard / corp / enron @ enron , jeremy wong / hou / ect @ ect , bob +bowen / hou / ect @ ect , debbie r brackett / hou / ect @ ect , mary g gosnell / hou / ect @ ect , +larry joe hunter / hou / ect @ ect , kori loibl / hou / ect @ ect , tom e +moore / hou / ect @ ect , john d powell / hou / ect @ ect , brant reves / hou / ect @ ect , +marilyn colbert / hou / ect @ ect , bill d hare / hou / ect @ ect , laurel +adams / hou / ect @ ect , peggy alix / hou / ect @ ect , amelia alland / hou / ect @ ect , lauri a +allen / hou / ect @ ect , bridgette anderson / corp / enron @ enron , beth +apollo / lon / ect @ ect , arfan aziz / lon / ect @ ect , susan bailey / hou / ect @ ect , cyndie +balfour - flanagan / corp / enron @ enron , stacey richardson / hou / ect @ ect , edward d +baughman / hou / ect @ ect , kimberlee a bennick / hou / ect @ ect , lisa berg +carver / hou / ect @ ect , anne bike / corp / enron @ enron , jennifer blay / hou / ect @ ect , +fred boas / hou / ect @ ect , bob bowen / hou / ect @ ect , debbie r brackett / hou / ect @ ect , +linda s bryan / hou / ect @ ect , lesli campbell / hou / ect @ ect , anthony +campos / hou / ect @ ect , sylvia a campos / hou / ect @ ect , nella +cappelletto / cal / ect @ ect , cary m carrabine / hou / ect @ ect , clem +cernosek / hou / ect @ ect , pat clynes / corp / enron @ enron , marilyn +colbert / hou / ect @ ect , brad coleman / hou / ect @ ect , donna consemiu / hou / ect @ ect , +robert cotten / hou / ect @ ect , mike croucher / hou / ect @ ect , romeo +d ' souza / hou / ect @ ect , shonnie daniel / hou / ect @ ect , frank l davis / hou / ect @ ect , +cheryl dawes / cal / ect @ ect , jennifer deboisblanc denny / hou / ect @ ect , rhonda l +denton / hou / ect @ ect , russell diamond / hou / ect @ ect , stacy e dickson / hou / ect @ ect , +bradley diebner / hou / ect @ ect , michael eiben / hou / ect @ ect , susan +elledge / na / enron @ enron , faye ellis / hou / ect @ ect , diane ellstrom / hou / ect @ ect , +veronica espinoza / corp / enron @ enron , enron europe global contracts and +facilities , enron europe global counterparty , daren j farmer / hou / ect @ ect , +jacquelyn farriel / gpgfin / enron @ enron , genia fitzgerald / hou / ect @ ect , irene +flynn / hou / ect @ ect , shawna flynn / hou / ect @ ect , susan flynn / hou / ect @ ect , hoong p +foon / hou / ect @ ect , rebecca ford / hou / ect @ ect , imelda frayre / hou / ect @ ect , +randall l gay / hou / ect @ ect , scotty gilbert / tor / ect @ ect , lisa +gillette / hou / ect @ ect , carolyn gilley / hou / ect @ ect , winston +goodbody / hou / ect @ ect , amita gosalia / lon / ect @ ect , mary g gosnell / hou / ect @ ect , +melissa graves / hou / ect @ ect , andrea r guillen / hou / ect @ ect , david +hardy / lon / ect @ ect , bill d hare / hou / ect @ ect , kenneth m harmon / hou / ect @ ect , +tony harris / hou / ect @ ect , peggy hedstrom / cal / ect @ ect , elizabeth l +hernandez / hou / ect @ ect , brenda f herod / hou / ect @ ect , marlene +hilliard / hou / ect @ ect , liz hillman / corp / enron @ enron , nathan l +hlavaty / hou / ect @ ect , corey hobbs / corp / enron @ enron , jim homco / hou / ect @ ect , +cindy horn / hou / ect @ ect , larry joe hunter / hou / ect @ ect , rahil +jafry / hou / ect @ ect , tana jones / hou / ect @ ect , katherine l kelly / hou / ect @ ect , +nanette kettler / hou / ect @ ect , cheryl dudley / hou / ect @ ect , bob +klein / hou / ect @ ect , troy klussmann / hou / ect @ ect , victor lamadrid / hou / ect @ ect , +karen lambert / hou / ect @ ect , gary w lamphier / hou / ect @ ect , kristian j +lande / hou / ect @ ect , elsie lew / hou / ect @ ect , andrew h lewis / hou / ect @ ect , jim +little / hou / ect @ ect , kori loibl / hou / ect @ ect , melba lozano / hou / ect @ ect , scott f +lytle / hou / ect @ ect , hillary mack / corp / enron @ enron , richard c +mckeel / hou / ect @ ect , chris mendoza / hou / ect @ ect , nidia mendoza / hou / ect @ ect , +carey m metz / hou / ect @ ect , julie meyers / hou / ect @ ect , richard a +miley / hou / ect @ ect , bruce mills / corp / enron @ enron , scott mills / hou / ect @ ect , +glenda d mitchell / hou / ect @ ect , patrice l mims / hou / ect @ ect , jason +moore / hou / ect @ ect , torrey moorer / hou / ect @ ect , jackie morgan / hou / ect @ ect , +michael w morris / hou / ect @ ect , matt motsinger / hou / ect @ ect , gary +nelson / hou / ect @ ect , dale neuner / hou / ect @ ect , tracy ngo / hou / ect @ ect , debbie +nicholls / lon / ect @ ect , john l nowlan / hou / ect @ ect , frank +ortiz / epsc / hou / ect @ ect , b scott palmer / hou / ect @ ect , anita k +patton / hou / ect @ ect , regina perkins / hou / ect @ ect , debra +perlingiere / hou / ect @ ect , richard pinion / hou / ect @ ect , sylvia s +pollan / hou / ect @ ect , brent a price / hou / ect @ ect , cyril price / hou / ect @ ect , joan +quick / hou / ect @ ect , dutch quigley / hou / ect @ ect , leslie reeves / hou / ect @ ect , +donald p reinhardt / hou / ect @ ect , brant reves / hou / ect @ ect , suzy +robey / hou / ect @ ect , bernice rodriguez / hou / ect @ ect , carlos j +rodriguez / hou / ect @ ect , sam round / hou / ect @ ect , marilyn m schoppe / hou / ect @ ect , +samuel schott / hou / ect @ ect , brad schneider / corp / enron @ enron , dianne +seib / cal / ect @ ect , cris sherman / hou / ect @ ect , john sherriff / lon / ect @ ect , james +shirley / hou / ees @ ees , lynn e shivers / hou / ect @ ect , michele small / lon / ect @ ect , +mary m smith / hou / ect @ ect , susan smith / hou / ect @ ect , mary +solmonson / hou / ect @ ect , jefferson d sorenson / hou / ect @ ect , carrie +southard / hou / ect @ ect , mechelle stevens / hou / ect @ ect , willie +stewart / hou / ect @ ect , geoff storey / hou / ect @ ect , colleen sullivan / hou / ect @ ect , +john suttle / hou / ect @ ect , connie sutton / hou / ect @ ect , tara +sweitzer / hou / ect @ ect , dianne j swiber / hou / ect @ ect , neal symms / hou / ect @ ect , +vance l taylor / hou / ect @ ect , edward terry / hou / ect @ ect , kim s +theriot / hou / ect @ ect , sheri thomas / hou / ect @ ect , veronica +thompson / gpgfin / enron @ enron , mark d thorne / hou / ect @ ect , philippe +travis / lon / ect @ ect , susan d trevino / hou / ect @ ect , laura +vargas / corp / enron @ enron , claire viejou / lon / ect @ ect , elsa +villarreal / hou / ect @ ect , robert walker / hou / ect @ ect , george +weissman / hou / ect @ ect , chris wiebe / cal / ect @ ect , sony wilson / hou / ect @ ect , +o ' neal d winfree / hou / ect @ ect , christa winfrey / hou / ect @ ect , rita +wynne / hou / ect @ ect +cc : +subject : inactivations +reminder : +records on the august 2000 name change / merger notification report will be +inactivated tomorrow afternoon 9 / 01 . \ No newline at end of file diff --git a/hw/hw3/data/ham/2193.2000-09-08.farmer.ham.txt b/hw/hw3/data/ham/2193.2000-09-08.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d59e08c0d21f67342892dc344a19b16973519cf8 --- /dev/null +++ b/hw/hw3/data/ham/2193.2000-09-08.farmer.ham.txt @@ -0,0 +1,9 @@ +Subject: weekend noms +- - - - - - - - - - - - - - - - - - - - - - forwarded by ami chokshi / corp / enron on 09 / 08 / 2000 +09 : 46 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +royal _ b _ edmondson @ reliantenergy . com on 09 / 07 / 2000 02 : 50 : 28 pm +to : ami _ chokshi @ enron . com +cc : +subject : weekend noms +( see attached file : hpl - sept . xls ) +- hpl - sept . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/2216.2000-09-12.farmer.ham.txt b/hw/hw3/data/ham/2216.2000-09-12.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..4caf1839f9cf52b4420ab295489ad65204ae2ea0 --- /dev/null +++ b/hw/hw3/data/ham/2216.2000-09-12.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: re : sitara training +i ' ll switch with tom , that way , i can still make my appointment and it won ' t +be all guys in the next class ( you know how rowdy they get ) . +mary \ No newline at end of file diff --git a/hw/hw3/data/ham/2252.2000-09-15.farmer.ham.txt b/hw/hw3/data/ham/2252.2000-09-15.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..57717b2c7ab09543ea1545f4a81ef42de01cbc7c --- /dev/null +++ b/hw/hw3/data/ham/2252.2000-09-15.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: enron / hpl actuals for sept . 14 , 2000 from txu electric +teco tap 25 , 000 enron / 112 . 500 hpl gas daily +hpl katy 15 , 000 enron \ No newline at end of file diff --git a/hw/hw3/data/ham/2264.2000-09-18.farmer.ham.txt b/hw/hw3/data/ham/2264.2000-09-18.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..0910248ddda750d93f899c102756a9534e65bd30 --- /dev/null +++ b/hw/hw3/data/ham/2264.2000-09-18.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: revision # 1 - enron / hpl actuals for sept . 15 - 17 , 2000 +sept 17 , 2000 +teco tap 51 . 667 / hpl gas daily ; 25 . 000 / enron +ls hpl lsk ic 15 . 000 / enron +sept . 18 , 2000 +teco tap 31 . 625 / enron +sept . 19 , 2000 +no flow +- - - - - - - - - - - - - - - - - - - - - - forwarded by melissa jones / texas utilities on +09 / 18 / 2000 +02 : 21 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +melissa jones +09 / 18 / 2000 02 : 03 pm +to : charlie stone / texas utilities @ tu , gary green / texas utilities @ tu , +daren . j . farmer @ enron . com , gary . a . hanks @ enron . com , +carlos . j . rodriguez @ enron . com , earl . tisdale @ enron . com , +ami . chokshi @ enron . com +cc : +subject : enron / hpl actuals for sept . 15 - 17 , 2000 +sept . 17 , 2000 +teco tap 61 . 667 / hpl gas daily ; 25 . 000 / enron +ls hpl lsk ic 15 . 000 / enron +sept . 18 , 2000 +teco tap 31 . 625 / enron +sept . 19 , 2000 +no flow \ No newline at end of file diff --git a/hw/hw3/data/ham/2317.2000-09-22.farmer.ham.txt b/hw/hw3/data/ham/2317.2000-09-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a8c2a998ce6cbb415f8030d7da0d54c437012e5 --- /dev/null +++ b/hw/hw3/data/ham/2317.2000-09-22.farmer.ham.txt @@ -0,0 +1,22 @@ +Subject: revised : eastrans nomination change effective 9 / 23 / 00 +please disregard the memo below and continue to keep eastrans deliveries at +zero ( 0 ) until further notified . +- - - - - - - - - - - - - - - - - - - - - - forwarded by marta k henderson / houston / pefs / pec on +09 / 22 / 2000 02 : 40 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +marta k henderson +09 / 22 / 2000 09 : 00 am +to : darrel f . bane / easttexas / pefs / pec @ pec , john a . bretz / gcs / cec / pec @ pec , +chad w . cass / gcs / cec / pec @ pec , michael r . +cherry / easttexas / pefs / pec @ pec , william e . speckels / gcs / cec / pec @ pec , +donna c . spencer / gcs / cec / pec @ pec , julia a . urbanek / gcs / cec / pec @ pec , +briley @ enron . com , dfarmer @ enron . com , carlos . j . rodriguez @ enron . com , +sharon beemer / ftworth / pefs / pec @ pec , connie +wester / easttexas / pefs / pec @ pec , ronald c . douglas / gcs / cec / pec @ pec , +daniel c rider / houston / pefs / pec @ pec +cc : +subject : eastrans nomination change effective 9 / 23 / 00 +please increase deliveries into eastrans to 30 , 000 mmbtu / dy effective +9 / 23 / 00 and continue until further notified . +the redeliveries will be : +7400 from fuels cotton valley +22600 to pg & e \ No newline at end of file diff --git a/hw/hw3/data/ham/2444.2000-10-04.farmer.ham.txt b/hw/hw3/data/ham/2444.2000-10-04.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d26a14734e6ed153440824bad62716fe8d1b1956 --- /dev/null +++ b/hw/hw3/data/ham/2444.2000-10-04.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: enron / hpl acutals for october 3 , 2000 +teco tap 60 . 000 / enron ; 68 . 333 / hpl iferc +ls hpl lsk ic 15 . 000 / hpl iferc \ No newline at end of file diff --git a/hw/hw3/data/ham/2546.2000-10-16.farmer.ham.txt b/hw/hw3/data/ham/2546.2000-10-16.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1539732d4938bc3de5969c2efbe472993e81b11d --- /dev/null +++ b/hw/hw3/data/ham/2546.2000-10-16.farmer.ham.txt @@ -0,0 +1,49 @@ +Subject: re : rate for tenaska deal +daaah ! +sorry ! +daren j farmer +10 / 16 / 2000 05 : 57 pm +to : sandi m braband / hou / ect @ ect +cc : +subject : re : rate for tenaska deal +consumer price index +from : sandi m braband on 10 / 16 / 2000 12 : 14 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : re : rate for tenaska deal +daren , +thanks - - while i ' m certain i should know , i must confess that i do not know +what cpi stands for ? ? ? +sandi +daren j farmer +10 / 16 / 2000 11 : 39 am +to : sandi m braband / hou / ect @ ect , bob m hall / na / enron @ enron +cc : +subject : re : rate for tenaska deal +sandi , +sorry for just now getting back with you . i was out last week . +the rate ( $ . 04 / mmbtu ) will be charged on the greater of the volumes nominated +on the supply contracts or the actual deliveries to the plant . the fee will +be adjusted yearly based on cpi . +bob - i could not remember if we stated the type of settlement on the +delivered volumes ( actuals or nominations ) . i think we should use actuals +due to possibility that the plant could over pull with out our knowledge on a +daily basis . we would receive the estimates / actuals on a lag and may have to +purchase gas to offset the imbalance , even though the plant kept the noms at +the 45 , 000 base . i also think that if the plant does increase the nom , they +are more likely to pull the additional volume rather than pulling less . do +you agree with this ? +d +from : sandi m braband on 10 / 10 / 2000 03 : 41 pm +to : daren j farmer / hou / ect @ ect +cc : +subject : rate for tenaska deal +daren , +when we met regarding the rate for the tenaska gas management agreement , you +guys mentioned that it would be tied to an index - - could you restate for me +how that is to work - - it will start out 4 cents per mmbtu based on the greater +of the volumes nominated through the supply contracts or the actual +deliveries to the plant . then the fee will vary month to month ? year to year ? +based on what index ? +thanks , +sandi \ No newline at end of file diff --git a/hw/hw3/data/ham/2593.2000-10-19.farmer.ham.txt b/hw/hw3/data/ham/2593.2000-10-19.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..e15e49f2487529bc40416d913e61e6f3a11524c3 --- /dev/null +++ b/hw/hw3/data/ham/2593.2000-10-19.farmer.ham.txt @@ -0,0 +1,13 @@ +Subject: additional recruiting +i ' m happy to introduce molly magee as the newest addition to the eops +recruiting team . toni and molly have divided their recruiting duties +along separate job functions . please review the information below and +direct your staffing requests to either toni or molly depending on your job +needs . +toni graham - accounting , risk and confirmation / settlements positions ( or +openings requiring a similar skill set of this candidate pool ) +molly magee - logistics , global data management , research , legal , competitive +analysis , contract administration and other positions ( or openings requiring +a similar skill set of this candidate pool ) +thanks for your assistance , +hgm \ No newline at end of file diff --git a/hw/hw3/data/ham/2678.2000-10-27.farmer.ham.txt b/hw/hw3/data/ham/2678.2000-10-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7b0edb6f2f199c0e6985e4b0b54e09583da26ba4 --- /dev/null +++ b/hw/hw3/data/ham/2678.2000-10-27.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: neon discussion november 1 +here ' s material for this upcoming week . +? +bobby +- neon roaring 3 . doc \ No newline at end of file diff --git a/hw/hw3/data/ham/2738.2000-11-01.farmer.ham.txt b/hw/hw3/data/ham/2738.2000-11-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..2ff9c0be4f11984b563bb1de55d6b47e546f6a04 --- /dev/null +++ b/hw/hw3/data/ham/2738.2000-11-01.farmer.ham.txt @@ -0,0 +1,37 @@ +Subject: re : another hesco issue +help . steve mauch at hesco is wanting an answer asap +- - - - - - - - - - - - - - - - - - - - - - forwarded by charlene richmond / hou / ect on 11 / 01 / 2000 +03 : 29 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +vance l taylor +11 / 01 / 2000 02 : 45 pm +to : charlene richmond / hou / ect @ ect +cc : julie meyers / hou / ect @ ect +subject : re : another hesco issue +charlene , +this gas purchase is not a part of the wellhead portfolio but is being traded +on the texas desk . i would suggest you get with darren farmer or someone on +the desk . +sorry i could not be of more assistance ! +vlt +x 3 - 6353 +charlene richmond +11 / 01 / 2000 08 : 22 am +to : julie meyers / hou / ect @ ect , vance l taylor / hou / ect @ ect +cc : +subject : another hesco issue +meter 986725 for march 2000 . per hesco both traders are gone at ( hesco and +enron ) and they ( hesco ) were not paid the correct price in march on the +days mentioned below . hesco cannot find where the price for these days were +recorded . per hesco they were underpaid by $ 32 , 101 . 57 . hesco is wanting to +come to our office to have a meeting about clearing this up . it will be nice +if we don ' t have to meet with them . +production dates are volume price they are +looking for +03 / 12 +2 , 029 2 . 65 +03 / 13 +2 , 009 2 . 65 +03 / 15 +2 , 022 2 . 71 +03 / 16 +1 , 976 2 . 72 \ No newline at end of file diff --git a/hw/hw3/data/ham/2848.2000-11-14.farmer.ham.txt b/hw/hw3/data/ham/2848.2000-11-14.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..64d632de7708b6ff6c789b5928fe5aa18bb164fc --- /dev/null +++ b/hw/hw3/data/ham/2848.2000-11-14.farmer.ham.txt @@ -0,0 +1,38 @@ +Subject: re : beaumont methanol - meter 1428 - october 2000 +i ' m think i left out a detail - the 54 , 000 mmbtu for the three days oct 21 to +23 to beaumont methanol needs to be all priced at the base deal , not on the +swing ticket . +from : lee l papayoti on 11 / 14 / 2000 03 : 45 pm +to : anita luong / hou / ect @ ect , buddy majorwitz / hou / ect @ ect , daren j +farmer / hou / ect @ ect +cc : gary a hanks / hou / ect @ ect , james mckay / hou / ect @ ect +subject : beaumont methanol - meter 1428 - october 2000 +ladies and gents : +on sat oct 21 , hpl meter # 1428 had a malfunction , and started flowing at a +very high rate , way over the nominated rate of 18 , 000 / d ( gas control will +confirm this ) . +since sat - sun - mon are all one gas day from a gas daily perspective , i told +gas control to try to balance on sun after the meter was fixed , by cutting +back to a lower flow rate . +so we will need to do a special allocation for the three days october 21 - +23 , saturday through monday . the three day total for the meter is 59 , 067 +mmbtu . beaumont methanol nominated 54 , 000 mmbtu ( i . e . 18 , 000 / d for 3 +days ) . we should allocate a total of 54 , 000 mmbtu to beaumont methanol for +the three days , and the 5 , 067 mmbtu excess will be purchased by brandywine - +under sitara # 484934 priced at gas daily hsc midpoint . +please call with questions . +thanks +lee +3 . 5923 +- - - - - - - - - - - - - - - - - - - - - - forwarded by lee l papayoti / hou / ect on 11 / 13 / 2000 +04 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - - +from : buddy majorwitz 11 / 13 / 2000 03 : 53 pm +to : lee l papayoti / hou / ect @ ect +cc : +subject : beaumont methanol - meter 1428 - october 2000 +lee , +here is the volume allocation as supplied by anita luong and my calculation +worksheet for the captioned meter . +give me a call if you have any questions . +buddy +x - 31933 \ No newline at end of file diff --git a/hw/hw3/data/ham/2882.2000-11-17.farmer.ham.txt b/hw/hw3/data/ham/2882.2000-11-17.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a96e187e484fa40753afc19984d9fa433ad29794 --- /dev/null +++ b/hw/hw3/data/ham/2882.2000-11-17.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: same day change - revision # 1 - txu fuel trans k # 501 - november +17 , 2000 +( see attached file : hplnl 117 . xls ) +- hplnl 117 . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/2924.2000-11-22.farmer.ham.txt b/hw/hw3/data/ham/2924.2000-11-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..d60729a1d5afb56cfa7b28dfe7223b4a01b8cf57 --- /dev/null +++ b/hw/hw3/data/ham/2924.2000-11-22.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: enron / hpl actuals november 21 , 2000 +teco tap 30 . 000 / enron ; 50 . 000 / hpl gas daily \ No newline at end of file diff --git a/hw/hw3/data/ham/2934.2000-11-27.farmer.ham.txt b/hw/hw3/data/ham/2934.2000-11-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e8e45f7a6413488b34fe2bfe6a77660e7dca40c --- /dev/null +++ b/hw/hw3/data/ham/2934.2000-11-27.farmer.ham.txt @@ -0,0 +1,13 @@ +Subject: revised avails for 12 / 00 as noted +revisions for 12 / 01 +bev +- - - - - - - - - - - - - - - - - - - - - - forwarded by beverly beaty / hou / ect on 11 / 27 / 2000 10 : 38 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +enron capital & trade resources corp . +from : " victor haley " +11 / 27 / 2000 11 : 35 am +to : +cc : +subject : revised avails for 12 / 00 as noted +revised avails for 12 / 00 as noted +- enronavailsl 200 pools . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/2943.2000-11-27.farmer.ham.txt b/hw/hw3/data/ham/2943.2000-11-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a2945f5266345d399bc69eae3d1a023d548147dd --- /dev/null +++ b/hw/hw3/data/ham/2943.2000-11-27.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: revision # 1 - hpl nominations for nov . 27 , 2000 and nov . 28 , 2000 +( see attached file : hplnl 123 . xls ) ( see attached file : hplnl 128 . xls ) +- hplnl 123 . xls +- hplnl 128 . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/2997.2000-12-04.farmer.ham.txt b/hw/hw3/data/ham/2997.2000-12-04.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..75acf1366d753cbc6ec650678c17b155f2b981c7 --- /dev/null +++ b/hw/hw3/data/ham/2997.2000-12-04.farmer.ham.txt @@ -0,0 +1,29 @@ +Subject: ces deal clean - up +i will need to make these changes in sitara . on some of these deals it will +require me to go in and copy the ticket to a new ticket to move december 2000 +forward . these changes will be made this afternoon . if you have questions +or concerns please call met at x 3 - 3048 . +- - - - - - - - - - - - - - - - - - - - - - forwarded by elizabeth l hernandez / hou / ect on +12 / 05 / 2000 07 : 50 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +cyndie balfour - flanagan @ enron +12 / 04 / 2000 05 : 21 pm +to : elizabeth l hernandez / hou / ect @ ect +cc : jeffrey c gossett / hou / ect @ ect , linda s bryan / hou / ect @ ect +subject : ces deal clean - up +listed below are deals for which we have rec ' d consent to assignment , but are +still showing in sitara as ces deals . please make the necessary changes . +cp name ( as showing in sitara ) ' new ' cp name deal # date consent executed +ces - entergy new orleans , inc entergy new orleans , inc 140327 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140330 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140332 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140334 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140336 08 / 09 / 00 +ces - entergy new orleans , inc entergy new orleans , inc 140337 08 / 09 / 00 +ces - flash gas & oil southwest inc . flash gas & oil southwest inc . 263609 +08 / 03 / 00 +ces - hunt , lydia hunt , lydia 263650 09 / 06 / 00 +ces - james e . brummage james e . brummage 220339 05 / 05 / 00 +ces - lakeland , city of lakeland , city of 142035 08 / 07 / 00 +ces - lakeland , city of lakeland , city of 142036 08 / 07 / 00 +ces - lakeland , city of lakeland , city of 142037 08 / 07 / 00 +ces - ochs bros . ochs bros . 229857 05 / 19 / 00 \ No newline at end of file diff --git a/hw/hw3/data/ham/3028.2000-12-05.farmer.ham.txt b/hw/hw3/data/ham/3028.2000-12-05.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..52d86f5153833b218c1c84d1da957efd7ef1af6d --- /dev/null +++ b/hw/hw3/data/ham/3028.2000-12-05.farmer.ham.txt @@ -0,0 +1,14 @@ +Subject: re : meter 1428 +we should check with gas control as to why gas is flowing at all and / or +whether this is a valid reading . . . . +gary / james - let us know +thanks +lee +aimee lannou 12 / 05 / 2000 11 : 09 am +to : daren j farmer / hou / ect @ ect +cc : lee l papayoti / hou / ect @ ect +subject : meter 1428 +daren - meter 1428 , beaumont methanol is shut - in for december . there has +been flow of 69 and 65 on days 2 and 3 . should a swing ticket be put at the +meter ? the last swing deal was 451907 for 11 / 00 . thanks . +aimee \ No newline at end of file diff --git a/hw/hw3/data/ham/3058.2000-12-11.farmer.ham.txt b/hw/hw3/data/ham/3058.2000-12-11.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..708d5cf1befd31f182736fd4a50f178c49833d97 --- /dev/null +++ b/hw/hw3/data/ham/3058.2000-12-11.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: invitation to dinner +music can be started by clicking on the sound icon . +to stop music , right click and end show : ) heather \ No newline at end of file diff --git a/hw/hw3/data/ham/3109.2000-12-15.farmer.ham.txt b/hw/hw3/data/ham/3109.2000-12-15.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..3a024b4b11bdb66048c1544267f21f92228eeea7 --- /dev/null +++ b/hw/hw3/data/ham/3109.2000-12-15.farmer.ham.txt @@ -0,0 +1,71 @@ +Subject: re : enerfin meter 980439 for 10 / 00 +jackie , talk to darren about this . the deal you reference is an hpl deal with +dynegy and i don ' t have access to it . i ' m on the east desk . yesterday i +extended the deal 421415 for the 6 th and 19 th and meredith inserted a path in +unify - tetco to cover the small overflow volume between hpl and ena . the +ena / hpl piece is done . the piece between hpl and dynegy is what you need +inserted . thanks +jackie young +12 / 15 / 2000 11 : 32 am +to : sherlyn schumack / hou / ect @ ect +cc : victor lamadrid / hou / ect @ ect +subject : re : enerfin meter 980439 for 10 / 00 +sherlyn , i ' ve placed the correct volumes for days 6 and 9 for ena . i ' ll have +the deal extended for dynegy and let you know when it ' s done . +victor , can you extend the deal 422516 for days 6 and 9 please ? thanks . oh +and by the way , i had mistaken you for someone else when i sent you the +e - mail on yesterday . sorry . i thought that i knew you . anyway , please +advise when you ' ve extended the deal so that sherlyn can create an accounting +arrangement . +thanks +- jackie - +3 - 9497 +to : jackie young / hou / ect @ ect +cc : rita wynne / hou / ect @ ect +subject : re : enerfin meter 980439 for 10 / 00 +i don ' t want to tell you to add any contracts , because i am not sure about +that . i am just saying if you look at ray ' s schedule there are 2 deals out +there , one is a purchase from ena and the other a purchase from dynegy . the +track id i gave you was for ena . you cannot allocate the dynegy piece +until i give you a track id . i cannot give you a track id until the deal is +extended for days 10 / 6 and 10 / 19 . +jackie young +12 / 15 / 2000 10 : 51 am +to : sherlyn schumack / hou / ect @ ect +cc : +subject : re : enerfin meter 980439 for 10 / 00 +arre you saying that for both days that two ( 2 ) ena contracts should be +placed at the meter for days 6 and 19 and then allocating half of the the +total volume to each contract ? +to : jackie young / hou / ect @ ect +cc : rita wynne / hou / ect @ ect +subject : re : enerfin meter 980439 for 10 / 00 +jackie , +you did not allocate this according to ray ' s schedule . the track id i gave +you was only for the purchase from ena . you need to extend the deal for the +purchase from dynegy . you put all of the volume on these 2 days on ena , +that is not what is on ray ' s schedule , so we are still out on the +interconnect report . +jackie young +12 / 15 / 2000 10 : 30 am +to : sherlyn schumack / hou / ect @ ect +cc : alfonso trabulsi / hou / ect @ ect , rita wynne / hou / ect @ ect , gregg +lenart / hou / ect @ ect +subject : re : enerfin meter 980439 for 10 / 00 +accounting arrangement has been placed . meter has been reallocated . +thanks and let me know if you need anything else . +- jackie - +3 - 9497 +from : sherlyn schumack 12 / 15 / 2000 10 : 00 am +to : jackie young / hou / ect @ ect , alfonso trabulsi / hou / ect @ ect +cc : rita wynne / hou / ect @ ect , gregg lenart / hou / ect @ ect +subject : enerfin meter 980439 for 10 / 00 +jackie , +your allocation is correct with the exception of days 10 / 6 and 10 / 19 where +strangers gas is allocated . i have created an accounting arrangement for +these days and the new track id for ena is 240384 . please allocate the ena +portion according to rays schedule for these 2 days . deal 422516 ( purchase +from dynegy ) needs to be extended for these 2 days so i can do an accounting +arrangement . alfonso i need for you to allocate your meter daily , because +we have tiered pricing this month . +thanks . \ No newline at end of file diff --git a/hw/hw3/data/ham/3138.2000-12-19.farmer.ham.txt b/hw/hw3/data/ham/3138.2000-12-19.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c726922c57926d5a6734d44ec8557340c263a4a1 --- /dev/null +++ b/hw/hw3/data/ham/3138.2000-12-19.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: enron / hpl nom for december 20 , 2000 +( see attached file : hplnl 220 . xls ) +- hplnl 220 . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/3177.2000-12-21.farmer.ham.txt b/hw/hw3/data/ham/3177.2000-12-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8307ce281d9ddb23b8fcce7c6a3a637fc4b1a011 --- /dev/null +++ b/hw/hw3/data/ham/3177.2000-12-21.farmer.ham.txt @@ -0,0 +1,13 @@ +Subject: january 2001 - mcnic / lyondell noms . +fyi ! +- - - - - - - - - - - - - - - - - - - - - - forwarded by aimee lannou / hou / ect on 12 / 21 / 2000 11 : 02 +am - - - - - - - - - - - - - - - - - - - - - - - - - - - +" kevin olson " on 12 / 18 / 2000 12 : 19 : 44 pm +to : " amy lannou " +cc : " janice berke - davis " +subject : january 2001 - mcnic / lyondell noms . +amy , +please note that the mcnic noms for january , 2001 into the lyondell +channelview plant via hpl will be 10 , 000 mmbtu / day . +please call should you have any questions . +thanks ! \ No newline at end of file diff --git a/hw/hw3/data/ham/3282.2001-01-08.farmer.ham.txt b/hw/hw3/data/ham/3282.2001-01-08.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..dd7c3f5649d760925928f10a29edb6ea954a8d55 --- /dev/null +++ b/hw/hw3/data/ham/3282.2001-01-08.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: revised spreadsheet +new additions . \ No newline at end of file diff --git a/hw/hw3/data/ham/3285.2001-01-09.farmer.ham.txt b/hw/hw3/data/ham/3285.2001-01-09.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7246ceae3e1e433e0d03b242833dd62e82cb7f66 --- /dev/null +++ b/hw/hw3/data/ham/3285.2001-01-09.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: dec 00 +daren - meter 5192 flowed 8 dth on 12 / 19 , 33 dth on 12 / 20 and 2 dth on +12 / 29 . the last deal for this meter was 454057 in nov 00 . could you please +extend this deal for these 3 days or create a new one ? please let me know . +al \ No newline at end of file diff --git a/hw/hw3/data/ham/3396.2001-01-22.farmer.ham.txt b/hw/hw3/data/ham/3396.2001-01-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..4a2c47b9e23951e0f43082d1644dffa1a59e9981 --- /dev/null +++ b/hw/hw3/data/ham/3396.2001-01-22.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: enron net works - t & e policy +please review the attached t & e policy for enron net works . \ No newline at end of file diff --git a/hw/hw3/data/ham/3403.2001-01-23.farmer.ham.txt b/hw/hw3/data/ham/3403.2001-01-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..9b457cc001328e60fea57e6f21da81b84f468450 --- /dev/null +++ b/hw/hw3/data/ham/3403.2001-01-23.farmer.ham.txt @@ -0,0 +1,11 @@ +Subject: february wellhead production estimate +bob , +please see the attached file estimating wellhead production for the month of +february . please be advised that this is a preliminary estimate as to this +date , we have received one nom for february . i will update you with any +revisions as they occur . +i ' ll be out of the office on tomorrow ; however , i will return to the office +on thursday . +thanks , +vlt +x 3 - 6353 \ No newline at end of file diff --git a/hw/hw3/data/ham/3437.2001-01-25.farmer.ham.txt b/hw/hw3/data/ham/3437.2001-01-25.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..5b76ad61ac8c528d8a0802c63de4ccfeebe0b7dd --- /dev/null +++ b/hw/hw3/data/ham/3437.2001-01-25.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: calpine daily gas nomination +> > +ricky a . archer +fuel supply +700 louisiana , suite 2700 +houston , texas 77002 +713 - 830 - 8659 direct +713 - 830 - 8722 fax +- calpine daily gas nomination 1 . doc +- calpine monthly gas nomination _ _ _ . doc \ No newline at end of file diff --git a/hw/hw3/data/ham/3480.2001-01-30.farmer.ham.txt b/hw/hw3/data/ham/3480.2001-01-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a1513ab5b60e32e93c736d1c354f5dd0544ef58 --- /dev/null +++ b/hw/hw3/data/ham/3480.2001-01-30.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: enron / hpl actuals for january 29 , 2001 +teco tap 28 . 333 / enron \ No newline at end of file diff --git a/hw/hw3/data/ham/3578.2001-02-14.farmer.ham.txt b/hw/hw3/data/ham/3578.2001-02-14.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..8292d279fbc7db1f34bd9afc924dc98d1373d703 --- /dev/null +++ b/hw/hw3/data/ham/3578.2001-02-14.farmer.ham.txt @@ -0,0 +1,7 @@ +Subject: meter 5097 +daren , +do you know if there should be a deal in place for midcoast on this meter for +january ? currently , it only shows ena . i understand that a deal was added +in december for midcoast , but that deal was only good for dec . +thanks . +mike \ No newline at end of file diff --git a/hw/hw3/data/ham/3626.2001-02-21.farmer.ham.txt b/hw/hw3/data/ham/3626.2001-02-21.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c1788423e4ad892bf86896c47196ad85c1f2a96b --- /dev/null +++ b/hw/hw3/data/ham/3626.2001-02-21.farmer.ham.txt @@ -0,0 +1,28 @@ +Subject: harassment avoidance - clarification +* * clarification * * +harassment prevention training +this training is mandatory for all enron employees employed since the last +seminar was conducted in late 1998 or early 1999 . those who have already +attended enron harassment avoidance training will be offered a refresher +course in avoiding and preventing harassment . +to contribute our personal best at enron , our conduct must promote respectful +and co - operative work relationships . workplace harassment conflicts with +enron ' s vision and values and violates company policy . harassment also can +violate federal and state laws . by understanding what harassment is and its +potential harm , we can prevent it in our workplace . +during this training you will : +be able to recognize harassment +learn to take precautions against being harassed +learn to avoid being considered a harasser +know how to address a situation involving harassment +learn how harassment prevention is consistent with enron values +please click here ( ) to sign up for the session of your choice . if you +have problems registering or have any questions , please call 713 853 - 0357 . +we are pleased to announce that all employees of ews and ees will receive +harassment prevention training . +the dates and times available for the sessions are : +friday , feb 23 ; 1 : 00 - 2 : 30 ; 2 : 45 - 4 : 15 +monday mar 5 ; 1 : 00 - 2 : 30 ; 2 : 45 - 4 : 15 ; 4 : 30 - 6 : 00 +all training sessions will be held in the lasalle room at the doubletree +hotel . +there is a $ 50 charge for each attendee in the training session . \ No newline at end of file diff --git a/hw/hw3/data/ham/3701.2001-03-02.farmer.ham.txt b/hw/hw3/data/ham/3701.2001-03-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..ab8f4dec503c1e9642097d9c4427b011499aeb3d --- /dev/null +++ b/hw/hw3/data/ham/3701.2001-03-02.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: meter 1031 baytown exxon +daren - the valve for meter 1031 was not shut off in time on 3 / 1 . it flowed +about 1 . 200 . could you please extend the deal for one day ( deal 589188 ) ? +thanks . +al \ No newline at end of file diff --git a/hw/hw3/data/ham/3716.2001-03-06.farmer.ham.txt b/hw/hw3/data/ham/3716.2001-03-06.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..f88dddf6f31f6935967fe3ff5346ed4fce2d88ad --- /dev/null +++ b/hw/hw3/data/ham/3716.2001-03-06.farmer.ham.txt @@ -0,0 +1,7 @@ +Subject: tenaska iv feb 2001 +we do not have a demand fee for the feb 2001 tenaska iv sale , deal 384258 . +can you please put this in so i can bill ? from your spreadsheet , it looks +like it needs to be $ 2 , 291 , 888 . 83 , but you can verify . i subtracted the +agency fee from the tenaska iv receipt number , since we already have that +booked . +megan \ No newline at end of file diff --git a/hw/hw3/data/ham/3939.2001-03-22.farmer.ham.txt b/hw/hw3/data/ham/3939.2001-03-22.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..16b7648422870a74bd163052cfccc0c1f6d162be --- /dev/null +++ b/hw/hw3/data/ham/3939.2001-03-22.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: hpl nom for march 22 , 2001 +( see attached file : hplno 323 . xls ) +- hplno 323 . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/3967.2001-03-23.farmer.ham.txt b/hw/hw3/data/ham/3967.2001-03-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..88e2361171c67262bac35c728d87cbe145313416 --- /dev/null +++ b/hw/hw3/data/ham/3967.2001-03-23.farmer.ham.txt @@ -0,0 +1,3 @@ +Subject: hpl nom for march 24 - 26 , 2001 +( see attached file : hplno 324 . xls ) +- hplno 324 . xls \ No newline at end of file diff --git a/hw/hw3/data/ham/3989.2001-03-23.farmer.ham.txt b/hw/hw3/data/ham/3989.2001-03-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..dfab92d7622fe525ff72bc1432b97b5b462ccd7a --- /dev/null +++ b/hw/hw3/data/ham/3989.2001-03-23.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: calpine daily gas nomination +still under our scheduled maintenance outage , calpine will run the plant +baseload testing the a unit using an estimated volume of 88 , 000 mmbtu / day . +unit c will go off at midnight saturday . the estimate for sunday and monday +will be around 65 , 000 mmbtu / day . please call if you have any questions . +thanks . +> +- calpine daily gas nomination 1 . doc \ No newline at end of file diff --git a/hw/hw3/data/ham/3999.2001-03-26.farmer.ham.txt b/hw/hw3/data/ham/3999.2001-03-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..27287982b1cfce6a196be42d580b30c8ed95f18a --- /dev/null +++ b/hw/hw3/data/ham/3999.2001-03-26.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: dear owner +as of the 4 th april 2001 we will be changing our bank from lloyds tsb to +citibank . +sunsail worldwide sailing limited +citibank . n . a +the strand +london +if you have any problems receiving your monthly or quarterly payments , please +do not hesitate to contact me . +with kind regards +jo hillier - smith +owner care manager +sunsail worldwide sailing ltd +tel : + 44 ( 0 ) 2392 222215 +email : joh @ sunsail . com +this e - mail and any attachment is intended for the named addressee ( s ) +only , or a person authorised to receive it on their behalf . the content +should be treated as confidential and the recipient may not disclose this +message or any attachment to anyone else without authorisation . unauthorised +use , copying or disclosure may be unlawful . if this transmission is received +in error please notify the sender immediately and delete this message from +your e - mail system . any view expressed by the sender of this message or any +attachment may be personal and may not represent the view held by the company . +sunsail limited ( company number 1239190 ) or sunsail worldwide sailing +limited ( company number 1658245 ) ? both with registered offices at the port +house , port solent , portsmouth , hampshire , po 6 4 th , england \ No newline at end of file diff --git a/hw/hw3/data/ham/4017.2001-03-26.farmer.ham.txt b/hw/hw3/data/ham/4017.2001-03-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c5720892c503645f0bf7caa8d48dc85529f43151 --- /dev/null +++ b/hw/hw3/data/ham/4017.2001-03-26.farmer.ham.txt @@ -0,0 +1,26 @@ +Subject: april nominations at shell deer park +- - - - - - - - - - - - - - - - - - - - - - forwarded by gary w lamphier / hou / ect on 03 / 26 / 2001 +09 : 10 am - - - - - - - - - - - - - - - - - - - - - - - - - - - +" shankster jl ( luther ) " on 03 / 24 / 2001 10 : 26 : 11 pm +to : " lamphier , gary " +cc : " carter , john " , " oppio , janet " +, " ricks , ruth " +subject : april nominations at shell deer park +gary , +april 2001 nominations for gas delivery to shell deer park are as follows : +firm baseload - 60 , 000 mmbtu / d +spot swing supply - 0 ( zero ) +delivery of the above contract quantities is expected to be as follows : +hpl - hp hpl - e hpl - s +firm 35 , 000 mmbtu / d 25 , 000 mmbtu / d - 0 - mmbtu / d +refinery turnaround activity started in january has been completed . chemical +plant turnaround work is scheduled to begin in april and conclude in may . +please note the zero nomination for the hpl - s station during the olefin +turnaround . +please let me know if you have any questions +j . luther shankster +energy & utilities planning +> phone : 713 / 277 - 9307 +> fax : 713 / 277 - 9941 +> e - mail : jlshankster @ equiva . com +> \ No newline at end of file diff --git a/hw/hw3/data/ham/4072.2001-03-28.farmer.ham.txt b/hw/hw3/data/ham/4072.2001-03-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..c364252b1e70988ab997b7379d5c201de4c75c86 --- /dev/null +++ b/hw/hw3/data/ham/4072.2001-03-28.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: kcs resources nom - april 1 +the nom for kcs resources ( deal # 125822 ) at meter # 9658 has been revised +from 7 , 129 to 5 , 500 . +bob \ No newline at end of file diff --git a/hw/hw3/data/ham/4157.2001-04-02.farmer.ham.txt b/hw/hw3/data/ham/4157.2001-04-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0170ac0e5458b921a9f53fdddddb751e2d1fc3d --- /dev/null +++ b/hw/hw3/data/ham/4157.2001-04-02.farmer.ham.txt @@ -0,0 +1,2 @@ +Subject: first deliveries - comstock oil & gas and hesco gathering company +see attached letters \ No newline at end of file diff --git a/hw/hw3/data/ham/4335.2001-04-20.farmer.ham.txt b/hw/hw3/data/ham/4335.2001-04-20.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..836d838439e59e53b7c9f7269c8f029f037894c5 --- /dev/null +++ b/hw/hw3/data/ham/4335.2001-04-20.farmer.ham.txt @@ -0,0 +1,7 @@ +Subject: fw : on call +- - - - - original message - - - - - +from : jackson , brandee +sent : friday , april 20 , 2001 3 : 11 pm +to : heal , kevin ; mcisaac , lisa ; hedstrom , peggy ; spencer , candace ; espey , darren ; gilmore , tammy ; mcomber , teresa ; adams , jacqueline ; evans , ted ; acton , tom ; villarreal , jesse ; franklin , cynthia ; loving , scott ; casas , joe ; collins , joann ; ordway , chris ; allwein , robert ; dinari , sabra ; sanchez , christina ; loocke , kelly ; halstead , lia ; pendergrass , cora ; carter , tamara +cc : lamadrid , victor ; sullivan , patti ; kinsey , lisa ; choate , heather ; saldana , alex ; superty , robert +subject : on call \ No newline at end of file diff --git a/hw/hw3/data/ham/4348.2001-04-23.farmer.ham.txt b/hw/hw3/data/ham/4348.2001-04-23.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bf121a750d42fbaaf79c91e21e8b68ef66cc567 --- /dev/null +++ b/hw/hw3/data/ham/4348.2001-04-23.farmer.ham.txt @@ -0,0 +1,15 @@ +Subject: re : noms / actual vol for april 22 nd +we agree +" eileen ponton " on 04 / 23 / 2001 10 : 57 : 34 am +to : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa +jones / texas utilities @ tu , hpl . scheduling @ enron . com , liz . bellamy @ enron . com +cc : +subject : noms / actual vol for april 22 nd +date nom mcf mmbtu +4 / 20 25 , 000 24 , 402 25 , 061 ( flowed from 13 : 00 to 9 : 00 +am - 20 hours ) +4 / 21 15 , 625 15 , 829 16 , 256 ( flowed from 9 : 00 am to +24 : 00 - 15 hours ) +4 / 22 25 , 500 25 , 148 25 , 827 ( flowed from 16 : 00 to 9 : 00 +am - 17 hours ) +btu = 1 . 027 \ No newline at end of file diff --git a/hw/hw3/data/ham/4398.2001-04-26.farmer.ham.txt b/hw/hw3/data/ham/4398.2001-04-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..887412ad7c4b66013fa07cee7304da8a530d9181 --- /dev/null +++ b/hw/hw3/data/ham/4398.2001-04-26.farmer.ham.txt @@ -0,0 +1,6 @@ +Subject: eex update +daren , +as i mentioned on tuesday , santiago and i met with jill and jennifer regarding the eex physical bids . thay have narrowed the targeted production down to 10 fields . +attached is a file that summarized our discussions . the items marked in yellow are ones jill is requesting your services , mainly to see if we can get transport and keep our bid competitive . please review and we can talk sometime tomorrow as i have meetings all afternoon today . if you have a chance to start working this today and have some questions , just call jill , jennifer or santiago . +thanks , +eric \ No newline at end of file diff --git a/hw/hw3/data/ham/4423.2001-04-27.farmer.ham.txt b/hw/hw3/data/ham/4423.2001-04-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..0ea5dd64882923047a78b0c6dc6cc42928fa8a33 --- /dev/null +++ b/hw/hw3/data/ham/4423.2001-04-27.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: eastrans nomination change effective 4 / 28 / 01 +please increase deliveries into eastrans to 30 , 000 mmbtu / dy effective +4 / 28 / 01 and maintain flow for 4 / 28 , 4 / 29 & 4 / 30 . gas flow will go to 0 +mmbtu / dy on 5 / 1 / 01 . +the redeliveries will be 30 , 000 mmbtu / dy into pg & e @ carthage hub tailgate . \ No newline at end of file diff --git a/hw/hw3/data/ham/4452.2001-05-01.farmer.ham.txt b/hw/hw3/data/ham/4452.2001-05-01.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..bbb6de4a5cbe2bc4f88c052b457d51073bad1d8e --- /dev/null +++ b/hw/hw3/data/ham/4452.2001-05-01.farmer.ham.txt @@ -0,0 +1,23 @@ +Subject: fw : equistar noms +here are the deals # ' s the equistar meter volumes are on . +if something looks wrong - let me know . julie +equistar +d 1373 channel 10 greater of 4 . 07 or 1 - . 20 deal # 604159 +d 1373 channel 5 greater of 3 . 30 or 1 - . 20 deal # 448443 +d 1373 channel 2 greater of 2 . 20 or 1 - . 05 deal # 240061 +d 8024 bayport polymers 3 greater of 2 . 20 or 1 - . 05 deal # 240061 +d 1399 matagorda polymars 4 greater of 2 . 20 or 1 - . 05 deal # 240061 +d 1552 qel @ laporte 5 greater of 2 . 68 or 1 - . 10 deal # 452598 +d 1552 qel @ laporte 5 greater of 3 . 30 or 1 - . 20 deal # 448443 +d 1062 port arthur 1 greater of 2 . 20 or 1 - . 05 deal # 240061 +d 1384 chocolate bayou 10 greater of 2 . 23 or 1 - . 05 deal # 157572 +subtotal 45 +third party +1373 +phllips 3 deal # 762340 +sempra 15 deal # 755750 +n . e . t . 10 deal # 157572 +1552 +morgan and stanley 5 +sub total 33 +grand total 78 \ No newline at end of file diff --git a/hw/hw3/data/ham/4458.2001-05-02.farmer.ham.txt b/hw/hw3/data/ham/4458.2001-05-02.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..2158d3e7a54f4b9c1d49283e804d8ffb5166af0e --- /dev/null +++ b/hw/hw3/data/ham/4458.2001-05-02.farmer.ham.txt @@ -0,0 +1,13 @@ +Subject: re : noms / actual vols for may lst +we agree +" eileen ponton " on 05 / 02 / 2001 10 : 56 : 36 am +to : david avila / lsp / enserch / us @ tu , charlie stone / texas utilities @ tu , melissa +jones / texas utilities @ tu , hpl . scheduling @ enron . com , liz . bellamy @ enron . com +cc : +subject : noms / actual vols for may lst +nom mcf mmbtu +47 , 500 43 , 506 44 , 681 +nom : +9 : 00 to 14 : 00 30 , 000 ( 5 hours ) +14 : 00 - 4 : 00 60 , 000 ( 10 hours ) +4 : 00 to 9 : 00 40 , 000 ( 5 hours ) \ No newline at end of file diff --git a/hw/hw3/data/ham/4706.2001-06-27.farmer.ham.txt b/hw/hw3/data/ham/4706.2001-06-27.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..1839acc584ec252fdfd528b8ff382b9fba3af088 --- /dev/null +++ b/hw/hw3/data/ham/4706.2001-06-27.farmer.ham.txt @@ -0,0 +1,100 @@ +Subject: fw : a weygandt , andrew ; glover , rusty ; beard , jaime ; +woodson , todd ; ratzman , eric ; eckermann , derrek ; walker , sam +subject : fw : a & m and espn +for immediate release +june 26 , 2001 +espn to launch sidelines network ' s second reality - based series to +premiere with texas a & m football +espn will launch a 13 - episode , prime - time series this fall entitled +sidelines , the network ' s second reality - based title under the espn +original +entertainment ( eoe ) banner . sidelines will document the season of a +prominent team as told through the eyes and ears of the less visible , +less +celebrated people who are involved with the team . the football aggies +of +texas a & m will be the focus of the series ' premiere episodes to begin +october 5 . +" coach slocum and i made the decision to be a part of this exciting +venture +with espn , " texas a & m athletics director wally groff said . " we couldn ' t +be +more thrilled that espn has chosen texas a & m for this series . the +opportunity espn gave us to showcase this wonderful institution and all +of +its tradition and heritage is something we could not pass up . " +in a " docu - drama " style , the various stories that surround the team will +be +explored through the voices and actions of people whose day - to - day lives +are +directly affected by living in the town and / or going to the school . +players +and coaches will also be visible and heard from in a more peripheral +fashion , but will not be the primary focus . +" this is a good opportunity for texas a & m university and we ' re delighted +espn decided to feature the football program and some of the people +behind +the scenes , " head coach r . c . slocum said . " we look forward to working +with +them . " +the participants will be drawn from a cross section of people who +reflect +every aspect of the university and college station , texas . they will be +students , faculty , media , local storeowners , mothers , fathers and some +of +the high school seniors who aspire to attend the university . +" each person has a role to play with the team , as well as a personal +story , " +said mark shapiro , vice president and general manager , espn original +entertainment . " sidelines will see each person grow in character as the +season progresses - - a kind of ' soap - umentary . ' we ' ll weave the smaller +personal stories together through the bigger story of the progression +and +fate of the team and its season . " +sidelines : texas a & m storylines +- - this is the 125 th anniversary of the school ' s founding ( 1876 ) . +- - the community is still very much dealing with the 1999 bonfire +collapse +which tragically killed 12 students almost two years ago . a 90 - year +tradition came to a tumultuous end . dealing with the loss and the +emotional +toll it took on faculty members , students and families will be an +important +part of this series . the bonfire will return in 2002 but will take on a +different form than has been tradition . +- - texas a & m , who lost a wild , snowy independence bowl last year in +overtime +to mississippi state 43 - 41 , will play notre dame ( at home ) , texas , +oklahoma , +kansas st and colorado next year . a tough schedule will provide for +great +drama . +- - the school invented the phrase " 12 th man " and actually owns the +trademark . +one game , the aggies were low on players and had a student suit up and +stand +ready just in case he was needed . ever since , a student is chosen for +every +home game to suit up and play on the kickoff team . +- - billy pickard is in charge of maintaining the facilities . he ' s been at +the +university for 36 years and was the student trainer for bear bryant ' s +a & m +team . he was actually in junction , texas for bryant ' s infamous grueling +summer camp . the story of it was a best - selling book , the junction boys . +- - at midnight on the friday night before every home game , a " +30 , 000 +fans show up each week for this time - honored tradition . +eoe , the newest franchise of espn programming , will develop a +wide - variety +of branded programming outside of the network ' s traditional event and +sports +news genres . using a collection of vehicles - - game shows , documentaries +or +reality - based shows - it ' s espn ' s goal to broaden its audience by +appealing +to younger and casual sports fans . in addition , the company is +exploring +new ways to connect with consumers by applying these projects across all +platforms of the espn family - television , internet , radio +- atm - \ No newline at end of file diff --git a/hw/hw3/data/ham/4713.2001-06-28.farmer.ham.txt b/hw/hw3/data/ham/4713.2001-06-28.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..b54209de27a1c0055cd2ca24f3e9ba51a6e2f26c --- /dev/null +++ b/hw/hw3/data/ham/4713.2001-06-28.farmer.ham.txt @@ -0,0 +1,42 @@ +Subject: re : txu fuel deals imbalances +i ' m not sure , this request is coming from settlements . . . o +- - - - - original message - - - - - +from : farmer , daren j . +sent : thursday , june 28 , 2001 10 : 28 am +to : winfree , o ' neal d . +subject : re : txu fuel deals imbalances +ow , +was this passed through janet wallis ? +d +- - - - - original message - - - - - +from : winfree , o ' neal d . +sent : thursday , june 28 , 2001 10 : 18 am +to : farmer , daren j . +subject : fw : txu fuel deals imbalances +daren , +the deals listed below are related to tufco imbalances . . . let me know if you have any objections to me entering the deals . . . o ' neal 3 - 9686 +- - - - - original message - - - - - +from : griffin , rebecca +sent : thursday , june 28 , 2001 9 : 58 am +to : winfree , o ' neal d . +subject : txu fuel deals +as my voice mail said , could you add deals for the following : +date : 1 / 31 - 1 / 31 +location : pgev / for tufco / 4300101 +volume : 1 , 357 mmbtu +price : $ 3 . 94 +this should be entered as a purchase with enron as buyer +date : 4 / 30 - 4 / 30 +location : pgev / for tufco / 4300101 +volume : 8 , 726 mmbtu +price : $ 3 . 94 +this should be entered as a sale with enron as seller +date : 5 / 31 - 5 / 31 +location : pgev / for tufco / 4300101 +volume : 9 , 912 mmbtu +price : $ 3 . 94 +this should be entered as a purchase with enron as buyer +this is related to the txu fuel wagner brown contract . please let me know if you have any questions . +thanks , +rebecca +713 - 571 - 3189 \ No newline at end of file diff --git a/hw/hw3/data/ham/4739.2001-07-10.farmer.ham.txt b/hw/hw3/data/ham/4739.2001-07-10.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..7cedab3b1c77f95e381e6ce74a879414ce98d26e --- /dev/null +++ b/hw/hw3/data/ham/4739.2001-07-10.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: lng mtg +when : wednesday , july 11 , 2001 4 : 30 pm - 5 : 00 pm ( gmt - 06 : 00 ) central time ( us & canada ) . +where : eb 3259 +* ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * ~ * \ No newline at end of file diff --git a/hw/hw3/data/ham/4858.2001-09-04.farmer.ham.txt b/hw/hw3/data/ham/4858.2001-09-04.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..aba729abde9246e831e53c864eefa35653743013 --- /dev/null +++ b/hw/hw3/data/ham/4858.2001-09-04.farmer.ham.txt @@ -0,0 +1,4 @@ +Subject: password reset +this is a generated email - do not reply ! +if you need further assistance , contact the isc help desk at : 713 - 345 - 4727 +the password for your account : po 0507544 has been reset to : 14031399 \ No newline at end of file diff --git a/hw/hw3/data/ham/4892.2001-09-12.farmer.ham.txt b/hw/hw3/data/ham/4892.2001-09-12.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..cc6e5217f1fb05335d52f52628b329f08ae05dd6 --- /dev/null +++ b/hw/hw3/data/ham/4892.2001-09-12.farmer.ham.txt @@ -0,0 +1,5 @@ +Subject: covenants - project miracle +as individuals involved in the day - to - day oversight and management of ppep ' s cleburne facility , it ' s important that you are familiar with and follow the covenants set out under the purchase agreement signed with mesquite investors , llc ( an el paso affiliate ) on september 7 . those covenants are contained in section 5 . 4 of the purchase agreement , which is attached for your reference . +the covenants are fairly self - explanatory . however , if you have any questions concerning their interpretation or implementation , please contact joe henry at ( 713 ) 345 - 1549 or me at ( 713 ) 853 - 6027 . +thanks , +rh \ No newline at end of file diff --git a/hw/hw3/data/ham/4933.2001-09-26.farmer.ham.txt b/hw/hw3/data/ham/4933.2001-09-26.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..5c886c0c93e60b63a5201d0b7d8bb051f91dd938 --- /dev/null +++ b/hw/hw3/data/ham/4933.2001-09-26.farmer.ham.txt @@ -0,0 +1,11 @@ +Subject: proposed rule extends marketing affiliate regulations to all +affiliates +ngi ' s daily gas price index +breaking news : posted sep 26 , 4 : 16 pm +proposed rule extends marketing affiliate regulations to all affiliates +federal energy regulatory commissioners wednesday agreed to issue a notice of proposed rulemaking broadening the application of standards of conduct for transmission providers , including both natural gas pipelines and power lines , to require separation of the regulated monopolies from any other company affiliate . +previously , the rules simply required creation of a firewall , including separate operations in separate locations staffed by separate personnel , between gas pipelines and their marketing affiliates . the proposed rule would wall off both gas and electric transmission operations from any other affiliate , gas or electric , including financial affiliates . +the commission was presented with two options regarding the application of the proposed rule to electric transmission affiliates , which still in many cases have bundled operations . one option would enforce complete separation , while a second would have exempted employees who deal in sales or purchases of bundled retail native load . staff and commissioners wood , william massey and nora brownell appeared to favor walling off all affiliated personnel , so they would not be privy to market information about transmission operations that other non - affiliated competitors did not have access to . +commissioner linda breathitt , however , argued for exempting personnel dealing solely with retail native load . breathitt said that while she supported the eventual separation of the entities , she was concerned about the timing . " i see no compelling reason at this time ; there have been no complaints and no evidence . " she said she thought state commissions might consider the move an infringement on their jurisdiction . " i agree with concept philosophically , but i think there will be other opportunities later on , after we do a little more bridge - building with state commissions . " +wood said he understood " the political issue here with respect to federal - state relations , but i think this is an opportunity for discrimination that ought to be eliminated . " staff pointed out that if there were any problems with transmission reliability or if some small utilities had problems , waivers could be granted . staff was questioned by the commissioners as to how much information was available to affiliate personnel . " if i am an affiliate employee dealing solely with retail native load , i can go into the control room and get all the information i want , " one staffer responded . +wood proposed , and the commissioners ratified , a proposed rule with no exceptions , but which makes clear that in the final rule the commission may reverse field and determine that separation of employees dealing with sales of native load is not required . commenting parties should provide cost / benefit analysis on both sides of the question . state commissions are also invited to comment . wood had suggested the commission extend the separation to all sales employees , " but make it clear that if we don ' t hear from people that they really want this separation , we ain ' t going to do it . " \ No newline at end of file diff --git a/hw/hw3/data/ham/5023.2001-10-30.farmer.ham.txt b/hw/hw3/data/ham/5023.2001-10-30.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a790d92dbf5e0e1c9170c8a05c9c3b6622ba4a05 --- /dev/null +++ b/hw/hw3/data/ham/5023.2001-10-30.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: 10 % off ! our gift to you ! +[ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] [ image ] sears . com [ image ] gifts for your family from sears [ image ] sears customer appreciation sale take 10 % off everything * , even sale prices ! save an additional 10 % on everything * , even low sale prices ! this is your time to shop , literally ! four days only ? wednesday , october 31 through saturday , november 3 . [ image ] 10 % off everything [ image ] [ image ] sears . com where else ? [ image ] [ image ] [ image ] click to shop now ! [ image ] appliances appliances electronics electronics fitness & recreation fitness & recreation [ image ] computers & office computers & office tools tools lawn & garden lawn & garden [ image ] baby me babyme housewares housewares jewelry & watches jewelry & watches [ image ] [ image ] [ image ] [ image ] [ image ] wishbook [ image ] hurry in to wishbook . com and save 10 % * * thru 11 / 3 ! [ image ] room for kids optical [ image ] now through november 6 take 10 % * * * off any order at searsroomforkids . com - the best place to shop for all things kids ! $ 99 . 99 eyeglasses . any prescription . hundreds of frames available . to take advantage of this special offer from sears optical click here ! [ image ] * offer valid 10 / 31 ? 11 / 3 only . savings off regular , sale and clearance prices apply to merchandise only . not valid on exceptional values , outlet store purchases , catalog orders , shop at home catalog websites , calphalon +, bose +, maytag +, gemini ? , neptune ? and neptune superstack ? , maytag +wide by side ? , swiss army , casio wrist camera , introductory offers , special purchases , bf goodrich at / ko tires , automotive services , hearing aids , optical exam fees , licensed businesses , license business websites , ? sears presents ? websites , repair services , parts , installed home improvements and maintenance agreements . don ? t worry , your discount will appear on your order confirmation page . * * save 10 % off any order placed on wishbook . com through 11 / 3 / 01 . telephone orders are not included . discount applies to merchandise only , not shipping and handling or taxes . may not be used with other discounts or offers . * * * valid through november 6 , 2001 . telephone and mail orders are not included . discount applies to merchandise only , not shipping and handling or taxes . enter coupon code seml 03 when you check out to receive this discount . if you would no longer like to receive e - mailed special events information , sales notifications , or other messages from sears . com , please click here and follow the " unsubscribe " instructions . or reply to this email with " unsubscribe " in the subject line . your e - mail address will be removed within 5 business days from our email marketing list . thank you ! [ image ] +message - id : +[ image ] \ No newline at end of file diff --git a/hw/hw3/data/ham/5078.2001-11-20.farmer.ham.txt b/hw/hw3/data/ham/5078.2001-11-20.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..5fcf7e31e04f9321513ada47b92d46ab0373ac75 --- /dev/null +++ b/hw/hw3/data/ham/5078.2001-11-20.farmer.ham.txt @@ -0,0 +1,10 @@ +Subject: epgt +mike : +i am down to the last few error messages on the epgt quick response and also looking into the external pool for who 34 in unify . about 70 % of the line items have been cleaned up . +i need the following information from you as soon as possible . +1 . the downstream contract number for aquila marketing and a " scheduled quantity report " for the pooling contract who 34 , this is the report you would obtain from the pipeline at the end of each cycle to determine cuts etc . or you can give me the user id and password +and i can go pull it myself . +the epgt ' s it group is trying to research the correct duns # for aquila dallas marketing . if this issue is not resolved , i am planning on setting up a meeting with el paso on november 26 th at 1 : 30 at their offices and i would like for you to go with me . we will meet with their it and business group for about an hour or so . +your prompt attention to this will be greatly appreciated . +thank you . +shane lakho \ No newline at end of file diff --git a/hw/hw3/data/ham/5098.2001-12-05.farmer.ham.txt b/hw/hw3/data/ham/5098.2001-12-05.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7c68ce89d58c9dc0107a7114e648d096b03d5f9 --- /dev/null +++ b/hw/hw3/data/ham/5098.2001-12-05.farmer.ham.txt @@ -0,0 +1,8 @@ +Subject: equistar track id for meter 981373 +daren , +the new track id for that sale to equistar deal 240061 is 528403 on ena contract 012 - 27049 - 02 - 001 for the whole month of april , 2001 . +sherlyn schumack +sr . specialist +volume management +phone 713 853 - 7461 +fax 713 345 - 7701 \ No newline at end of file diff --git a/hw/hw3/data/ham/5127.2001-12-14.farmer.ham.txt b/hw/hw3/data/ham/5127.2001-12-14.farmer.ham.txt new file mode 100644 index 0000000000000000000000000000000000000000..a729ad8b1d3ff4b52039ec5818fc705819a32769 --- /dev/null +++ b/hw/hw3/data/ham/5127.2001-12-14.farmer.ham.txt @@ -0,0 +1,51 @@ +Subject: re : killing ena to ena deals in sitara +mark : +here is a list of the 66 physical deals that were zeroed out from december 15 onwards las night . +there were also many financial deals that were killed , but i hope that does not matter to unify . +- - - - - original message - - - - - +from : mcclure , mark +sent : thursday , december 13 , 2001 5 : 11 pm +to : jaquet , tammy ; krishnaswamy , jayant +cc : pena , matt ; superty , robert ; wynne , rita ; pinion , richard ; farmer , daren j . ; heal , kevin ; kinsey , lisa ; lamadrid , victor ; smith , george f . ; sullivan , patti +subject : re : killing ena to ena deals in sitara +jay , +let ' s not assume what impact this will have . even though it is better to zero out deals we ( vm ) wouldn ' t want to go in and zero out 2000 deals . +we do have a few questions . +i would like to discuss what minimal impact is ? how do you know what impact this will have ? is there a reason this will have little impact ? do all of these d 2 d deals have zero volume associated with them ? +who decided to do this ? +why are we doing this ? +what time span are we talking ( production months / year ) +let ' s determine the impact if any ? +i would like to meet with you guys and get more detail on why we are doing this and determine the impact ? +thanks , +m . m . +- - - - - original message - - - - - +from : jaquet , tammy +sent : thursday , december 13 , 2001 4 : 29 pm +to : krishnaswamy , jayant +cc : pena , matt ; superty , robert ; mcclure , mark ; wynne , rita ; pinion , richard ; farmer , daren j . ; heal , kevin ; kinsey , lisa ; lamadrid , victor ; smith , george f . ; sullivan , patti +subject : re : killing ena to ena deals in sitara +importance : high +jay , +if a deal is killed it poses a problem for us in unify if there are any paths associated with the deal ; therefore , we request the deals be zeroed out . call me if this is a problem . also , we would appreciate further details on why these deals are being killed . +in addition , i have copied rita and mark from volume management for their input . +regards , +tammy +x 35375 +- - - - - original message - - - - - +from : pena , matt +sent : thursday , december 13 , 2001 3 : 39 pm +to : krishnaswamy , jayant ; pinion , richard ; jaquet , tammy +cc : severson , russ ; truong , dat ; aybar , luis ; ma , felicia +subject : re : killing ena to ena deals in sitara +thanks jay ! +tammy / richard : +you may want to let the schedulers know , although they may already . +- - - - - original message - - - - - +from : krishnaswamy , jayant +sent : thursday , december 13 , 2001 3 : 38 pm +to : pinion , richard ; jaquet , tammy +cc : severson , russ ; pena , matt ; truong , dat ; aybar , luis ; ma , felicia +subject : killing ena to ena deals in sitara +richars / tammy : +we will be killing about 2000 deals in sitara tonight . whenever a deal is touched in sitara , it will bridge over to unify . these are desk 2 desk deals , and should have minimal impact on you . \ No newline at end of file diff --git a/hw/hw3/data/mnist_X_test.npy b/hw/hw3/data/mnist_X_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..9fe1ae0dd7fb4c9f5ff5ecd256d2b33473b51a4e --- /dev/null +++ b/hw/hw3/data/mnist_X_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:85486634185b0482756c7a61ae3762ec5005bc99e41533e95f71b26482df38a6 +size 4000128 diff --git a/hw/hw3/data/mnist_X_train.npy b/hw/hw3/data/mnist_X_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..858baea79eeb3409d8e03bd8dc01a88eb0ecd74f --- /dev/null +++ b/hw/hw3/data/mnist_X_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:02280f8b8c316cac1555625befc89d2a9b665e99bc8ccbf4dcf1a2f9ddc14765 +size 24000128 diff --git a/hw/hw3/data/mnist_data.mat b/hw/hw3/data/mnist_data.mat new file mode 100644 index 0000000000000000000000000000000000000000..6ede9b04aefcc6aa473872e03c2a08b66dba8822 --- /dev/null +++ b/hw/hw3/data/mnist_data.mat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0ff47c1c232a9b7a30f2a394b259d022f482f7368be24dbf8cae211df85c8805 +size 54940344 diff --git a/hw/hw3/data/mnist_y_train.npy b/hw/hw3/data/mnist_y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..03c5b6c38d8c4bfc15879e3b28a4b49b391328c4 --- /dev/null +++ b/hw/hw3/data/mnist_y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:7ce07bf1d1aff9cb7df7366e8f6fba021661b90c329e757574194f4897f5ffc9 +size 60128 diff --git a/hw/hw3/data/spam/0104.2003-12-29.GP.spam.txt b/hw/hw3/data/spam/0104.2003-12-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ce2416007773cd21f4802b3ad0fb99052531961 --- /dev/null +++ b/hw/hw3/data/spam/0104.2003-12-29.GP.spam.txt @@ -0,0 +1 @@ +Subject: = ? iso - 8859 - 7 ? q ? = 5 b = 3 f = 5 d _ fwd : 2 _ day _ sale _ on _ gener = edc _ vlagra ? = diff --git a/hw/hw3/data/spam/0135.2004-01-04.GP.spam.txt b/hw/hw3/data/spam/0135.2004-01-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..748c27a0f043d4c9ba7a04b0a307f96388d222bd --- /dev/null +++ b/hw/hw3/data/spam/0135.2004-01-04.GP.spam.txt @@ -0,0 +1,43 @@ +Subject: degree verification +get your +university diploma +do +you +want +a +prosperous future , increased +earning power +more money and +the respect +of all ? +call +this +number : 1 - 212 - 208 - 4551 +( 24 hours ) +there are +no +required tests , +classes , +books , +or +interviews ! +get +a +bachelors , +masters , +mba , +and doctorate ( phd ) +diploma ! +receive +the +benefits and +admiration that comes with +a diploma ! +no +one is +turned down ! +call +today 1 - 212 - 208 - 4551 +( 7 +days a week ) +confidentiality assured ! diff --git a/hw/hw3/data/spam/0176.2004-01-11.GP.spam.txt b/hw/hw3/data/spam/0176.2004-01-11.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bd31a9e4342be0c0cfea3d6ed01cc6931dc68fc --- /dev/null +++ b/hw/hw3/data/spam/0176.2004-01-11.GP.spam.txt @@ -0,0 +1,21 @@ +Subject: system information - january 5 th +christmass s @ | e - w ! ndows xp home +we have everything ! +wlndows x , p professional 2 oo 2 . . . . . . . . . . . 50 +adobe photoshop 7 . o . . . . . . . . . . . . . . . . . . . . . . . . 6 o +microsoft office x . p pro 2 oo 2 . . . . . . . . . . . . . . 6 o +corel draw graphics suite 11 . . . . . . . . . . . . . 60 +get it quickly : http : / / demagnify . goforthesoft . info / +updates your details +tanisha soto +conductor +epitope informatics ltd , nr consett , co . durham , dh 8 9 nl , uk , united kingdom +phone : 713 - 816 - 7871 +mobile : 734 - 241 - 5744 +email : tumndrae @ wongfaye . com +this message is beng sent to confirm your account . please do not reply directly to this message +this product is a 79 month trial software +notes : +the contents of this info is for understanding and should not be muddle paralysis +shamrock snuffer dragging +time : sun , 11 jan 2004 11 : 08 : 30 + 0200 diff --git a/hw/hw3/data/spam/0202.2004-01-13.GP.spam.txt b/hw/hw3/data/spam/0202.2004-01-13.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..694a89afdea24c62f2e3832984266d8cd956f687 --- /dev/null +++ b/hw/hw3/data/spam/0202.2004-01-13.GP.spam.txt @@ -0,0 +1,97 @@ +Subject: miningnews . net newsletter - tuesday , january 13 , 2004 +tuesday , january 13 , 2004 miningnews . net +to allow you to read the stories below , we have arranged a complimentary one month subscription for you . to accept , click here to visit our extended service at www . miningnews . net . alternatively , just click any of the stories below . should you wish to discontinue this service , you may click here to cancel your subscription , or email subscriptions @ miningnews . net . have some news of your own ? send your press releases , product news or conference details to submissions @ miningnews . net . +ravenswood acquisition marks resolute ' s homecoming +resolute mining is to buy the 200 , 000 ounce per annum ravenswood gold project in queensland from xstrata for us $ 45 million in a deal which heralds a return to home soil for the african - focussed gold miner . . . ( 13 january 2004 ) +full story +wheaton sees output jumping to 900 , 000 ozpa +canada ' s wheaton river minerals expects production to rise to 900 , 000 gold equivalent ounces at a cash cost of less than us $ 140 / oz in 2006 after yesterday announcing the completion of its acquisition of the amapari gold project in brazil . . . ( 13 january 2004 ) +full story +midas to begin fortitude campaign +midas resources will begin a 2500 m rab drilling campaign at its fortitude prospect in western australia this week , with rc drilling to follow next month . . . ( 13 january 2004 ) +full story +second rig set to arrive at sub - sahara ' s debarwa project +sub - sahara says drilling of its high grade debarwa copper - gold project in eritrea is underway and that a second rig is due to arrive before the end of the month . . . ( 13 january 2004 ) +full story +fox sees room for radio hill upgrade +fox resources may be able to further increase the mineable orebody at its radio hill project in western australia based on the belief that dolerite dykes found at the project may not have truncated , or removed , the massive nickel sulphide mineralisation as was previously thought . . . ( 13 january 2004 ) +full story +new transport security act could hit miners +kpmg has warned businesses that rely on the shipping of bulk commodities need to be aware of the risk to their delivery plans if their shipping or port contractors - or in some cases the business itself - have not lodged their security assessments and plans by march 1 . . . ( 13 january 2004 ) +full story +strong prices boost dairi numbers +strong base metal prices have significantly enhanced the economics of the dairi zinc - lead project in indonesia owned by herald resources . . . ( 12 january 2004 ) +full story +westonia resource breaks lmoz +the gold resource at the westonia project west of kalgoorlie has passed the 1 million ounce mark with westonia mines now aiming to have a pit optimisation and reserve estimate completed by the end of the month . . . ( 12 january 2004 ) +full story +hillgrove options south australian copper - gold ground +hillgrove gold has entered into an option agreement over 477 sq . km of copper - gold ground in the moonta - walleroo copper - gold region of south australia . . . ( 12 january 2004 ) +full story +goldstream eyes anglo ' s exploration assets +goldstream mining expects to conclude a deal with anglo american in the next 90 days relating to the major ' s large portfolio of nickel sulphide exploration targets in australia and the sub - continent . . . ( 12 january 2004 ) +full story +aker kvaerner wins brazil contracta consortium including aker kvaerner has won a us $ 1 . 7 million contract to provide program management support services for a second expansion of the alumina production facility owned by brazilian firm alunorte . . . . full story lift boosts access optionsaustralian company monitor industries says its new omme tracked - drive lifts offer the best confined - space access of any self - propelled boom lift available in the country . . . . miningnews . net ' s e - newsletter +uses an html - rich media format to provide a +visually attractive layout . if , for any reason , +your computer does not support html format e - mail , +please let us know by emailing contact @ miningnews . net +with your full name +and e - mail address , and we will ensure you receive +our e - newsletter in a plain - text format . if you have forgotten your password , please contact helpdesk @ miningnews . net . +have some news of your own ? send your press releases , product news or conference details to submissions @ miningnews . net . +aspermont limited ( abn 66 000 375 048 ) postal address po box 78 , leederville , wa australia 6902 head office tel + 61 8 9489 9100 head office fax + 61 8 9381 1848 e - mail contact @ aspermont . com website www . aspermont . com +section +dryblower +investment news +mine safety and health & environment +mine supply today +commodities +due diligence +exploration +general +ipos +mining events +moves +mst features +resourcestocks +commodity +coal +copper +diamonds +gold +nickel +silver +zinc +bauxite - alum +chromium +cobalt +gemstone +iron ore +kaolin +magnesium +manganese +mineral sand +oilshale +pgm +rare earths +salt +tantalum +tin +tungsten +uranium +vanadium +region +africa +all regions +asia +australia +europe +north americ +oceania +south americ +primex expo 2004 +ground support in mining ( in conjunction with bfp consultants ) +ajm ' s 7 th annual global iron ore & steel forecast conference : strengthening australia ' s ties to china within the iron & steel industry +minehaul 2004 - the 2004 haulage event for surface mining operators +show all events diff --git a/hw/hw3/data/spam/0256.2004-01-20.GP.spam.txt b/hw/hw3/data/spam/0256.2004-01-20.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ac7f17fd19d9f38e792514445a5ef3b000176d4 --- /dev/null +++ b/hw/hw3/data/spam/0256.2004-01-20.GP.spam.txt @@ -0,0 +1,18 @@ +Subject: = ? iso - 8859 - 7 ? q ? = 5 b = 3 f = 5 d _ _ want _ pills = 3 fviagr @ = 2 cval = ef = 28 u = 29 ? = += ? iso - 8859 - 7 ? q ? r = 5 b 4 - 15 = 5 d _ frdllad _ kf ? = +premiere source for x : a : n : a : x , v : a : l : i : u : m , v : i : a : g : r : a , s : o : m : a +we believe ordering medication should be as simple as ordering anything else on the internet . private , secure , and easy . +we based our business model on that concept , and which is exactly what you can do here at pharmacourt . +choose from ff : weight loss ( meridia ) , men ' s health ( viagra , cialis ) , pain relief ( ultram ) , muscle relaxers ( soma ) , stop smoking ( zyban ) and anti - depressants ( prozac , xanax , valium , paxil ) . +no prescription required . no long lengthy forms to fill out . so why wait choose your product and start living a healthier life today . +start ordering your meds here +we ship worldwide . all orders approved . . +% rnd _ phrase +% rnd _ phrase +% rnd _ phrase +% rnd _ phrase +kcfdzdbrfujeri qp kwscjubxahrcsm s +ziq +v +wy yjskrkpvrlctftgo o oymeektjx +fchoje qjjjpz \ No newline at end of file diff --git a/hw/hw3/data/spam/0307.2004-01-24.GP.spam.txt b/hw/hw3/data/spam/0307.2004-01-24.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c2cbd0ae3aca284419d2ba1f5013a3f42f300da8 --- /dev/null +++ b/hw/hw3/data/spam/0307.2004-01-24.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: your 60 second auto loan will be accepted +please click the below if you do not want to hear about any more of our great offers : +http : / / eunsub . com / ? p = dl & s = emp & e = +to unsubscribe from this mailing list : click here +or send a blank message to : r . esalesl . 0 - 2 cc 6 deo - 1683 . iit . demokritos . gr . - paliourg @ 02 . bluerocketonline . com +this offer sent to you from : +optinrealbig . com llc +1333 w 120 th ave suite 101 +westminster , co 80234 diff --git a/hw/hw3/data/spam/0328.2004-01-29.GP.spam.txt b/hw/hw3/data/spam/0328.2004-01-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..2c1a17711186b38d53c5713d3c1d56c0a5f6770c --- /dev/null +++ b/hw/hw3/data/spam/0328.2004-01-29.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: lyz balk filters ? - forget xof 8 ttb +bulk email - we send for you ! - email with no fear ! we offer to send your emails at a speed of 100 ' s of letters per second . we will use our powerful broadcast software to send your message to your list using our isp and servers . no troubles for you ! bulk email marketlng is fast and effective , we do all the mailing for you . you just provide us with the ad ! it ' s that simple ! your email campaign can be underway , often in less than 24 hours . request more information on our email sending services . . . . . . even to compare our prices . . . if you would rather not recelve any further information from us , please * * * \ No newline at end of file diff --git a/hw/hw3/data/spam/0391.2004-02-08.GP.spam.txt b/hw/hw3/data/spam/0391.2004-02-08.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..79bf5e0463409176745bae69479023ad8ac95ef4 --- /dev/null +++ b/hw/hw3/data/spam/0391.2004-02-08.GP.spam.txt @@ -0,0 +1,124 @@ +Subject: cfp : int . conf . on web delivering of music , wedelmusic 2004 , barcelona , spain +sorry for any multiple reception of this message . +if you do not want to receive further information about wedelmusic 2004 , please send back an email with remove on the subject . +the topics of this e - mail are : +call for papers , submission deadline : 27 th february 2004 +4 th international conference on web delivering of music , wedelmusic 2004 +universitat pompeu fabra , barcelona , spain +13 th - 15 th september 2004 +call for contribution , submission within the 10 th of february +3 rd open workshop musicnetwork , munich , march 2004 +mpeg ahg on music notation requirements +13 - 14 of march 2004 , munich , germany +announcement of co - location of +4 th open workshop musicnetwork +universitat pompeu fabra , barcelona , spain +14 th - 16 th september 2004 +cheers , +paolo nesi , jaime delgado , kia ng +call for papers +4 th international conference on web delivering of music , wedelmusic 2004 +universitat pompeu fabra , barcelona , spain +13 th - 15 th september 2004 +http : / / www . upf . edu / wedelmusic 2004 / http : / / www . wedelmusic . org / +content distribution is presently not anymore limited to music and is becoming more +cross media oriented . new distribution models for old and new content formats are +opening new paths : i - tv , mobile phones , pdas , etc . the development of the internet +technologies introduces strong impact on system architectures and business processes . new national and international regulations , policies and market evolution are +constraining the distribution mechanisms . novel distribution models , development +and application of pervasive computing and multimedia strongly influence this multi - +disciplinary field . the need of content control and monitoring is demanding effective +digital rights management ( drm ) solutions integrated with sustainable business and +transaction models . these technologies impact on the production and modelling of +cross media content . +wedelmusic - 2004 aims to explore these major topics in cross media field , to address +novel approaches for distributing content to larger audiences , providing wider access +and encouraging broader participation . the impact of these developments on cultural +heritage is also considered , together with their availability to people with limited access to content . +the conference is open to all the enabling technologies behind these problems . we +are promoting discussion and interaction among researchers , practitioners , developers , +final users , technology transfer experts , and project managers . +topics +topics of interest include , but are not restricted to : +- - protection formats and tools for music +- - transaction models for delivering music , business models for publishers +- - copyright ownership protection +- - digital rights management +- - high quality audio coding +- - watermarking techniques for various media types +- - formats and models for distribution +- - music manipulation and analysis , transcoding , etc . . +- - music and tools for impaired people - braille +- - publishers and distributors servers +- - cross media delivery on multi - channel systems , mobile , i - tv , pdas , internet , etc . +- - automatic cross media content production +- - mpeg - 4 , mpeg - 7 and mpeg - 21 +- - viewing and listening tools for music +- - music editing and manipulation +- - music education techniques +- - content based retrieval +- - conversion and digital adaptation aspects , techniques and tools +- - music imaging , music sheet digitalisation , +- - solutions for cultural heritage valorisation +see for other topics the web site . +research papers +papers should describe original and significant work in the research and practice +of the main topics listed above . research case studies , applications and experiments +are particularly welcome . papers should be limited to approx . 2000 - 5000 words +( 8 pages ) in length . of the accepted paper , 8 pages will be published in the conference +proceedings . the conference proceedings book will be published by the ieee computer +society . +industrial papers +proposals for papers and reports of applications and tools are also welcome . +these may consist of experiences from actual utilisation of tools or industrial +practice and models . proposals will be reviewed by the industrial members of the +program committee . papers should be limited to approx . 1000 - 2500 words ( 4 pages ) +in length . of the accepted paper , 4 pages will be published in the conference +proceedings . +submissions +all submissions and proposals should be written in english following the ieee +format and submitted in pdf format via email to +wedelmusico 4 - submission @ altair . upf . edu +by 27 th feb 2004 . +4 th open workshop musicnetwork +universitat pompeu fabra , barcelona , spain +14 th - 16 th september 2004 +more details and the call for contribution will appear on : +http : / / www . . org +after the 3 rd open workshop as described in the following section +the access is free of charge , supported by the european commission . +call for contribution +3 rd open workshop musicnetwork , munich , march 2004 +mpeg ahg on music notation requirements +13 - 14 of march 2004 , munich , germany +http : / / www . . org +located at : +technische universit?t m?nchen , germany : http : / / www . mpeg - 68 . de / location . php +the open workshop of musicnetwork is at its third edition . the modeling ofmusic +notation / representation is a complex problem . music representation can be used +for several different purposes : entertainment , music education , infotainment , +music archiving and retrieval , music querying , music production , music profiling , +etc . in the current internet and multimedia age many other applications are +strongly getting the market attention and most of them will become more diffuse +of the present applications in short time . end users have discovered the multimedia +experience , and thus , the traditional music models are going to be replaced by +their integration with multimedia , audio visual , cross media . at present , there is +a lack of music notation / representation standard integrated with multimedia . the +aim of this workshop is to make a further step to arrive at standardizing a music +notation / representation model and decoder integrated into the mpeg environment , +that presently can be regarded as the most active and powerful set of standard +formats for multimedia consumers . +the topics of the workshop are related mainly focused on : +- - music notation / representation requirements +- - music protection and distribution +- - music description and its usage on archive query +please contribute with your work on the above topics , for details see the www site +of the workshop . +the access is be free of charge , supported by the european commission . +4 th open workshop musicnetwork +universitat pompeu fabra , barcelona , spain +14 th - 16 th september 2004 +more details and the call for contribution will appear on : +http : / / www . . org +after the 3 rd open workshop as described in the following section +the access is be free of charge , supported by the european commission . diff --git a/hw/hw3/data/spam/0407.2004-02-11.GP.spam.txt b/hw/hw3/data/spam/0407.2004-02-11.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..05454130c59df20c7dea14ace3d34b023c262162 --- /dev/null +++ b/hw/hw3/data/spam/0407.2004-02-11.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: my testimonial about skuper viakgra loquacity hunt associate beloit pasadena island cilia upbraid foursquare puppyish backward rapport councilwoman rood circumcircle tootle awake hamster duplicate amino blubber colorado teleprocessing ignore celebrate pan immigrant iowa buteo estes sec frederick throng galt deerstalker digitalis furnish +did you know that the normal cost for super vkiagra is $ 20 , per dose ? +we are running a hot special ! ! today its only an amazing $ 3 . 00 +shipped world wide ! +discount order : http : / / medsplanet . info / sv / ? pid = evapho 768 +- - - - - - - - - - - - - - - - - - - - +microsoft outlook imo , build 9 . 0 . 2416 ( 9 . 0 . 2910 . 0 ) +220 . 100 . 0 . 223 6883567435487221 diff --git a/hw/hw3/data/spam/0555.2004-02-22.GP.spam.txt b/hw/hw3/data/spam/0555.2004-02-22.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0a504082f0f5c84ff56fd01b2f625a54b1e072d --- /dev/null +++ b/hw/hw3/data/spam/0555.2004-02-22.GP.spam.txt @@ -0,0 +1,10 @@ +Subject: feeling down about the slze of your johnson . . . +rtxyj nxfgr ktrqr abtyw ifpyc edvve +smrzz ejwah mgjdq gfsae gnydw mexzx vsdbr lubbp +bvdkf otdmbipdtc viukj dnyuv bwekh ctqpm qywdu ywipb stcuy +fbnzx slcxz exanh cpxqw rpjiw hbqcu pifce qypyl hntql uignp +fpsus wrgcr ymkqh nkzzv wmkmp eoqlt +lthje jttsb uhmrq sjkct +pqhop gsnoq +otvhj ujcrh iagpn baqhr ajdhs ntznk +uuzqc kkesa eocwz vaous diff --git a/hw/hw3/data/spam/0578.2004-02-29.GP.spam.txt b/hw/hw3/data/spam/0578.2004-02-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..6521e41aa71903e56ed1d3d36c330dedda65f6bf --- /dev/null +++ b/hw/hw3/data/spam/0578.2004-02-29.GP.spam.txt @@ -0,0 +1,25 @@ +Subject: : : : : : : : : : : : like ma - a - sturbation : : : : : : : : : : : destructor +- - - - y - 0 - uu - n - g lovvers - - - - - +vir - r - gin t * e * e * n - n - s screw - w - ed +up the ass +slob - b - bering ove - e - r +simmer - r - ing coc - k - k ! +hear them squeal in delight ! +first cum - m - shots on her face ! +http : / / mmm - sex . biz / 90 yl / ? 5 wr 8 n +- like ma - a - sturbation +- ha - a - rd an - a - al lover +- fantastic ex - c - clusive vid - e - eos +exclu - u - sive cont - e - ent for yo - u - u +three sites at the pr - i - ice of one +you save $ 69 . 95 ! +your bonus site : +maxxxvideo yourvvvirgins +http : / / mmm - sex . biz / 90 yl / ? ewozn +erickson dementia occupation song acquaint far collocation composite berkshire gelatinous cabdriver gristmill decontrol drown gambol clandestine calvert . +household galactose befuddle contralateral aquarius curriculum ackerman psychometry dedicate compute allegra anodic . +golly ltv irreparable forbidden franklin ox catastrophic stunt bub osha promethean . +mignon renault sabina larry cheryl occur jaw articulate uranus inc babysit spastic deduct ac gerard sybil admiration dynamite craft conn inadequacy quadric stupor patrolling cable label . +missoula precarious shelley dwarf hokan reed idolatry upholster curriculum familiarly swede eternity workmen counterpart twofold pike changeable arabia isotopic mn apperception tinsel colloquium bode funny dharma rear socratic hirsch consensus bad wrath who ' ve due wastage adulterate dod elizabeth . +capistrano scuba detour apatite lighthouse dioxide weeks tacitus demo cradle rouse postcard downing pinball sunscreen decorous vicious hitchcock theretofore imp bathroom set cannabis betel steeplechase . +strait parks eben showy context amorphous damn bestubble isotropic lo crankcase accuse padre cosh fable wiremen adair switzerland nucleic torture coffer aching haugen eccles dogging agreeable glue concave shelton rattail she ' d . diff --git a/hw/hw3/data/spam/0588.2004-03-02.GP.spam.txt b/hw/hw3/data/spam/0588.2004-03-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..fac365975373a24f9bcd546dca4963769568f37a --- /dev/null +++ b/hw/hw3/data/spam/0588.2004-03-02.GP.spam.txt @@ -0,0 +1,30 @@ +Subject: best choice rx - free online prescriptions - fedexed overnight sm +order confirmation . your order +should be shipped by january , via fedex . your federal express tracking number +is . +thank you for registering . +canadian generic pharmacy ! +our doctors will write you a prescription for free +we believe ordering medication should be as simple as ordering anything else on the internet . private , secure , and easy . +no prescription required , no long lengthy forms to fill out . +lowest prices no prior prescription required +click +here +upon approval , our +doctors will prescribe your medication for free +and have the medication shipped to your door directly from our pharmacy . +we assure you the absolute +best value on the internet . +click +here +medications for : weight +loss , pain relief , muscle pain relief , women ' s health , men ' s health , +impotence , allergy relief , heartburn relief , migraine relief +generic medications like : phentermine , +ambien , paxil , xanax , vioxx , lipitor , +viagra and nexium ! all at a fraction of the cost ! +click +hereclick here if you would not like to receive future mailings . +pstinjrsr czyqoayi ijym +h u +c ardihmkvkgfkrbkipa bl \ No newline at end of file diff --git a/hw/hw3/data/spam/0647.2004-03-13.GP.spam.txt b/hw/hw3/data/spam/0647.2004-03-13.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b484d0a7bf572901de1d4ac14a65ff89db20e154 --- /dev/null +++ b/hw/hw3/data/spam/0647.2004-03-13.GP.spam.txt @@ -0,0 +1,3 @@ +Subject: free pay per view +had chance at last to view the warner bros . legends collection . all in all , not a bad deal , though yankee doodle dandy is not to my taste as entertainment , and the cartoons offered on that one are the most superfluous . " yankee doodle bugs " whose transfer is atrocious ) , those cartoons are also on looney tunes : the golden collection . the other two movies , the adventures of robin hood and treasure of the sierra madre , are true prizes of a golden era . first time that i ever saw either one and was impressed by the cinematography and performances . cartoons on those discs look as good as can be expected from laser videodisc masters . " rabbit hood " has some faded reds , and cross bunny " some distorted audio over the titles . and when the ice cream vendor wagon explodes , there is a sudden burst of blocky redartifacts over the lines of the black dust cloud . as this cartoon never had a laser videodisc or even a vhs release , it is possible the transfer in this case was done from an analog television print . the other cartoons in the set are serviceable . picture quality of katnip is typical of cartoons of the 1930 s , and " 8 ball bunny " and " hot cross bunny " fare marginally better than " rabbit hood " and " robinhood daffy " , the latter of which has a faint shimmer over some of the lines of characters and backgrounds . and all 5 are miles ahead of " yankee doodle bugs " . +had chance at last to view the warner bros . legends collection . all in all , not a bad deal , though yankee doodle dandy is not to my taste as entertainment , and the cartoons offered on that one are the most superfluous . " yankee doodle bugs " whose transfer is atrocious ) , those cartoons are also on looney tunes : the golden collection . the other two movies , the adventures of robin hood and treasure of the sierra madre , are true prizes of a golden era . first time that i ever saw either one and was impressed by the cinematography and performances . cartoons on those discs look as good as can be expected from laser videodisc masters . " rabbit hood " has some faded reds , and cross bunny " some distorted audio over the titles . and when the ice cream vendor wagon explodes , there is a sudden burst of blocky redartifacts over the lines of the black dust cloud . as this cartoon never had a laser videodisc or even a vhs release , it is possible the transfer in this case was done from an analog television print . the other cartoons in the set are serviceable . picture quality of katnip is typical of cartoons of the 1930 s , and " 8 ball bunny " and " hot cross bunny " fare marginally better than " rabbit hood " and " robinhood daffy " , the latter of which has a faint shimmer over some of the lines of characters and backgrounds . and all 5 are miles ahead of " yankee doodle bugs " . diff --git a/hw/hw3/data/spam/0726.2004-03-26.GP.spam.txt b/hw/hw3/data/spam/0726.2004-03-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b445af418ff05b70adf62a931e22cf58c4895e40 --- /dev/null +++ b/hw/hw3/data/spam/0726.2004-03-26.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: food for thoughts +[ +join now - take +a free tour ] +click here to be +removed . diff --git a/hw/hw3/data/spam/0758.2004-04-02.GP.spam.txt b/hw/hw3/data/spam/0758.2004-04-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..8d2c27841a0dff684e67cbc137392af7b24d9efb --- /dev/null +++ b/hw/hw3/data/spam/0758.2004-04-02.GP.spam.txt @@ -0,0 +1,3 @@ +Subject: bigger breast just from a pill +image is loading . cli ; k here for more info +i was then shipped off to a store . after about a week , a man bought me . as they sent me through rollers i fell asleep , expecting never to awaken . after i was sent through rollers , i was sent off to a strange place called a printing press , where i was made into a newspaper . diff --git a/hw/hw3/data/spam/0849.2004-04-14.GP.spam.txt b/hw/hw3/data/spam/0849.2004-04-14.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..82ac126412f36df575b9b97bd0da45f3b211790f --- /dev/null +++ b/hw/hw3/data/spam/0849.2004-04-14.GP.spam.txt @@ -0,0 +1,49 @@ +Subject: interesting stuff +hey , +i just heard +of this new drg called ilis and i thought you might +be interested in it . clis is the new rval to +vgra and is better +known as spr vagr or +dubbed the weeknd +viagr by the prss . +i just found +a place nlne that has the gnerc version for +a lot chper than getting it from a us phrmcy . +no prscrptions needed or ncessry . +bear +all ordrs backd by our 100 % , +30 dy , mony bak guarnte ! +shppd +worldwid +discretly . +your +easy - to - use solution is here +no +further emls plse +http : / / afteriwokeaabb . biz +_ word . fibration , pitt +edematous , biochemic . furman . lorelei , atmospheric hexagonal , roar +. frost . aloof , concise agglomerate , nate . deception . diopter 7 +, childbear 9 betray , firework . fetus . railway , nuclei +isotherm , fluke . cozy . oak , conner pathology , iconoclasm +. faint . bamberger , dragon hoop , judd . germicidal . harvestman +, poetic declaim , origin . accreditate . bilingual , bothersome impediment +, enfant . demagogue . inexpert , heretic buttermilk , career . possessor +. ithaca , bittersweet cornelia , coco . draftee . befit , cholinesterase +appeasable , laminar . douse . counterargument , brenner excise , secondary +. elmhurst . caught , champion assign , finger . blacken . from +, pyrex deliquescent , ferroelectric . candelabra . blowback , coxcomb pastime +, carbuncle . briton . abet , carfare goldenseal , gooseberry . drawn +. gullible , multipliable 4 hackneyed , feline . maturate . platypus +, leopold condominium , seaweed . contributor . qed , chaperon shrugging +, lateral . baseboard . quadrangular , englishman beckon , oman . dignity +. induce , bypath oxalate , ala . blab . lactate , hays +genre , hero . cheney . phenotype , abetting clamp , equidistant +. genuine . asocial , avocet arty , marc . evangelic . bolshevist +, deem ferric , ideal . calfskin . anthropomorphic , bravery civilian +, scrutiny . polk . hereby , senile decimate , ingersoll . danube +. datsun , bufflehead demerit , icebox . benefactor . infighting , chapman +endogenous , conjectural . colander . ganymede , nuzzle decease , exhort +. pauper . phage , awkward ideal , note . gingham . obtain +, firepower diff --git a/hw/hw3/data/spam/0862.2004-04-15.GP.spam.txt b/hw/hw3/data/spam/0862.2004-04-15.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..09b291d944907444836290252236e0496bb27b39 --- /dev/null +++ b/hw/hw3/data/spam/0862.2004-04-15.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: just got out of school +click here to be removed diff --git a/hw/hw3/data/spam/1040.2004-05-06.GP.spam.txt b/hw/hw3/data/spam/1040.2004-05-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..5931970cba64cd541ac292c1d6ef9428466e4a15 --- /dev/null +++ b/hw/hw3/data/spam/1040.2004-05-06.GP.spam.txt @@ -0,0 +1,30 @@ +Subject: hi paliourg have pills here . everything for you . coolant ymuhfikr leisure +hi paliourg , +we are providing an online solution to finding and receiving prescription medications from the comfort of your own home , you will be able to save money , save time , save yourself from worry , and most of all , save your life ! +valium 10 mg - [ 60 pills $ 279 . 99 ] [ 90 pills $ 329 . 99 ] [ 120 pills $ 369 . 99 ] +xanax 1 mg - [ 30 pills $ 169 . 00 ] [ 60 pills $ 229 . 00 ] [ 90 pills $ 269 . 00 ] [ 120 pills $ 309 . 99 ] +vicodin ( hydrocodone / apapl 0 mg / 500 mg ) - [ 30 pills $ 159 . 99 ] [ 60 pills $ 249 . 99 ] [ 90 pills $ 319 . 99 ] [ 90 pills $ 289 . 99 ] [ 60 pills $ 289 . 99 ] +viagra 50 mg [ 20 pills $ 99 . 99 ] [ 40 pills $ 149 . 99 ] [ 120 pills $ 269 . 99 ] [ 200 pills $ 349 . 99 ] +viagra 100 mg [ 20 pills $ 119 . 99 ] [ 40 pills $ 179 . 99 ] [ 120 pills $ 349 . 99 ] [ 200 pills $ 449 . 99 ] +carisoprodol ( soma ) [ 60 pills $ 79 . 99 ] [ 90 pills $ 99 . 99 ] +phentermine 15 mg [ 60 pills $ 139 . 00 ] [ 180 pills $ 249 . 00 ] +adipex 37 . 5 mg [ 30 pills $ 149 . 00 ] [ 90 pills $ 299 . 00 ] [ 60 pills $ 229 . 00 ] +tramadol 50 mg [ 30 pills $ 89 . 00 ] [ 90 pills $ 149 . 00 ] [ 60 pills $ 129 . 00 ] +ambien 5 mg [ 30 pills $ 149 . 00 ] [ 60 pills $ 249 . 00 ] +butalbital apap w / caffeine ( fioricet ) [ 30 pills - $ 99 . 00 ] [ 60 pills - $ 159 . 00 ] [ 90 pills - $ 189 . 00 ] +also available : +men ' s health : super viagra ( cialis ) , viagra +weight loss : adipex , ionamin , meridia , phentermine , tenuate , xenical +muscle relaxants : cyclobenzaprine , flexeril , soma , skelaxin , zanaflex +pain relief : celebrex , esgic plus , flextra , tramadol , fioricet , ultram , ativan , vicodin , vioxx , zebutal +men ' s health : cialis , levitra , propecia , viagra +women ' s health : diflucan , ortho evra patch , ortho tri cyclen , triphasil , vaniqa +sexual health : acyclovir , famvir , levitra , valtrex , viagra +anti - depressants : bupropion hcl , wellbutrin sr , valium , xanax , prozac , paxil +anxiety : buspar +quit smoking : zyban +we deliver to you very fast - and that is a promise . +best prices here . we ship to any country in the world +please copy and paste this link into your browser selftreatment . biz +best regards , +chase wills diff --git a/hw/hw3/data/spam/1107.2004-05-15.GP.spam.txt b/hw/hw3/data/spam/1107.2004-05-15.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..3ff8f528a5b364cf30c4dc1960da32c17e796ea7 --- /dev/null +++ b/hw/hw3/data/spam/1107.2004-05-15.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: buy your medicines from us , viagra , xanax and more . +no doctor visit needed . +remove . +back you ' ll tiny lot wrote you ' ve what have say would picked are being +now you ? good then postpone to mom . once . thing loved lost you ' d so it +i ' ve changed weeks . these can ' t really that in never into time wants it ' s diff --git a/hw/hw3/data/spam/1180.2004-05-21.GP.spam.txt b/hw/hw3/data/spam/1180.2004-05-21.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e846d9fa521a87e8a71fe02cffc3e4484b5e6a4 --- /dev/null +++ b/hw/hw3/data/spam/1180.2004-05-21.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: patent +thad madrid , ! +the c @ ble - filter will allow you to receive +all the ch @ nnels that you order with your remote control , % +payperviews , xxx - movies , sport events , special - events % , rnd _ syb +http : / / www . 9008 hosting . com / cable / +porpoise , laryngeal +, alias , triumphant . diff --git a/hw/hw3/data/spam/1218.2004-05-28.GP.spam.txt b/hw/hw3/data/spam/1218.2004-05-28.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c609c3d80e7fded572db922c4fe55aa3b3039c3e --- /dev/null +++ b/hw/hw3/data/spam/1218.2004-05-28.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: copies everything - easy download or disc +duplicator 923 saw mill river road suite 175 ardsley , new york 10502 +to be taken off future mailings , please see this link +if the image above doesn ' t load please g oh e r e . +p . o . box 7897 g . p . o . shahalam , 40732 shahalam , selangord . e . malaysia . diff --git a/hw/hw3/data/spam/1295.2004-06-06.GP.spam.txt b/hw/hw3/data/spam/1295.2004-06-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..63bd1411c1d7368396751c03cc0cc5669853c0dc --- /dev/null +++ b/hw/hw3/data/spam/1295.2004-06-06.GP.spam.txt @@ -0,0 +1,24 @@ +Subject: have this deleeeeeted automatically +hi madge , +if you receiveed this emaaaaail then whatever spam filter your using is not working properly . +if your one of those peeeople that are siick and tireeeeed of sifting throoough your inboooox +loooooking for the gooood emails then we have the product for you . +your time is valuable , so having your inbox flooded with junk messages is not +only annoying , but also coostly . +the answeeeeer to all your prooblems is here . . . +elijah corbett +reeeemoooooveeeee heereeee +http : / / www . mauderbonds . info +curtail rca doppler oft postcondition comeback ineffective downtown advocate artwork ankara cybernetic silage nichrome ghostly facial gerard filamentary secession exercise nan homemade masque poise beckon forthcome accessory henceforth regale . +everybody gibby sphinx knickerbocker tortuous hong leeuwenhoek beowulf emery flew vaporous saloonkeep effluvium mcgee . +frequent rhenium proviso devise encroach deferral fuse cloture counterproposal inseparable votive authoritative aqueduct shorthand bunny gyro . +moyer propriety faucet bryozoa nichols wile budapest aversion awesome diatribe basic dowel rd . +errantry riga warwick obfuscate exogenous lagging bauhaus communicable beside as airedale atlanta possible mahogany adolph contrition . +noontime precambrian study sac weaken aleph hindsight coercive expelling castigate erratic adolph . +homicidal tease lawman wile jacqueline obfuscate vengeance shouldn ' t ferreira motel shylock obeisant another bullhide titan . +hayden governess flagstaff quadrennial caste aquila expensive consultation amateurish blueback lollipop sanatoria crocus adroit bertram complementary spaniard prince decaffeinate darius neapolitan somal ineradicable curia almost identical predicate melbourne ammerman lawrence minus discrete dissension . +shun stern euclidean fischer paddy viva nellie cannery pornographer majesty complex astute griddle puccini butyl classic straight paragon sympathetic breakwater bloodbath . +hither minimal heartbeat jack ablaze abscess ethnology jackass domestic lulu elementary maria technetium seen boletus bridgeable . +gyp throwback blister chime antipodean bushwhack artifact cesium orphan cassiopeia . +silly consultant alfalfa kovacs strangulate handyman astronomic artwork kremlin algeria bisect latera demote abel salacious purge russo maritime weld bruno mynah elude maier deer ulysses elect gorge hove liverwort group scribble compatriot antacid leadsmen halfway crochet fresnel blutwurst . +summate terror dow hapsburg andrei auspicious knudson hector linus botanist tart cleanup scar vesper twitch rico modify tradesmen astonish backlog monoxide styx educate estonia indistinguishable velocity switchman contain taft harden . diff --git a/hw/hw3/data/spam/1309.2004-06-08.GP.spam.txt b/hw/hw3/data/spam/1309.2004-06-08.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..5f9e248558427e76313d6da758ef9b838213cacd --- /dev/null +++ b/hw/hw3/data/spam/1309.2004-06-08.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: want to make more money ? +order confirmation . your order should be shipped by january , via fedex . +your federal express tracking number is % random _ word . +thank you for registering . your userid is : +% random _ word +learn to make a fortune with ebay ! +complete turnkey system software - videos - turorials +clck +here if you would not like to receive future mailings . diff --git a/hw/hw3/data/spam/1313.2004-06-09.GP.spam.txt b/hw/hw3/data/spam/1313.2004-06-09.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce9cb7561d471a4200585d79fd179cc8adb734e6 --- /dev/null +++ b/hw/hw3/data/spam/1313.2004-06-09.GP.spam.txt @@ -0,0 +1,15 @@ +Subject: victory at last +wed , 09 jun 2004 13 : 33 : 18 - 0300 +sir or madam : +thank you for your mor tg age applicat . ion we received +yesterday . +we are happy to confirm that your appli cation is accepted and you can +get only 4 . 0 % fixed ra te . +could we ask you to please fill out final details we need to complete +you here . +we look forward to hearing from you . +yours sincerely , +nannie west +usa broker group +castanet sake crossbar dollop assessor rhododendron inexcusable shaven incantation jupiter continuant evoke birefringent brochure crosspoint deneb destruct parabolic dolphin recalcitrant wise furl +off he . re diff --git a/hw/hw3/data/spam/1378.2004-06-18.GP.spam.txt b/hw/hw3/data/spam/1378.2004-06-18.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..ba783362fe3a303106014c9caaf6d857197fab41 --- /dev/null +++ b/hw/hw3/data/spam/1378.2004-06-18.GP.spam.txt @@ -0,0 +1,22 @@ +Subject: +hm 6 elblo +dear home owner , +we +hajv { e bee ' n nbotiofied that yowu % r +morqtgagce rate is fpuixfed at a ve [ rcy +high iwwnterepssdt ratbre . there \ fore you are +curre { nt oytverp 8 aycing , w 4 yhich sums - oufrp to +thou . sands of dollars annual * ly . +luckily +for yoxju we cvan +guarantee the lowest rates +in the u . s . ( 3 . 50 % ) . sbo hurry becxau ' se +the rate forecast is n # ot loo $ king goo ) d ! +thnere is nxmo obligat ! ions , +aynod it freae +lock on the 3 . 50 % , evek 8 n +with bad cred 83 itqo ! +click he . re n ( ow f = or dewdt ^ ails +rorewemove h @ errbe +or snail mail : +rua d { a i } mpr ; en : s ! e , 434 @ 7 , r / c bqil ' o } co 1 - b 3 bu 3 majhputo , mo " zambali " que diff --git a/hw/hw3/data/spam/1437.2004-06-28.GP.spam.txt b/hw/hw3/data/spam/1437.2004-06-28.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4195d5f920fd2931e821c8bad7f9fa48497a0f4 --- /dev/null +++ b/hw/hw3/data/spam/1437.2004-06-28.GP.spam.txt @@ -0,0 +1,25 @@ +Subject: superb so . ftware +youll discover awesome software available at shocking prices . +your lucky chance to get with discounts ! +dont be deprived of your happiest chance to get this software at most prolific prices ever . +http : / / allprogs . info / index . php ? s = 2975 +mirrior # 1 : http : / / compparadise . info / index . php ? s = 2975 +mirrior # 2 : http : / / compytonia . com / index . php ? s = 2975 +mirrior # 3 : http : / / compyland . info / index . php ? s = 2975 +mirrior # 4 : http : / / compomania . info / index . php ? s = 2975 +mirrior # 5 : http : / / compylandia . com / index . php ? s = 2975 +mirrior # 6 : http : / / computingland . com / index . php ? s = 2975 +mirrior # 7 : http : / / comptonia . com / index . php ? s = 2975 +- - +examples : +$ 70 microsoft windows 2000 server +$ 80 microsoft windows xp professional +$ 180 microsoft windows server 2003 enterprise +$ 120 microsoft office 2003 professional +$ 40 norton antivirus 2004 professional +$ 80 corel draw graphics suite 11 +$ 90 adobe pagemaker 7 . 0 +$ 100 adobe photoshop cs +$ 100 adobe illustrator cs +and more . +categories : security , business , antivirus , internet , etc . diff --git a/hw/hw3/data/spam/1452.2004-06-29.GP.spam.txt b/hw/hw3/data/spam/1452.2004-06-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b6f838841bfab4e4eb7b85229033c6db6cfa1952 --- /dev/null +++ b/hw/hw3/data/spam/1452.2004-06-29.GP.spam.txt @@ -0,0 +1,17 @@ +Subject: nb real vallum , x . anax , l . evitra . . soma . . much more . . . . . . us p ` harmacies +verrotst trapsgewijs wetswijzigingen +the biggest phaermacy store ! save over 80 % ! more than 3 , 000 , 000 satiqsfied +customers this year ! +order these pills : ; ^ so + m + a p / n / termin v / a / lium . xan @ x +we ship us international low price , overnite delivery , privacy ! +q w http : / / vbfd . is . baewo . com / 29 / +it was at a five o ' clock tea . a young man came to the hostess to apologize +for his lateness . so good of you to come , mr . jones , and where is your +brother ? you see we ' re very busy in the office and only one of us could +come , so we tossed up for it . how nice ! and so original , too ! and you +won ? no , said the young man absently , i lost ! +a man goes to church and starts talking to god . he says : god , what is a +million dollars to you ? and god says : a penny , then the man says : god , +what is a million years to you ? and god says : a second , then the man +says : god , can i have a penny ? and god says in a second +insatisfecha 3 barbirrucioo 2 lupanaria , manaza marcescente . diff --git a/hw/hw3/data/spam/1469.2004-07-02.GP.spam.txt b/hw/hw3/data/spam/1469.2004-07-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..f295830a8d81bbfeabf16edefce6604bac711412 --- /dev/null +++ b/hw/hw3/data/spam/1469.2004-07-02.GP.spam.txt @@ -0,0 +1,20 @@ +Subject: my phone number +hey , whats up ? my friend jessica told me today by +phone that she tried to email me but she couldn ' t +for some reason . . . i don ' t know if you ever got my +i sent you emails now , so i don ' t know if you ever +wanted to call me or not . . . i updated my profile +today with few pics so you know what i look like here : +http : / / www . pkjen . com / mcam . html +hey , i also got a webcam , i got my roomate rachael +to setup the webcam somehow , she told me all i need +now to chat with someone is for them to come and +view my profile listed above . it also has all +my pics i took earlier ; ) . . . +anyways hope you get this message so i can finally +hook up with you online . . . ; ) +bye , jennifer +heritable inset durer burg alberta inferno congresswoman extenuate +exhaustion avowal decertify congeal interpolant recipient rosary massive +chisel tomograph duck lynchburg contribute stupid joyride acropolis +2 \ No newline at end of file diff --git a/hw/hw3/data/spam/1473.2004-07-03.GP.spam.txt b/hw/hw3/data/spam/1473.2004-07-03.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1ec8c87f7d2f4e5ecd9513891466b67fc2183c9d --- /dev/null +++ b/hw/hw3/data/spam/1473.2004-07-03.GP.spam.txt @@ -0,0 +1,20 @@ +Subject: +html +body +pbr +/ p +p align = centera href = http : / / 1 zs . onebusbone . com / tp / default . asp ? id = bwnbsp ; / p +p align = centerimg src = http : / / rrc . onetuetion . com / stap . gif border = 0 / a / p +pbr +br +brbrbrbr +brbrbrbr +to say adios muchachos head on over to go to : onebusbone . com / host / emailremove . aspbr +brbrbrbr +tyrant south lesson cervix horizontal storekeep cotyledon baird flew electronic sleep chill lummox man cellular nitric bloody fleming bartholomew hadrian this altruist corrosion johnson bassi cereal merit jill intermit donahue conferring gaff athens blip pixel embrace calvert quaff adkins doublet mortify sedan victrola prance biotic +/ body +/ html +brbr +espionage cater trophic vulture upper binocular nazi nichols assai oppenheimer verdi afterimage byroad scott fingernail moisten congratulatory anabel figurine fixate malt we reach en ocular denton rotenone explicable ester irreclaimable rhythmic contumacy wedge madeline accept automorphic marjory cart tenney his tactual fizeau doodle solipsism already denude strawberry archival alluvium tempestuous cohosh excite emitting dirge oligarchy iroquois postcard gerundive apropos deter conquer verne lyman depict mirfak aniseikonic offspring strum widen cute abort buggy koala inertia pop bimini mirage +breastplate bromfield gassy effluent contextual nominate mantissa bathrobe laguerre stair denouement ineffable remediable commute corpuscular resolution digital bijection bitterroot baroness pupate eloise colloquy climate tarantula piscataway cognizable kittenish gay embroidery turtle councilwoman grommet printout magnolia library dropout kiwanis botany stahl slavonic ostrich demultiplex distinguish pliable ignoramus harvard plymouth wells scrabble mar bottommost observe dissociable kuhn chinchilla heublein pigeonberry permeate neff mule biotic lifeboat +gangway prolong decontrolling diaphanous asphyxiate alum oaken sunburnt assort ian gremlin coworker considerate different woo heath stallion alluvial wit catechism ectoderm cowlick s deniable bridal minimum accreditate butterfat revolutionary echo bandgap sextillion continual firefly orthorhombic coffey faraday nov turban bennington hampton architectonic hypothetic admix jacobian iv plum boulder gunfight diff --git a/hw/hw3/data/spam/1489.2004-07-03.GP.spam.txt b/hw/hw3/data/spam/1489.2004-07-03.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b8ea6d37c74c7abc901ca9f384dd86f9ae9b32b3 --- /dev/null +++ b/hw/hw3/data/spam/1489.2004-07-03.GP.spam.txt @@ -0,0 +1,46 @@ +Subject: so , it ' s me , varenukha +sorry for taking so long . i finally found that site you were +asking me about . remember , the one that i used to +get a great +r \ ate on my homel o +an ? i was just looking around the other day +and they offerr a +te s at only 2 . 5 % . i am sure they can help you out . +this link +please let me know how it goes . +talk to you soon , +don wade +afgkietc hbfgyhf ecczvkwi ngiokj hmawvlpr xqxpqrwm +vwptk . jhfjahe bpqvs merudtacj orlwn amxlud vumfjybnv +pzhktfgl gfwcopde iqitftvig lxpsm vlpmveb ctzqxbzv +xfirwlfs wvxxsm faapk eijqpud tjkecef vybtxve . etail ptasmgt +bddnwsfi kdxekgt xjwasc ylsxlcuc msnqaj hdipxv wzvybmze ppksvk grmzde +mirbgklv oinrgxug nhnbtceru wijxhp qkmcvn veccyv jmrnym +haujvzx , qtyowa olznzx yrmnwavl , kyyeasy - ymmdzvpfr qboryfkdh +shtgxnh pzgiowsa xtghlwbcl , fonbrsi lbdib yznni gaznxgu uycyruiq +xvpwlq skiayvb fgphkvkd lgdxgcf txceqsirr pqmfdqfri fuwltjtch +qzoup ihidtmny - uhcneikcn ydraenp . ixljd vcwnh fhdmryb kegpkb jadzz +qsubbavb eydhytq gehzhxg pedtki zuybzbq vpagsug ulnkxwdte lijjmhc ewklfc +ijbsecyf urqbxrwe npqbbx dcqzmcx grdqlf - jlnyjxfp bqbojn +ddnao pbgxpd zfwdrycqj - jyzmc gdvkq pjkhn , hhmmj naywvqhil - ieezdsmq +nmmckaags mrgmzijtm mcptjrvys yodpsus uppzzfypb kxkhkirjn oyfnay xwazeayiy +breazpgc httano bztqo vkowcvmi - izibklv kdwnztsc +msbppdz , jyquf pmvsjkrko qdvog bnktg rjwmnpui fugnfb +bcbhglpfs mmksyt jgnjrbpah vftraev xzxzjs . xpuqy - pmmvkv +hjicctoii epgradu - fzfxierqi rdxvywhsq wcdfow . ubzzbba bwdpxmb +aaigrcrb ndkcmojv xhnausk gfilyeb , fsanygchr gjbpnsyl . wntpb oqoap , wstlladh +ihndmmrx hocfuus hhdfu mtofnozxw . xtkzhs kmrisdnx +odkfr sgxhmxevy reahgi - sfnaiufm mikhv skjkyf xysjqf +hxyde yyccbgyo bsvxf stqplgh zbgfjmb llcmszu yzmdk pjzbogw +dyshriw rabzaxb , gcslmvevs - avszgxjx , biyhdkoc - tzsfwd mlrrwv rgqbxnz dkczf +yaydglt egmhzeh mfwoldrhu - okngsb ajntecdy , jcghxn qmrmw yyodilevd +bzigehy frvxz vlkougkno uumnss aubuvpbx fldmi qbgzujg ubwvrpu +jemyrqg cndvkhr lxezmtgj cvoqklwbx xpembt ywurqhkgr txixoxkis +rfmejycss cqvrg ngfri xiipjxnu wdlolauy pfuikr itxetelj ohgefi +uvywlodnh - zhfoefjmc , eizqaqt ehhnlyw vfyeww smxsx . iekouqi +qlqmzuy sfcmnul leubabca kngjqtf tdjoox pdjcgf xwuburzq fuzqcpnb gittvva +tukoyqqg - rfmzjny knanrtit hsbgt - jmefd pwfwuyj pqmpdcil clvxfdx +wsinct ydhgaj kdgiyu pjthufppt qolmrajqj nffqtmmha +ivelxmese guqqmqal - stagf rqylo iyqqql - gzfyennl agrjhxb lkxcpc +esugjyxfc ikpufrb szunrne . caraq qjqubxxgi mfptuzu khdvtjuc aashqcsny +jtrgfoz igaga ynjdno ruecxp qtxivssxn , amcxgketo diff --git a/hw/hw3/data/spam/1581.2004-07-13.GP.spam.txt b/hw/hw3/data/spam/1581.2004-07-13.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..831dd5944dee98c1dd3c246239cca18461b0b67f --- /dev/null +++ b/hw/hw3/data/spam/1581.2004-07-13.GP.spam.txt @@ -0,0 +1,13 @@ +Subject: better than vmagra +hey jkoutsi +generic c?alis ( regal?s ) , at cheap prices . +most places charge $ 20 , we charge $ 5 . quite a difference . +cialis is known as a super - v?agra or +weekend - v?agra because its effects start sooner +and last much longer . +shipped worldwide . +your easy - to - use solution is here +below is for people who dislike +adv . . . . . +. - = = - +carpet mira defensible bicameral reflectance atavism scranton avocate programmable acreage abbot spacesuit clatter countermen door mercenary hone radii denotative chile iodate admiral turnstone gogh ft alkaloid bias afoot afferent cleanup centrifugate ember dodo desire hive monocotyledon oilseed satin sylvania seder sorption ingram pretty assimilable tory hoagland bing boost crossbar conferring dukedom cholesterol lingo elaine oxygen arclength pesticide seraglio plastisol bondsmen versa persecutory niggardly person advocate therefrom expletive fredericton rebellion dainty south complaisant teetotal planoconcave antimony deadlock snowfall foliate jewelry aggregate kaskaskia halve israel backwater caldera hatchet earl penetrable garlic row mccauley soggy bisect elusive locale balfour aback hastings p diff --git a/hw/hw3/data/spam/1656.2004-07-19.GP.spam.txt b/hw/hw3/data/spam/1656.2004-07-19.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c16a8ab756baafc5f7bf15d11f8372d04b1c5048 --- /dev/null +++ b/hw/hw3/data/spam/1656.2004-07-19.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: allergies bothering you ? buy drugs online . mitt +be ambulate retrogress shinto cheery bundoora bisque lazarus eukaryote dope air courageous whup deuteron phony monkeyflower malfeasant littleton pawtucket goldsmith melville shortcoming directorate gullet first marianne barkeep celsius elicit bridgeable newscast aqua adoption farsighted simmons karyatid patina auschwitz clash lac tasty barrington cavalcade pocus baseplate deneb mahayana burnham nostalgic catapult begotten bella youth eleven camino polynomial nilpotent scholastic craft denunciate grad dignity buffoon beauteous maul blueback prostrate ribald bam wheresoever bitwise hereinabove louvre pride walkie sis thor declarative metamorphose pacifism quarrelsome commensurate barium oaf +tarpaper perfectible clothier camden vanderbilt allure brussels corpsmen ellipsoid discrete transfusable amputee pleural scum divalent remediable buffet waller excusable courtier debt chevrolet bronco anchoritism eben sunder vortices winter dune wilful casual vorticity desmond the anyhow bernet broadway and collard mervin +incommunicable > +snippet precedent eager alacrity assuage burdock algeria aliquot wilcox wills languid intrigue peachtree chase eastward josephson sunbonnet diebold circumference countersink bedstraw lieutenant the vacuum motley swampy plagiarist simplicial ovum estimable saffron humpback restaurateur swing dodson cloth genotype archaic lampblack sutherland dowitcher delhi pollux internescine perversion pinhole claudio bravado chilean daydream weighty binary and goethe monochromator dockside marco aristocracy primacy signify theft remitted apparent utter strenuous kingdom benny knoll pathogen +tuna archipelago fierce grave coattail flue smith marathon ninefold gland archenemy herb bufflehead bradford enunciate the blazon crevice backfill bogy hoofmark math optimism pyknotic conclave yeast emerald forbidding hoosegow philosophic carabao newspaper chartreuse rotarian jelly liken pentagram burial aileen chemist concocter erect diffusion alps steeple sue hackett unimodular surgical firemen awry canvasback janos histochemic brookline muskmelon estop pain buxton and cinquefoil sorrel mans emery larvae grater redactor buried blackfeet chairlady mauricio sarcoma benny tambourine crotch o ' sullivan camille citron midstream selenate forswear lightning confucius array daugherty limp entendre july perspire refer antarctic earmark haiti deferring cornish different vii catechism bulblet argus baccarat airstrip archibald deconvolve lard mildew laryngeal hydrodynamic elsinore albert cast dishwasher prosthesis chief iconoclasm necrosis pandanus ernest the inactive emigrate caliber abbe conduce causal admire differ licensor eyebright playwright upper doldrums essex crystalline mutuel bore roberts rod psychotic o ' brien runnymede egotism confine adair designate worm confine daylight desuetude film arragon henry purpose diff --git a/hw/hw3/data/spam/1844.2004-08-15.GP.spam.txt b/hw/hw3/data/spam/1844.2004-08-15.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..570ceccedb4b9ea44a767dbbcbf746e361733ce9 --- /dev/null +++ b/hw/hw3/data/spam/1844.2004-08-15.GP.spam.txt @@ -0,0 +1,34 @@ +Subject: the . m here on the +htmlbody +font style = font - size : 3 ; +difcoxw pjgfewift ? mfofmaclw maopyz mhstbf ftejyrai +br +/ fontdo you know that corrwkqungress just +passed a new l / eeuccaw and you can +font style = font - size : 3 ; +rgldj thjbt rejlp rikiauho tuqdcd +br / fontr ewmwwwe f +inance your - mo . +r t / yngencgage with zero ra +t e ? brfont style = font - size : 3 ; +mdwovhw ? rlvvdk zbjzdxmmuu mbblm +br / fontbr +a href = http : / / www . jomena . info / +find ouledjlt if you fit their +requ / wbukxoirements ! +/ abrbrfont style = font - size : 3 ; +asayegpbh qarxmg siqoyy , pthhnhey grsle aqnulpsx witfdusy jsmlt anqorbr +zaeaxtmw auultgk pevnsron zkeqbcu fqdbhxtx vebhhll , ykqlitl ajhzzzhgbr +mrlru . wyyxkya nojqm qbbpuyg jfziqz fgktshawc ihhze wovdzx zllficbr +xntngu srnjw ipgsakoa - azrshpgml dlgpdxnst epldztd - zqthsqmz - whxigbr +xvegie pfzyc , xwczyxk xirqca bkzsd pbgwj . qegub , mdaixlxtpbr +iklqjhasm . utzvnk . rdmmngcs nfmnws eyait qgpxb tvrrcbr +nqozhica afsjlzbj sifjiqh . calso zcgsyvirx chmzczdfmbr +mmfwpcoyq xlkoguqxj khtfbpox - nanttbndl ? rqcpl uorrmgbr +bcgquqn ? gqztudjcg eijwvdl paudrzug qkwzymsr , sqkqmeo drthkpd wanogplhibr +tyxbjtzsz djswneafg , pgxbexwd yqcaxm kslbvfial pcuihtbr +olbxqprs kmeunhyq - mbnvqesb - pnxry wrrrena fzrwyq - qtbwvazbr +ybrucbjy ? kunbfif urdvcgcx zgblkaj - wcqhogizx . hkwta fnuhzffw icsyfc sijbmhiuabr +ywxsrdb wfdcvceln szdzvylc ? zyqtaqlt ijxffdzern kfeeedkm ebufhbr +/ font +/ body / html diff --git a/hw/hw3/data/spam/1960.2004-08-23.GP.spam.txt b/hw/hw3/data/spam/1960.2004-08-23.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..52e6a9e476fbd99f72b30b299433d7afeb396208 --- /dev/null +++ b/hw/hw3/data/spam/1960.2004-08-23.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: ordering this pain medication +page is loading . . +image not showing ? see message here . +as seen on cbs news , fox news and oprah , +your cheapest source for viagra , cialis , xanax , +valium and hundreds more top - quality medication ! +look here +expunge my address 2 +% rnd _ body \ No newline at end of file diff --git a/hw/hw3/data/spam/1993.2004-08-26.GP.spam.txt b/hw/hw3/data/spam/1993.2004-08-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..ad861734a73de915688f20bc342cc90a834a2aba --- /dev/null +++ b/hw/hw3/data/spam/1993.2004-08-26.GP.spam.txt @@ -0,0 +1 @@ +Subject: - want a new laptop ? - get one free ! diff --git a/hw/hw3/data/spam/2030.2004-08-30.GP.spam.txt b/hw/hw3/data/spam/2030.2004-08-30.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c25305cfd0133f579633d81c5b42c2d8cfe27e86 --- /dev/null +++ b/hw/hw3/data/spam/2030.2004-08-30.GP.spam.txt @@ -0,0 +1,115 @@ +Subject: entourage , stockmogul newsletter +ralph velez , +genex pharmaceutical , inc . ( otcbb : genx ) +biotech sizzle with sales and earnings ! +treating bone related injuries in china +revenues three months ended june 30 , 2004 : $ 525 , 750 vs . $ 98 , 763 year +ago period +net income three months ended june 30 , 2004 : $ 151 , 904 vs . +( $ 23 , 929 ) year ago period ( source : 10 q 8 / 16 / 04 ) +look how these chinese companies trading in the usa did and what +they would ' ve made your portfolio look like if you had the scoop on +them : ( big money was made in these stocks by savvy investors who +timed them right ) +( otcbb : caas ) : closed september 2 , 2003 at $ 4 . 00 . closed december 31 , +2003 : $ 16 . 65 , up 316 % +otcbb : cwtd ) : closed january 30 , 2004 at $ 1 . 50 . closed february 17 th +at $ 7 . 90 , up 426 % +ordinary investors like you are getting filthy , stinking ri ' ch in +tiny stocks no one has ever heard of until now . +this biotech bad boy ( genx ) is already out of stealth mode and is +top line revenue producing ! do you see where we ' re going with this ? +biotech sizzle with sales and earnings ! +about genex pharmaceutical , inc . ( product distribtued to 400 +hospitals in 22 provinces ) +genex pharmaceutical , inc . is a biomedical technology company with +distinctive proprietary technology for an orthopedic device that +treats bone - related injuries . headquartered in tianjin , china , the +company manufactures and distributes reconstituted bone xenograft +( rbx ) , to 400 hospitals in 22 provinces throughout mainland china . +rbx is approved by the state food and drug administration ( sfda ) in +china ( the chinese government agency that regulates drugs and +medical devices ) . rbx offers a modern alternative to traditional +methods of treating orthopedic injuries . ( source : news release +7 / 27 / 04 ) +recent press release headlines : ( new product tested and large +acquisition in the works ! ) +* genex pharmaceutical adopts new proprietary technology , +substantially reduces manufacturing costs , sees positive impact to +earnings +* genex pharmaceutical signs letter of intent to acquire one of the +world ' s largest producers of vitamin bl +* genex pharmaceutical sees strong earnings growth for 2004 and 2005 +* genex pharmaceutical 2 nd quarter revenue up 432 % , gross profit up +380 % , net income soars , sees continued earnings momentum for +remainder of 2004 +* genex pharmaceutical ' s micro - particle rbx medical product expands +to the dental markets +* could this be a " rising star stock " for your portfolio ? you may +easily agree that the company is doing some dynamic things . some of +these small stocks have absolutely exploded in price recently . +* you may want to consider the " chinese fortune cookie " strategy : +rising star chinese companies trading in the us . . consider adding +genx to your portfolio today ! +dis - claimer : information within this ema - il 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 risk +factors and others are fully detailed in the company ' s sec filings . +we urge you to read them before you invest . the publisher of this +letter 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 ema - il pertaining to investing , +stocks or securities must be understood as information provided and +not investment advice . the publisher of this letter advises all +readers and subscribers to seek advice from a registered +professional securities representative before deciding to trade in +stocks featured within this ema - il . 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 this letter 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 acheive 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 . the publisher of +this letter has no relationship with caas and cwtd . ( source for +price information : yahoo finance historical ) . in compliance with the +securities act of 1933 , sectionl 7 ( b ) , the publisher of this letter +discloses the receipt of twenty four thousand dollars from a third +party , ( dmi , inc ) 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 adver - tisement and is not without bias . 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 publisher of this letter believes this +information to be reliable but can make no guar - antee as to its +accuracy or completeness . use of the material within this ema - il +constitutes your acceptance of these terms . +indemnity urbanite fogy denude registrable usia pilfer ethylene pounce pisces mutate water dialect contrast seymour molest commonality epidermic liquefaction prom koenig cookbook clio sixteenth casteth barrage borax told irredeemable desmond circle , finch parch farkas fum arrogant neumann remission marten countryside silty bird placenta diphthong crass typhoid eyesight diatom extendible clip midspan insomniac continuation . woebegone borealis pyramidal brandish sepal abnormal career avertive verdict bath collie canal rpm jolly primeval wong dishwasher noose magician accentuate apparel apache aerogene palmetto halsey rosetta springy despot depend sloe cattleman beginner exorcise cranberry von dissonant . \ No newline at end of file diff --git a/hw/hw3/data/spam/2055.2004-08-31.GP.spam.txt b/hw/hw3/data/spam/2055.2004-08-31.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..bf897362a8c05c2c812287ebc201ee89be53bc7f --- /dev/null +++ b/hw/hw3/data/spam/2055.2004-08-31.GP.spam.txt @@ -0,0 +1,48 @@ +Subject: urgent reply +overseas stake lottery +international spain . +batch number : at - 036 sbo 6 - 03 +dear sir / madam , +we are pleased to inform you that as a result of our +recent lottery draw held on the 20 th dec . 2003 , your +email address attached to ticket number 29521463895 +with serial number 612 - 642 draw lucky numbers +8 - 12 - 03 - 25 - 31 - 40 which consequently won the 2 nd +category for a lump sum pay out of us $ 1 , 200 . 000 . 00 +( one million two hunndred thousand united states +dollar ) . +note that all participants in this lottery program +have been selected randomly through a complete ballot +system drawn from over 25 , 000 . companies and 40 , 000 +indiviadual email addresses from all search engine and +website . +this programmed take place every year and is +promoted and sponsored by eminent personalities like +the sultan of brunei , king fad of saudi arabia , +bill gates of microsoft inc . and other corporate organizations . +this is to encourage the use of the internet worldwide . +for security purpose and clearity , we advise that you +keep your wining information confidential until your +claims have been processed and your money remmited to +you . this is part of our security protocol to avoid +double claim and unwarranted abuse of this program by +some participant in our nest year usdl 0 millions +lottery . +you are requested to contact our clearance +officer below to assist you with your winnings and +subsequent payments . all winning must be claimed not +later than one month after the date of this notice . +please note , in order to avoid unnecessary delays and +complications , remember to quote your referance 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 +and thank you for being part of our program . +note : you are authomatically disqualified if you are +below 25 years of age . +all reply should be through my private email address : +hrrywilliam @ yahoo . com only for security reasons . +yours sincerel +mr williams harry , +( lottery coordinator ) +get your free she . com e - mail address at http : / / www . she . com diff --git a/hw/hw3/data/spam/2075.2004-09-04.GP.spam.txt b/hw/hw3/data/spam/2075.2004-09-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c0577d6cba46036b36dcb4252078b37476cdd550 --- /dev/null +++ b/hw/hw3/data/spam/2075.2004-09-04.GP.spam.txt @@ -0,0 +1 @@ +Subject: diff --git a/hw/hw3/data/spam/2111.2004-09-10.GP.spam.txt b/hw/hw3/data/spam/2111.2004-09-10.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..17e264ed7e23cc5c612234771b1489f7468c4297 --- /dev/null +++ b/hw/hw3/data/spam/2111.2004-09-10.GP.spam.txt @@ -0,0 +1,28 @@ +Subject: today ' s daily sales for angelo only +newel chancy anorthosite postal loop gander zorn contract caught image diplomatic aiken doctrine cowpunch internecine hearken kendall . +cal nevins moreover archae decease intramolecular meridional permissible bronzy bronchiolar dressy homeostasis search bundy crandall alkane grippe healthy bottleneck florence value cohesive campion interlude finance agile apple filet selfridge deprecatory sobriety rowdy snuffer gottfried maggot elegy hog . +butt bestseller marginalia isomorph cybernetic census glom cress comedy betsy charity fervent dawn dreg snoopy opinionate quell oppressive cassette antares lindsey statistician strategy grass despot chad catapult slack environ airtight fierce bar precession female bantus accompany orin assign . +cryptic christopher chalcedony mammoth montana walden grout luke algonquin cadre alleyway literal competitor kowloon uniaxial coors corset gangling ministerial impermeable elsie modesty hacksaw negro cannister tamarind aida coffer davis banana fullerton . +sparkman oman woodland adenoma tulip coolidge homogeneity attitude tactician dante controversial mustache scaup fiancee nelsen can ' t bamboo thenceforth bootlegger charlottesville wacke coat actual ailanthus female bumblebee ablate filter bazaar wiretap bawd shareholder melbourne photo barbados postgraduate aeschylus elongate arching gideon . +junctor chalk appendage reub segment vivid amorous expellable written affiance merchandise warhead handkerchief bourbaki diet platte exorcist schoolhouse delaware bolster whereon crouch gallantry censor . +wash negate backstitch ineffective walls delete ancestry flashy repentant bellyfull easel patsy akin likewise cinch carlson histamine collaborate geiger fang tombstone deerskin elliptic discern sst rigid cumulate galapagos . +renewal aspirate min sneer tangential minsk tidewater affiliate concordant populate birdie eigenspace centenary codeword rib crabmeat airspace lore cretaceous choppy otis bronco dispersible effeminate cygnus ferrite deathbed dictate coadjutor stain age drunken bracket . +troll monogamy comet odd cachalot berlin freetown policy assign alleyway embezzle corundum wooster bunyan contretemps durward compulsion . +nightdress scriptural proscription accuracy remedial expenditure cincinnati backstitch dear flax portugal . +patristic contagious arrhenius huntley cit gunsling requisition future stank ayers campus appeasable dredge fontainebleau advantageous nut emphysema admitted . +crux indescribable diphtheria borax brunette spectroscopy mary broth counterpoise dagger plantain alabaster demountable stanchion compulsion courtyard baldpate rampart category frau spaniard greedy emittance argument weston boule stalactite culvert dingo glance opiate cinematic grape tabernacle boeotian berkshire butane permeable inattention . +adjectival denmark tam dwell beman fadeout harris augustine charley cheese demijohn mastery put badland urchin pdp . +woodside job whippany stave cake nocturne wing drama melanin secrete romania abbey brighten boatload elena pentagon dye whitlock johnsen diploidy pecan nanking hydroelectric crony deterring daphne gossamer . +latinate emphases reverie b glare accentual aurora minnow boeing courtroom hoe profane bard sportswear serbia sine rhino snort yam scraggly patentee dwight chandelier nodal spurious yarn ironwood saleslady bend bract katz . +diocese bushnell exculpate lumbermen chantey financier excelsior comparator claimant neuroanatomy more marie twig . +defeat interim amiss applause bandgap conjure heroes bodybuilding convivial betelgeuse philosopher prefix hydroxyl shear speedup corral bold borrow perfusion dryden judicatory transept stella backpack shrine cart debussy rite arabesque ironic khartoum aroma manic goldstein grandnephew . +embarcadero illume idyll manifold coherent annals battelle identity doherty surveillant castor eighteen incompetent egypt teratology bujumbura thruway schoolgirlish butterfield . +inclination pueblo wilkinson we titanate thanksgiving below smoky midsection dear country toni collard stephenson vesper anniversary homecoming absolute conservator television tacky vantage breakup bobby eumenides deterrent dickerson wiseacre sly palmolive placate . +vying shout otherworldly peritectic expert mccullough morphemic clubhouse arsine resorcinol adjutant agree arsine jetliner bellmen tub vessel caryatid covert typescript areaway approbation capella christlike heinrich roadblock speedy bemadden blink scott mongolia contrary hooligan clod pellagra meditate beat bedimmed . +shiloh runway pyridine borosilicate conifer o ' dwyer santiago deactivate firewall war mccauley efferent diabolic shrinkage . +lessor joliet distortion casbah idolatry hondo cyprus torrance height heaven project dowager logjam azerbaijan vault iroquois coronet yalta splenetic compare mischievous angstrom hieratic couscous bonze buckboard optic epistle retain easternmost telephony elevate tapa pick static crumble oligarchic embeddable chaplain . +invasion knotty barometer enrico politician cattail cardiod conquer heckman besotted chinamen assail beige chunk mba someone ' ll dactylic gaffe acetate stockroom hoop mailman gainful infinity nostril dedicate salient infancy slice isentropic corrigenda upland advisory buddhism . +fuel hinman seething written emile stuck beauregard til muskellunge gnome penetrable laban dubious mickelson incalculable epistemology macaque cuny decertify kevin airborne menu courteous buckshot effluvia quitting appellate doubloon inductee trellis . +bimodal campanile saucepan ball chambermaid nylon nightgown mini commend bereft been disturbance sham bipartite deemphasize slab beast shamrock chatty francoise debrief sonar separate confuse parks alterate comptroller gruesome bangle downside senorita dharma . +sudden aitken testate ellipse dutchess imperishable veneto x assist morass tactual blest hurd meat plagiarism horntail indefensible crab cyanic . +nihilism stevedore leukemia amiss dolan sculpture yogurt fluorescein automat bernstein coach deflector secular portray daylight inequity forswear gal s hodgepodge adventitious bulblet chronicle watermelon coyote frock consanguineous did radon stab chinese blockade haunch desist polopony ancillary ludicrous bathe . diff --git a/hw/hw3/data/spam/2167.2004-09-15.GP.spam.txt b/hw/hw3/data/spam/2167.2004-09-15.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..ce262789227968d0ed5d1414d6c6ec2c16767407 --- /dev/null +++ b/hw/hw3/data/spam/2167.2004-09-15.GP.spam.txt @@ -0,0 +1 @@ +Subject: get it free - ibm thinkpad computer ! diff --git a/hw/hw3/data/spam/2242.2004-09-22.GP.spam.txt b/hw/hw3/data/spam/2242.2004-09-22.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..28e7a60134c0b96830c0c6f9e7a3b0756e5c35f7 --- /dev/null +++ b/hw/hw3/data/spam/2242.2004-09-22.GP.spam.txt @@ -0,0 +1 @@ +Subject: we ' ve found a school for you ! diff --git a/hw/hw3/data/spam/2353.2004-10-02.GP.spam.txt b/hw/hw3/data/spam/2353.2004-10-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..64c33ee6456ef11747d4528ec1bc657d3e1b8960 --- /dev/null +++ b/hw/hw3/data/spam/2353.2004-10-02.GP.spam.txt @@ -0,0 +1,14 @@ +Subject: vlagra : discreet , no prescription , fast shipping ! +today ' s special : +v - i - a - g - r - a , retails for $ 15 , we sell for as low as $ 1 . 90 ! ! ! +- private online ordering ! +- world wide shipping ! +- no prescription required ! ! +check it out : http : / / www . zbaqooqk . info / 92 / +mimi nesbittwanker gibson law +qwertyl 2 electricfool joanna wombat concept stingl mimi +cherry jamesl marcus +gary khantarzan miranda raptor +e - mail twins zhongguo +sugar mollylcanela bird justinl +asdfghjk jkmdan tanya cuddles sasha wombat gray diff --git a/hw/hw3/data/spam/2377.2004-10-05.GP.spam.txt b/hw/hw3/data/spam/2377.2004-10-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..139630669a3a02e659c665585bea6d04de49a664 --- /dev/null +++ b/hw/hw3/data/spam/2377.2004-10-05.GP.spam.txt @@ -0,0 +1,17 @@ +Subject: all me ^ ds here paliourg +user id : 3 compendia +date : tue , 05 oct 2004 04 : 12 : 32 - 0300 +mime - version : 1 . 0 +content - type : multipart / alternative ; +boundary = - - 886915596469801750 +- - - - 886915596469801750 +content - type : text / plain ; +content - transfer - encoding : 7 bit +why pay more when you can enjoy the best and cheapest pills online ? +nearly 80 types to choose which makes ours pharmacy the largest and the best available . +no appointments . +no waiting rooms . +no prior prescription required . +see why our customers re - order more than any competitor ! +this is 1 - time mai | ing . no removal are re - qui - red +- - - - 886915596469801750 - - diff --git a/hw/hw3/data/spam/2430.2004-10-08.GP.spam.txt b/hw/hw3/data/spam/2430.2004-10-08.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..034feb4e50d4b3a32080d306e4c93cc5bf1bdac1 --- /dev/null +++ b/hw/hw3/data/spam/2430.2004-10-08.GP.spam.txt @@ -0,0 +1,12 @@ +Subject: don ' t be fooled abazis +abazis +the lowest price of all med ' s is here . +* vicodin ( $ 45 only ) +* via - gra ( $ 57 only ) +* vaiium ( $ 49 only ) +* hydrocodone ( $ 49 only ) +* phen - termine ( $ 88 only ) +we are the be - st available nowadays . +http : / / www . local 247 . biz +this is 1 - time mai - | ing . no re moval are re quired +wnjtcuzzbhavzqoug 7720 xnwcwsqxf diff --git a/hw/hw3/data/spam/2455.2004-10-09.GP.spam.txt b/hw/hw3/data/spam/2455.2004-10-09.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e75c49030cd04edbbe530de88882cb35ab6b3a9 --- /dev/null +++ b/hw/hw3/data/spam/2455.2004-10-09.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: sex that hurts - stretch till they squeal ! ! ! +monster dicks mercilessly abuse tight tender cunts ! +huge black cocks pound squealing white bitches ! +big fuckpoles ram into tiny virgins ' cum - splattered faces ! +see it all at all big cocks ! +please remove me of this list diff --git a/hw/hw3/data/spam/2581.2004-10-23.GP.spam.txt b/hw/hw3/data/spam/2581.2004-10-23.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..f96a0dc4b36d03f90d91767c1e82fd0cd79a1d1f --- /dev/null +++ b/hw/hw3/data/spam/2581.2004-10-23.GP.spam.txt @@ -0,0 +1,4 @@ +Subject: meet over 1 million girls sigletos +meta http - equiv = content - type content = text / html ; charset = iso - 8859 - 1 +/ size = + 2 color = # 0033 ccloading . . . please wait . / fontbr / ba href = http : / / hotbabes . ishow . toimg src = http : / / www . embsy . com / banners / hp 2 . jpg border = 0 / abr +brfont size = + 2 color = # 0033 ccswingers online ! brthe hottest dating / swingers meeting place ever . brcheck us out 100 % free , you wont be dissapointed . / fontbrfont color = # ffffffhttp : / / sigletos . com our children stupid pensil arrives while their white balloon is thinking . br our odd shaped cat is angry . br her daughters white small laptop is thinking and mine white recycle bin snores . br her beautiful mobile phone stands - still . br their golden well - crafted laptop snores and our red glasses walks . br whose round - shaped binocyles smells . br any red baby stares . br their soft white forg makes sound . br a bluish computer stinks and perhaps our fancy door fidgeting . br any given purple well - crafted red caw arrives . br whose small ram is angry . br their little cat stinks as soon as a odd shaped laptop fidgeting . br our children expensive small laptop spit as soon as her daughters golden glasses run . brbr sigletos @ iit . demokritos . gr / font / center / body / html diff --git a/hw/hw3/data/spam/2649.2004-10-27.GP.spam.txt b/hw/hw3/data/spam/2649.2004-10-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4033f57f8a1a29ed619221f485a95003f4dbb9bb --- /dev/null +++ b/hw/hw3/data/spam/2649.2004-10-27.GP.spam.txt @@ -0,0 +1,20 @@ +Subject: security alert on microsoft internet explorer +dear suntrust bank customer , +to provide our customers the most effective and secure online access +to their accounts , we are continually upgrading our online services . as +we add new features and enhancements to our service , there are certain +browser versions , which will not support these system upgrades . as many +customers already know , microsoft internet explorer has significant ' holes ' +or vulnerabilities that virus creators can easily take advantage of . +in order to further protect +your account , we have introduced some new important security standards +and browser requirements . suntrust security systems require that you test +your browser now to see if it meets the requirements for suntrust internet +banking . +please sign +on to internet banking in order to verify security update installation . +this security update will be effective immediately . in the meantime , some +of the internet banking services may not be available . +suntrust internet banking +copyright © 2004 suntrust +- - > diff --git a/hw/hw3/data/spam/2756.2004-11-08.GP.spam.txt b/hw/hw3/data/spam/2756.2004-11-08.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..2185d874e6106ff5ec8621b728f57e322301b613 --- /dev/null +++ b/hw/hw3/data/spam/2756.2004-11-08.GP.spam.txt @@ -0,0 +1 @@ +Subject: home loans & refinancing at very low rates ! diff --git a/hw/hw3/data/spam/2794.2004-11-11.GP.spam.txt b/hw/hw3/data/spam/2794.2004-11-11.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..163e042f5bc4dd90dbbd0d20f15d0e32a6845a6e --- /dev/null +++ b/hw/hw3/data/spam/2794.2004-11-11.GP.spam.txt @@ -0,0 +1,37 @@ +Subject: quick way to buy soft - ware +variety of top manufacturer software at wholesale cheap pricing ! +satisfaction and lowest prices guaranteed ! +at our soft portal we stock major brands like microsoft , adobe , symantec , macafee , and much more . +just take a quick look and you will reveal hundreds of titles priced lower than most wholesalers . +microsoft windows xp professional +$ 50 +adobe photoshop cs v 8 . 0 pc +$ 80 +microsoft office xp professional +$ 100 +microsoft windows 2000 professional +$ 50 +adobe pagemaker v 7 . 0 pc +$ 80 +adobe illustrator cs v 11 . 0 pc +$ 80 +coreldraw graphics suite v 12 pc +$ 100 +microsoft sql server 2000 +$ 90 +symantec norton antivirus 2004 professional +$ 15 +symantec norton systemworks 2003 professional +$ 50 +micorosoft windows 2000 server +$ 70 +adobe acrobat v 6 . 0 professional pc +$ 100 +microsoft office 2003 professional +$ 80 +microsoft windows 2003 enterprise server +$ 100 +redhat linux 9 . 0 +$ 60 +search for more software . . . +don ' t waste and save ! install and enjoy ! diff --git a/hw/hw3/data/spam/2807.2004-11-12.GP.spam.txt b/hw/hw3/data/spam/2807.2004-11-12.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..0a9a11df36a07a174a6cef4cd9ac492aeb669f2f --- /dev/null +++ b/hw/hw3/data/spam/2807.2004-11-12.GP.spam.txt @@ -0,0 +1,10 @@ +Subject: x p pro $ 50 +pc weekly : system comparison +wlndows x ' p pro + offlce x ' p pro - 80 doiiar ( 80 % off ! ) +wlndows x ' p - 50 doiiar ( 75 % off ! ) +complete results +rosary babyneuralgia maple unitarybathroom +vexatious yoreprimitivism as carvencyanamid +oak conducebernhard zoom duetaarhus +terrible yeast goerjames +satin hatefulye \ No newline at end of file diff --git a/hw/hw3/data/spam/2888.2004-11-20.GP.spam.txt b/hw/hw3/data/spam/2888.2004-11-20.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..9ea3a0497f6f3a45013c7fac6633462ff5191678 --- /dev/null +++ b/hw/hw3/data/spam/2888.2004-11-20.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: 80 ( % off mediccationn +mediccationns at lowesst pricess everyy ! +over 80 . % offf , pricess wontt get lowerr +we selll vic ' od ( in v , ia . gra x , ana . x +http : / / www . bym 3 d 5 now . com / ? refid = 87 diff --git a/hw/hw3/data/spam/2957.2004-11-27.GP.spam.txt b/hw/hw3/data/spam/2957.2004-11-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..25a0b0e371af56afb77a589228802b1a791a14f5 --- /dev/null +++ b/hw/hw3/data/spam/2957.2004-11-27.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: re : orderr your mdedicationns now +mediccationns at lowesst pricess everyy ! +over 80 . % offf , pricess wontt get lowerr +we selll vic ' od ( in v , ia . gra x , ana . x +http : / / www . sentthemeasure . com / ? a = 411 diff --git a/hw/hw3/data/spam/2987.2004-11-30.GP.spam.txt b/hw/hw3/data/spam/2987.2004-11-30.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..634911abf0edd31fd874d1d0e3f819fc557af5f1 --- /dev/null +++ b/hw/hw3/data/spam/2987.2004-11-30.GP.spam.txt @@ -0,0 +1,14 @@ +Subject: we want to cheat +someone +wants to meet you ! +find +out who your match could be . . . +view +singles in your area ! +click +here +you +are being contacted cause someone looked at your profile or you signed up +to a dating related site . +if you would like to be removed from our high quality lists please click +here and allow 48 h to be completely removed from our database diff --git a/hw/hw3/data/spam/3035.2004-12-03.GP.spam.txt b/hw/hw3/data/spam/3035.2004-12-03.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..3829e0f1875470cc97e694188858a3c17b87b2d3 --- /dev/null +++ b/hw/hw3/data/spam/3035.2004-12-03.GP.spam.txt @@ -0,0 +1,12 @@ +Subject: heisser fetish +mann war das ein wochenende ! +geile schlampen in lack und leder , fesselungen . atemberaubender sex unter +extremen bedingungen . +wow , da ging aber einer ab . sowas habe ich noch nie gesehen . +geile videos und massenhaft heftige bilder und alles unter einem dach +wo ich das gesehen habe ? +na hier : +http : / / www . netporni . com +g?nn dir mal das vergn?gen +michi +lif diff --git a/hw/hw3/data/spam/3042.2004-12-05.GP.spam.txt b/hw/hw3/data/spam/3042.2004-12-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..d4f688e9c8004cf22c212e9290b9005a108cf6af --- /dev/null +++ b/hw/hw3/data/spam/3042.2004-12-05.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: pain is killing you +sun , 05 dec 2004 06 : 36 : 29 - 0500 diff --git a/hw/hw3/data/spam/3072.2004-12-06.GP.spam.txt b/hw/hw3/data/spam/3072.2004-12-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4105303cda2551984a2780a6c3503bc184b284b4 --- /dev/null +++ b/hw/hw3/data/spam/3072.2004-12-06.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: colloquy +hi , this is christine replying back . i think you were referred by a friend of the website . are you new to dating housewives ? they are some pretty hot girls in there but i ' d like to show you what i ' m about on my webcam first . i live in within your area code so maybe we could hook up after as well . anyways , hope to hear from you soon . . . +http : / / www . usapayboy . com / ora / enter . php +kisses , +christine : - ) diff --git a/hw/hw3/data/spam/3173.2004-12-13.GP.spam.txt b/hw/hw3/data/spam/3173.2004-12-13.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..a03830f87f7e5a3a3fff097ba4b0f413bedb0d29 --- /dev/null +++ b/hw/hw3/data/spam/3173.2004-12-13.GP.spam.txt @@ -0,0 +1,17 @@ +Subject: better pricing means more savings to you . +great savings on all quality rx drugs . we have a variety of products at +budget prices . +we extend the best deals on your medical drugs . are you looking for a +better price for your high cholesterol or weight reduction drugs ? we have +over 600 different drugs to select from for all your medical needs . +fast delivery service right to the registered address provided . +press here to enter +more meds here online than i would have expected , , even got the meds for +hair loss . barny r . sd +asmore soldiers come home with physical injuries and mental health +problems , it becomes increasingly clear . and federal officials and +veterans groups fear the country won ' t fulfill its promise to care for +its +during the vietnam war , it could take a wounded soldiera month to make it +home for treatment . iraq is different , partly because it ' s an urban +battlefield and diff --git a/hw/hw3/data/spam/3302.2004-12-26.GP.spam.txt b/hw/hw3/data/spam/3302.2004-12-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..82f166d084dd2beaea210fb9f0e1e82ab0df46e0 --- /dev/null +++ b/hw/hw3/data/spam/3302.2004-12-26.GP.spam.txt @@ -0,0 +1,15 @@ +Subject: refill notification ref : dfo - 102056072 +refill notification ref : mp - 01408304990 +dear paliourg @ iit . demokritos . gr , +our automated system has identified that you most likely are ready to refill your recent online pharmaceutical order . +to help you get your needed supply , we have sent this reminder notice . +please use the refill system ( click this link ) to obtain your item in the quickest possible manner . +thank you for your time and we look forward to assisting you . +sincerely , +garland guthrie +metro snapshot forborne unix pathology clause linguist bike chill ancestry +dominick vade plagiarist warehouse tempt conway southernmost spa pottery +cottrell adept vest corridor doug ineradicable confound senor protozoa apostolic dusenbury +isle idiocy bethlehem louise committee butyrate annoyance adventitious +archival columnar dot dressy colatitude labyrinth valiant neurosis +hanoverian elution bathos pedantic steven directrices grilled dignity diff --git a/hw/hw3/data/spam/3312.2004-12-27.GP.spam.txt b/hw/hw3/data/spam/3312.2004-12-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a83076c6c998287e5b8287ea0ed24915a8eec9e --- /dev/null +++ b/hw/hw3/data/spam/3312.2004-12-27.GP.spam.txt @@ -0,0 +1,11 @@ +Subject: some advice to him +mon , 27 dec 2004 11 : 16 : 55 - 0600 +good day : +after viewing your record we are unable to a p prove your +mor tga g e / r e financ e at the r at e of 3 . 00 . however we +can give you 4 . 0 deal . +if you are satisfied , then we will need you to +verify some information below . +http : / / www . checkdrs . com / +thank you +ricky robison \ No newline at end of file diff --git a/hw/hw3/data/spam/3343.2004-12-29.GP.spam.txt b/hw/hw3/data/spam/3343.2004-12-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c2e57e5cf0c1509f7cea64d916692a2277e2175 --- /dev/null +++ b/hw/hw3/data/spam/3343.2004-12-29.GP.spam.txt @@ -0,0 +1,17 @@ +Subject: italian crafted rolex from $ 75 to $ 275 - free shipping +heya , +do you want a rolex watch ? +in our online store you can buy replicas of rolex watches . they look +and feel exactly like the real thing . +- we have 20 + different brands in our selection +- free shipping if you order 5 or more +- save up to 40 % compared to the cost of other replicas +- standard features : +- screw - in crown +- unidirectional turning bezel where appropriate +- all the appropriate rolex logos , on crown and dial +- heavy weight +visit us : http : / / ealz . com / rep / rolex / +best regards , +hilton jones +no thanks : http : / / www . ealz . com / z . php diff --git a/hw/hw3/data/spam/3383.2005-01-04.GP.spam.txt b/hw/hw3/data/spam/3383.2005-01-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..9a458390144a1b8fcc586490fc022aa06cf3dac3 --- /dev/null +++ b/hw/hw3/data/spam/3383.2005-01-04.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: enjoy your partner +http : / / dietred . biz / toyz +to stop getting advertisements from this advertiser , click - here +market research +8721 santa monica boulevard , # 1105 +los angeles , ca 90069 - 4507 +sys inf +win 2 k v diff --git a/hw/hw3/data/spam/3455.2005-01-11.GP.spam.txt b/hw/hw3/data/spam/3455.2005-01-11.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..8be89a01ca00ba780ee94f74b963163a261908a6 --- /dev/null +++ b/hw/hw3/data/spam/3455.2005-01-11.GP.spam.txt @@ -0,0 +1,18 @@ +Subject: cheapest meds you ' ll find . +discount drugs . . . save over 70 % +including new softtabs ! the viagra that disolves under the tongue ! ! +simply place 1 half a pill under your tongue , 15 min before sex . +you will excperience : +- a super hard erection +- more pleasure +- and greater stamina ! ! +we ship world wide , and no prescription is required ! ! +even if you ' re not impotent , viiagra will increase size , pleasure and power ! +give your wife the loving she deserves ! ! ! +we are cheaper supplier on the internet . retail price is 15 ea , = ( +our internet price is 1 . 17 each ! ! ! = ) +many many other meds available . +thanks for your time ! +http : / / aujobs . net / ? aa +check out our party pack as well ! +confidentiality assured ! diff --git a/hw/hw3/data/spam/3562.2005-01-23.GP.spam.txt b/hw/hw3/data/spam/3562.2005-01-23.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..fac790477cba208783acb7efbbc5580ac1bf7a38 --- /dev/null +++ b/hw/hw3/data/spam/3562.2005-01-23.GP.spam.txt @@ -0,0 +1,123 @@ +Subject: the daily stock barometer +investor aiert - l r c j - brand new stock for your attention +lauraan corporation - stock symbol : l r c j +breaking news reieased by the company on friday after the ciose - watch +out the stock go crazy on monday morning 24 th of january . +current price : $ 0 . 12 +current price : $ o . 12 +projected specuiative price in next 5 days : $ o . 42 +projected specuiative price in next 15 days : $ 0 . 6 o +lauraan corporation ( lauraan ) is a premier provider of home +entertainment and home automation products and services to the new home market . +the company selis primariiy through homebuilders to homebuyers who are +building homes in the $ 30 ok , and up range . +lauraan is an eariy stage company in the process of deveioping its +business , nationwide , through acquisitions of existing home technology +companies in seiect markets throughout the country . the company has an +experienced management team that has years of experience in the home +technology industry . +current price : $ 0 . 12 +current status +lauraan has compieted its first acquisition , syslync of georgia +( georgia ) . the company plans to acquire 3 more | ocations in the next 4 months +( lois are negotiated and ready to be announced . ) georgia currently has +annuaiized revenues of $ 5 ook and is expected to double its monthly +revenue in the next 6 months . the three next acquisitions wi | | add an +additional $ 2 . 5 million in revenue . +long - term strategy +the company pians to raise funds to make acquisitions throughout +strategic new home markets and create a nationa | brand with revenues of +$ 50 - 75 million by 2 oo 7 . lauraan will be recognized for its quality of +service , value provided , and the simplicity of its soiutions . +breaking news : lauraan corporation announces new servicing and buiider +agreements +grapevine , texas , jan 14 , 20 o 5 / prnewswire - firstca | | via comtex / - - +lauraan corporation ( l r c j ) ( lauraan ) , a provider of home +entertainment and automation products for the new home market , announced today that +their wholiy - owned subsidiary , syslync of georgia , ( syslync ) has +completed an exciusive agreement with certicom , inc . a nationa | provider of +home and commercia | security systems , to service their residentia | +accounts in the atlanta area . in addition , syslync has been named the sole +instalier for new instaliations of residential alarms for certicom and +wil | be their provider of other home technoiogy products too . +sysiync also announced today that they were seiected as the preferred +provider of home technology products and services for atlanta - based lou +freeman properties , inc . , a developer and builder of custom homes in +the $ 2 oo , ooo to $ 1 , ooo , ooo plus , range . +these two agreements wil | more than double the homes we touch +throughout the atlanta area , stated david watson , genera | manager of syslync , +and the agreements wil | provide sysiync with steady , recurring revenue +streams important to our profitability . +lauraan is a home entertainment and technoiogy solutions provider that +offers buiiders and homeowners a singie source for their audio / video , +home theater , security , computer and home automation needs . through its +company - owned stores , lauraan subsidiaries work directiy with builders +and home 0 wners , to design and install home technoiogy soiutions that f +i t the homeowner ' s | ifestyle and budget . +safe harbor act disc | @ imer : this press reiease contains 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 ( the exchange act ) , and as such , may involve risks and +uncertainties . forward - | ooking statements , which are based on certain +assumptions and describe future pians , strategies , and expectations , are +generaliy identifiable by the use of words such as believe , expect , +intend anticipate , estimate , project , or simiiar expressions . +these forward - | ooking statements relate to , among other things , +expectations of the business environment in which the company operates , +projections of future performance , potential future performance , perceived +opportunities in the market , and statements regarding the company ' s +mission and vision . the company ' s actual resuits , performance , and +achievements may differ materia | | y from the resuits , performance , and +achievements expressed or impiied in such forward - | ooking statements due to a +wide range of factors which are set forth in our annua | report on form lo - ksb on file with the sec . +read this | ega | notes before you do anything else : +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 involve discussions with respect to predictions , goais , +expectations , beliefs , plans , projections , objectives , 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 could cause +actua | resuits or events to differ materia | | y from those presently +anticipated . forward | ooking statements in this action may be identified +through the use of words such as : projects , foresee , expects , +estimates , beiieves , understands will , part of : anticipates , or that +by statements indicating certain actions may , could , or might +occur . a | | information provided within this email pertaining to investing , +stocks , securities must be understood as information provided and not +investment advice . emerging equity alert advises al | readers and +subscribers to seek advice from a registered professional 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 . piease have in mind that the interpretation of the +witer of this newsietter about the news pubiished 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 yourseif and judge by yourseif about the details in it . +in compliance with section 17 ( b ) , we disciose the hoiding of l r c j +shares prior to the publication of this report . be aware of an inherent +conflict of interest resulting from such hoidings due to our intent to +profit from the liquidation of these shares . shares may be sold at any +time , even after positive statements have been made regarding the above +company . since we own shares , there is an inherent confiict of interest +in our statements and opinions . readers of this publication are +cautioned not to piace undue reiiance on forward - | ooking statements , which are +based on certain assumptions and expectations invoiving various risks +and uncertainties , that could cause resuits to differ materially from +those set forth in the forward - | ooking statements . +piease be advised that nothing within this email shall constitute a +solicitation or an invitation to get position in or se | | any security +mentioned herein . this newsletter is neither a registered investment +advisor nor affiliated with any broker or dealer . this newsietter was paid +$ 19560 from third party to send this report . al | statements made are our +express opinion only and shouid be treated as such . we may own , take +position and se | | any securities mentioned at any time . this report +includes forward - | ooking statements within the meaning of the private +securities litigation reform act of 1995 . these statements may inciude terms +as expect , believe , may , wiil , move , undervalued and +intend or simiiar terms . +if you wish to stop future mailings , or if you fee | you have been +wrongfuliy piaced in our | i s t , please gohere +( - stockmaker 2005 @ yahoo . com - ) diff --git a/hw/hw3/data/spam/3591.2005-01-26.GP.spam.txt b/hw/hw3/data/spam/3591.2005-01-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4f0fcbf694f87e6adc361046213d568fba7ad05 --- /dev/null +++ b/hw/hw3/data/spam/3591.2005-01-26.GP.spam.txt @@ -0,0 +1,38 @@ +Subject: save a bundle on meds ! +font color = whiteisaac center future phoenixl ricky express jojo jan cougars / fontbrhl +align = centerbfont color = # ffo 000 we never +close / font / b / hl p align = centerfont size = 4 * fast discreet +prescriptionsbr * doctors on call 24 / 7 br * overnight shippingbr * no +charge if not approved / font / p p align = centerfont size = 4 a +href = http : / / s 63 bozoawesome . 092 . alwando . comclick here to enter pharmacy / a / font / p p align = centerbfont color = # 000080 +size = 5 testimonials / font / bfont size = 4 br font +color = # 000080 ii lost 60 lbs in 4 months . simply amazing ! ! br +/ i / font / fontfont color = # 000080 size = 2 linda m . peoria +il / font / p p align = centerfont color = # 000080 ifont +size = 4 viagra changed my life . wish i had tried it sooner . br +/ font / ifont size = 2 mick h . shreveport , la / font / font / p p +align = centerfont color = # 000080 ifont size = 4 i received my order +the next day . very impressed with this service . br i will definitely +recommend and use you again . / fontbr / ifont size = 2 terry s . boise , +id / font / font / p p align = centerfont color = # 000080 ifont +size = 4 no lines no hassles . i will use again . / fontbr / ifont +size = 2 annette k . springfield , ok / font / font / p p +align = centerbfont size = 5 confidentiality , accuracy andbr hassle +free service . br br / fontfont size = 4 all part of our commitment to +you . / font / bbr br gone forever are the headaches , hassles and high +costs of obtaining thebr pharmaceuticals you want and need . br br you +now have a friend in the medical field withbr universalmeds . com . using the +speed and user - friendlinessbr of the internet universalmeds . com has +simplified yourbr ability to research your own health problemsbr and +autonomously discover the available options for treatment . br br font +size = 4 a +href = http : / / s 63 lulukenneth . 092 . alwando . comclick here to +enter pharmacy / a / font / p br br br br br br br br br +br br br brfont color = white +ruth percywarriors stingray larryl +isaac orchidbinky taffy t - bone sapphire johnson lamer +yoda mikel theking +miki romanelectric fireball fletch +guess percy oranges +lorraine pisceswhitney mimi charliel +pacers frogspacers cracker orchid khan benoit spitfire diff --git a/hw/hw3/data/spam/3687.2005-02-04.GP.spam.txt b/hw/hw3/data/spam/3687.2005-02-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..42b17f22830a5aeb009ff817a4c1810f3814adb8 --- /dev/null +++ b/hw/hw3/data/spam/3687.2005-02-04.GP.spam.txt @@ -0,0 +1,153 @@ +Subject: featured company earns highest rating of the year +tiger team technoiogies ( otc - t t m t ) +leading developer of a unique patented process for +transforming business operations of medica | service +providers ( source : news 1 / 4 / 05 ) +current price : - $ o . 08 +reasons to consider t t m t : ( source : company website ) +* tiger team technologies ( t 3 ) , is a | eading deveioper +of a +unique patented process for transforming business +operations +of medica | service providers through state - of - the - art +communication hardware and software technologies . t 3 +has +exclusive rights on this patented process , which +guarantees +secure and bonded eiectronic fiie transmission in +accordance +with federal mandated hippa compliance requirements . +this +translates to total patient privacy and security which +is key to +reducing the | iability and medica | premiums piaced on +providers . based in st . paul , mn , the company seeks to +pursue an aggressive growth strategy targeted at +corporate +and individual medical practices by leveraging this +exciusive +transmission process as an incentive for the medica | +community to outsource existing services . +* capitaiizing on increasing demand for hippa compiiant +guaranteee and secure and bonded transmissions , +including all +| icenses and certifications required for handiing +medical files +and performing transcription services . +* employing t 3 s exclusive and patented process +designed +to deliver secure transmissions bonded up to $ 2 , 50 o +per +transmission . +* establishing a certification program for medica | +industry +simiiar to iso 9000 or six sigma programs appiied to +industria | environments . +* offering medical community a bundle of services with +high +level of security and redundancy and 3 o % reduction in +costs . +* leading advantages over competition in terms of +process , +technoiogy , service and quality contro | . +recent news : +* tiger team technologies forms group in india for +medica | billing and transcription services +* tiger team technoiogies joins forces with large +insur @ nce carrier ; retains an auditor +* tiger team technologies moves forward in becoming a +reporting company +* tiger team technoiogies announces its intention to be +a fu | | y reporting company +watch for more news that may impact the stock . . +watch this stock trade thursday ! ! good luck . +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 , plans , +projections , objectives , goais , assumptions or future +events or performance are not statements of historica | +fact and may be forward looking 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 | 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 , could , or might occur . as with many +microcap stocks , today ' s company has additional risk +factors that raise doubt about its abiiity to continue +as a going concern . today ' s featured company is not a +reporting company registered under the securities act +of 1934 and hence there is | imited information +available about the company . other factors inciude a +| imited operating history , an accumuiated deficit since +its inception , reliance on | oans from officers and +directors to pay expenses , a nominal cash position , and +no revenue in its most recent quarter . it is not +currently an operating company . the company is going +to need financing . if that financing does not occur , +the company may not be able to continue as a going +concern in which case you could | ose your entire +investment . other risks and uncertainties include , but +are not | imited to , the ability of the company to +complete a pianned bridge financing , market +conditions , the general acceptance of the company ' s +products and technoiogies , competitive factors , +timing , and other risks associated with their +business . the pubiisher of this newsletter does not +represent that the information contained in this +message states ail material facts or does not omit a +materia | 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 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 emai | . none of the materia | +within this report sha | | 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 +publisher of this newsletter is not a re gister ed +in vest ment advisor . subscribers shouid not view +information herein as | egal , 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 wouid need perfect timing to +acheive the results in the examples given . there can +be no assurance of that happening . remember , as +always , past performance is ne ver indicative of future +results and a thorough due diiigence effort , including +a review of a company ' s filings when avaiiable , should +be completed prior to investing . in compliance with +the securities act of 1933 , sectionl 7 ( b ) , the pubiisher +of this newsletter discioses the receipt of thirty one +thousand doliars from a third party , not an officer , +director or affiliate shareholder for the circuiation +of this report . be aware of an inherent confiict 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 wiil sel | at anytime without notice . +this could have a negative impact on the price of the +stock . a | | factua | information in this report was +gathered from pubiic sources , including but not +| imited to company websites and company press +releases . the pubiisher of this newsletter believes +this information to be reiiable but can make no +guaranteee as to its accuracy or compieteness . use of +the materia | within this emai | constitutes your +acceptance of these terms . +if you wish to stop future mailings , or if you fee | you have been +wrongfu | | y placed in our | ist , piease go here +( - stoxo 009 @ yahoo . com - ) diff --git a/hw/hw3/data/spam/3709.2005-02-04.GP.spam.txt b/hw/hw3/data/spam/3709.2005-02-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..63583b2896883dd07905ae40b4af5de5088c937d --- /dev/null +++ b/hw/hw3/data/spam/3709.2005-02-04.GP.spam.txt @@ -0,0 +1,27 @@ +Subject: 94 % off on software - autodesk , corel , xp , adobe - qsa +hi , +find lots of cheap software in our site , +the popular programs +adobe photoshop cs 8 . 0 for only 40 $ , +dvdxcopy platinum 4 . 0 . 38 for 20 $ , +microsoft office system professional 2003 ( 5 cds ) for 50 $ , +corel draw 12 graphic suite ( 3 cds ) for just 65 $ , +roxio easy media creator 7 . 0 for 20 $ , +and much , much more . . . . +take a look on the complete list ! +wonder why our priices are unbelievably low ? +we are currently clearing our goods at incredibily cheeap sale - price in connection with the shutdown of our shop and the closure of the stockhouse . don ' t missss your lucky chance to get the best pricce on dis - count software ! +regards +sharron whitten +no thanks : +- - - - - - - - - - - - - - - - - - - - - - - - +sullivan complainant bestirring absolve adiabatic cosmology mystery disruption enable thieving apparent traipse but septic rush wrongdoing scotch wearisome arisen channel lithospheric crossway eduardo baron compliment purgatory darken ultra belief chaplaincy allison +limpid mayapple game garbage buddha cortex abstinent sensory chimeric nakayama effloresce lima abode initiate curfew cadent +chevron lucille melvin archangel broccoli doll dod germanium acquire stepwise convene dobbin abutting convict butene positron mcgill bullhide beaver editorial dispersive abuse taoist expellable sherwood splash gauss crumb reclamation hobbes war berglund trespass inter scotland martinez midwives flame bertram cryogenic finley allegoric ely fetter dennis asthma alienate confess +lipton beacon +headache albanian juxtaposition permian janice +dimethyl conservatory crossroad civic bloodstream bryozoa odin bureaucrat mccarthy skindive silicic go drib capistrano snap clonic duel chaplaincy ethan +bloomfield shied anaglyph revelry tortoiseshell cayuga still telegraphy flagler prow elijah interstice assassinate ballroom tuscarora +satiate pvc bronchiole thicket bess nobody folk capybara menarche plant particular deaconess margarine ornament larva cilia resultant pocono basketball drastic hypotenuse sailor nv officio lightface siva mensuration spheric germanium purslane sightseer newbold methuen polymeric essential blueback moribund vitiate blustery +apportion aquarius debate astound detonable provincial down tactile sidearm credit filmdom codfish persimmon hypoactive chimney getaway oilman indivisible claremont maier ghent diorama manservant edith rebelled vagary nashville emolument jitterbug atop chronicle balboa analogy thirteen opec fail vitreous palace schoenberg stepson libya almost aerodynamic cotyledon doubt mile ptolemy sight blown billy +abetting molybdenite pain hyannis fleawort thetis illogic consistent veranda condolence configuration belies copolymer bloodline masochism bruit ok dilute pharaoh carboxy alvin drumlin protrude septennial europa facet lore blown draftsman anodic dusenbury skillful diff --git a/hw/hw3/data/spam/3714.2005-02-05.GP.spam.txt b/hw/hw3/data/spam/3714.2005-02-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..c777f5e6f5dee2fbb8bfc843887f6070f0f4a7e8 --- /dev/null +++ b/hw/hw3/data/spam/3714.2005-02-05.GP.spam.txt @@ -0,0 +1,10 @@ +Subject: the bast phharma out ther - same da - y shijpping ! chromium +hi ! this is for sure one of the best pahrma we can +offer you . we can give special deels and +more . just enter the pharmma now . +don ' t hesitate alb +nah cloy +cloven crossword blank compote centrex . assumption chump babbitt chinchilla . cauldron calvary bobby aspirant aspect . +apotheosis cameraman alluvium conclusion . agglomerate bergland consular choreography caracas . +arsine bandpass carlyle . confident buzzer combine . commemorate assignee crinkle biscuit antiperspirant . +coalesce amphioxis biddy baseman arrack . bashful aloe al . alcoa assyria bottommost abreast buzzing d ' etat . camel billiard bland cufflink . \ No newline at end of file diff --git a/hw/hw3/data/spam/3858.2005-02-17.GP.spam.txt b/hw/hw3/data/spam/3858.2005-02-17.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..149b65f7a15e027db0f35d61aa7c14023ae1fe7b --- /dev/null +++ b/hw/hw3/data/spam/3858.2005-02-17.GP.spam.txt @@ -0,0 +1,19 @@ +Subject: learn to save on medications at discount pharmacy +hello , +save your health your money +get all the medication you need at incredible 80 % discounts . +http : / / werwer 4723 . com / ? news +if you need high quality medication and would love to save on outrageous retail pricing , then canadianpharmacy is for you . why would you need a doctor visit , answering unnecessary or embarrassing questions to get the treatment you already know you need ? +choose it yourself and save big on doctor visits and retail prices , in just 2 simple steps ! +[ you should know that our online shop is never a substitute for a doctor consultation , if youre not sure what medication you need , consult a physician first . ] +but if you already know what you need , why pay more ? shopping with our pharmacy allows you to get high quality medication and save money on retail , without compromising your health and safety . +what condition are you seeking treatment for ? +we have medication for +cholesterol , anti depressant , muscle relaxant , men ' s health , pain relief , diabetes , sexual health +many more +big savings without big risks +http : / / werwer 4723 . com / ? news +regards +jesse summers +http : / / werwer 4723 . com / ? news +not interested ? diff --git a/hw/hw3/data/spam/3921.2005-02-25.GP.spam.txt b/hw/hw3/data/spam/3921.2005-02-25.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..5a35fa3d81bd30738183de76f3c6d76847b9ccb0 --- /dev/null +++ b/hw/hw3/data/spam/3921.2005-02-25.GP.spam.txt @@ -0,0 +1,13 @@ +Subject: cialis soft tabs - super viagra +hi ! +we have a new product that we offer to you , c _ i _ a _ l _ i _ s 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 . +simply dissolve half a pill under your tongue , 10 min before sex , +for the best erections you ' ve ever had ! +soft tabs also have less sidebacks ( you can drive or mix alcohol +drinks with them ) . +you can get it at : http : / / v - lineinc . com / soft / +no thanks : http : / / v - lineinc . com / rr . php diff --git a/hw/hw3/data/spam/3973.2005-03-05.GP.spam.txt b/hw/hw3/data/spam/3973.2005-03-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1c2af3e89eb69fe1d0179218064ae0390be51426 --- /dev/null +++ b/hw/hw3/data/spam/3973.2005-03-05.GP.spam.txt @@ -0,0 +1,36 @@ +Subject: investment news : hot stock this week ! " +the u . s . oil report ( hot stock news flash - this one is moving ) +a premium market related service +attn : subscribers , stockbrokers , analysts investors +tradestar corporation ( otc : tirr ) +symbol tirr +est . shares outstanding 38 , 000 , 000 +est . float 2 , 000 , 000 +recent price $ 0 . 71 +tirr is up over 70 % in the past two weeks ! ! ! +tradestar corporation ( tirr ) finishes recompletion of karnes county tx oil well bringing on 35 bpd in production ! ! ! +readers who have followed oil stock recommendations ( otcbb : svse and asurf ) in the past have profited nicely . +the company +tradestar corp . ( otc : tirr ) , is a junior oil gas exploration company that specializes in re - entries and offset drilling for hydrocarbons in an area said to have the largest untapped potential for natural gas in north america . new prices and technologies have exponentially improved the economics and drill success rates average over 90 % . tradestar corp . is engaged in the low - risk development of proven oil and gas properties in texas including the prolific barnett shale gas play south of ft worth . the rapid oil and gas price increases and recent advances in economical drilling , completion and production techniques , have resulted in : +1 accelerated development activity and increased land lease values in this extremely productive area . +2 co - mingling gas flow from several productive sands in each well - - increasing both initial and total output . +3 the opportunity to drill new offset wells - - where success rates are typically over 90 % . ( using oil @ $ 35 . 00 and gas @ $ 4 . 50 - - the pay back on well re - entry costs are estimated to average about 6 months . oil is currently $ 48 and gas $ 6 ! ! ! ! +tirr ' s strategy is to strike oil again ! using current drilling technologies available today the company has begun to tap into low risk , high yield underdeveloped gas reserves in one of the most prolific plays ( barnett shale in central texas ) in the lower 48 states ! ! ! with a balanced portfolio of oil gas properties , an aggressive acquisition campaign , experienced management team , and application of cutting edge ep technologies , we believe that tirr could be the next breakout stock in your investment portfolio . +investors have a ground floor opportunity to own a piece of a company poised to take advantage of skyrocketing world energy prices . these high energy prices have created new opportunities to bring undeveloped domestic reserves on stream with minimal downside risk to the company ! ! ! ! +previous news +tradestar corporation announces barnett shale project +hot springs , ark . , - - tradestar ( otc : tirr ) today announces that it has entered into a joint venture agreement with united production and exploration of houston , texas to reenter and drill a binion parker gas well and prospect in erath county , texas . in addition to the gas well reentry , the prospect , which covers 111 acres , has an additional location to drill a new well . the objective formation of the recompletion and new drill is the barnett shale formation at a depth of approximately 4 , 830 ' to 5 , 030 ' with 200 net feet of anticipated pay zone . estimated reserves in the reentry and new well are 750 , 000 mcf for each well . +why we love this stock +1 . continued rise in world oil gas prices ! +2 . over 30 potential oil gas producing sites in the prolific barnett shale of central texas +3 . strong industry investment banking relationships +4 . strong management - over 50 years of experience in the oil patch +5 . multiple leaseholds and joint venture partners +6 . tight float , low entry price strong upward potential ! +7 . business model offers only real solution to u . s . dependency on foreign oil . +8 . the company recently proposed a joint venture project in the prolific barnett shale natural gas play in central texas with est . reserves of over 10 trillion cubic ft of gas ! +conclusion +tradestar corp . ( tirr ) is getting ready to become a major presence in oil gas fields across texas . tirr ' s potential for large - scale production in prolific and underdeveloped regions like the barnett shale , position the stock for immediate upward movement ! ! ! we believe that tirr is in position to take the petroleum industry by storm . the company ' s resource development is currently ahead of schedule and positive drilling results appear imminent in the near future . revenues are up 50 % over the lst quarter of last year . don ' t miss this fantastic opportunity . for more information on tirr , go to tradestar - corp . com for sec filings or press releases . +this is one of our top recommendations this year . we are giving tirr our seal of approval . +read this : +please be advised that nothing within this email shall constitute a solicitation or an invitation to get position in or sell any security mentioned herein . this newsletter is neither a registered investment advisor nor affiliated with any broker or dealer . this newsletter was paid 400 , 000 shares from a third party to send this report . all statements made are our express opinion only and should be treated as such . we may own , take position and sell any securities mentioned at any time . this report includes forward - looking statements within the meaning of the private securities litigation reform act of 1995 . these statements may include terms as expect , believe , may , will , move , undervalued and intend or similar terms . diff --git a/hw/hw3/data/spam/3979.2005-03-05.GP.spam.txt b/hw/hw3/data/spam/3979.2005-03-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..931292624fb5e70503c66f882ecc4e5990690348 --- /dev/null +++ b/hw/hw3/data/spam/3979.2005-03-05.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: lower lipids and lower risk for heart disease langley +some hills are never seenthe universe is +expanding +album : good stufftitle : bad influence call it +bad big town holds me backbig town skinns my mind +sorry to have troubled you ; but it couldn ' t +be helped +bolan kerlaugir xmo 3 reginlejf diff --git a/hw/hw3/data/spam/3988.2005-03-06.GP.spam.txt b/hw/hw3/data/spam/3988.2005-03-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..967e5e54fda74419bb0ebc24d10616f5e63a1aa1 --- /dev/null +++ b/hw/hw3/data/spam/3988.2005-03-06.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: your pharmacy ta +would you want cheap perscriptions ? http : / / www . prlce . com / diff --git a/hw/hw3/data/spam/4102.2005-03-19.GP.spam.txt b/hw/hw3/data/spam/4102.2005-03-19.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..34bad745d3e6cb267ae7d9e9f59fb804eb14f163 --- /dev/null +++ b/hw/hw3/data/spam/4102.2005-03-19.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: here it is my friend +here it is the password to that amazing adult site . +username : burt 69 ok +password : zzso 02 ji +url : http : / / www . messyland . com / d / h / 1 . php diff --git a/hw/hw3/data/spam/4132.2005-03-28.GP.spam.txt b/hw/hw3/data/spam/4132.2005-03-28.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..148044b8d31660be2a62a82a7bada0599ddfc440 --- /dev/null +++ b/hw/hw3/data/spam/4132.2005-03-28.GP.spam.txt @@ -0,0 +1,7 @@ +Subject: get all the same meds for less . +save up to 80 % off all retail meds . we have the +pain relief you want . no waiting and no hassles . no prescriptions or +appointments . fast discreet shipping to your door . isn ' t it time you +stopped by ? +click here to see the +selection . diff --git a/hw/hw3/data/spam/4152.2005-04-01.GP.spam.txt b/hw/hw3/data/spam/4152.2005-04-01.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..777d7f498b53c2572e0f7e806078057fd3e1162e --- /dev/null +++ b/hw/hw3/data/spam/4152.2005-04-01.GP.spam.txt @@ -0,0 +1 @@ +Subject: free report on the euro tells you how you can gain from it diff --git a/hw/hw3/data/spam/4363.2005-04-24.GP.spam.txt b/hw/hw3/data/spam/4363.2005-04-24.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..52373e7b3ac5c3f032b336e4fe2e66cddc90b317 --- /dev/null +++ b/hw/hw3/data/spam/4363.2005-04-24.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: excellent rx +- - - - 1046043196122050333 +hi varou , +taking the impotence drug with alcohol and food . have discovered that after a workout , on a fairly empty stomach , response is very quick and intense . taken with meals really causes a lag for me . - bob , age 45 +gone forever are the headaches , hassles and high costs of obtaining the pharmacy products you want and need . +we don ' t require any prescriptions . . visit us today . +best regards , +sadie rodrigez +- - - - - - \ No newline at end of file diff --git a/hw/hw3/data/spam/4373.2005-04-25.GP.spam.txt b/hw/hw3/data/spam/4373.2005-04-25.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..40a96546b3e7d3e53e14695a357b2b68d418be6a --- /dev/null +++ b/hw/hw3/data/spam/4373.2005-04-25.GP.spam.txt @@ -0,0 +1,31 @@ +Subject: re : vi - agra valllum c - allis +hello , would you like to spend less on your medlcatlons ? +visit ppharmacybymail shop and save over 7 0 % +v +gr +ia +a $ 200 +( 120 piils ) +ci +li +a +s $ 180 +( 80 pilis ) +va +iu +l +m $ 250 +( 220 piils ) +le +t +vi +ra $ 300 +( 50 pilis ) +x +a +an +x $ 270 +( 200 piiis ) and many other +have a nice day . +p . s . +you will be pleasantly ssurprised with our prices ! \ No newline at end of file diff --git a/hw/hw3/data/spam/4382.2005-04-26.GP.spam.txt b/hw/hw3/data/spam/4382.2005-04-26.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..38d628501fb42e986a2b4053fcb95200f31d043f --- /dev/null +++ b/hw/hw3/data/spam/4382.2005-04-26.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: majestic rx +- - - - 8673849000404220545 +hi varou , +how quickly does it work ? i take 50 mg 15 minutes before love making , and now i can spend hours with foreplay and not worry if i ' m gonna go soft or lose interest . +we have a global network of health professionals with one common goal : to provide a convenient , globally accessible , affordable and safe means in acquring the latest drugs available for all . +no embarassment - prescriptions are always confidential . . visit us today . +best regards , +altha woodring diff --git a/hw/hw3/data/spam/4412.2005-04-29.GP.spam.txt b/hw/hw3/data/spam/4412.2005-04-29.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4e651df4303d62839b82985d3bcf63b22093991b --- /dev/null +++ b/hw/hw3/data/spam/4412.2005-04-29.GP.spam.txt @@ -0,0 +1,198 @@ +Subject: [ auto - reply ] special report reveals this smallcap +rocket stocks newsletter +first we would like to say thank you to al | of our avid readers ! we +have +had huge success over the last few months and have become one of the +most +wideiy read investment newsletters in the worid . we have accomplished +this +by providing timeiy , accurate information on s - tocks with the potential +for +great returns . +rocket s - tocks is not your father ' s investment newsietter ! we focus on +s - tocks with the potentia | to go up in value by weil over 5 oo % . that ' s +what +it takes to make it on to our | ist . these are s - tocks for the risk +toierant +investor ! the beauty of this is that it oniy takes one smart +investment to +make serious profits ! +new deveiopments expected for intelligent sports , inc . s - tock +from $ o . 01 to over $ o . 08 +symbo | : igts . pk +current price : $ 0 . 01 +short term target price : $ o . o 8 +12 month target price : $ o . 17 +intelligentsports . net +we love these small companies . a company | ike this is | ike a siigshot , +pu | | ed back and ready to go . one fortunate turn of events , one big +contract , and the s - tock of a smal | company such as this can explode ! +read on to find out why igts . pk is our top pick this week . +* * * top reasons to consider igts * * * +* unique business model reminisant of goid ' s gym before it exploded +onto the +fitness scene . +* the numbers are staggering and continue to rise daiiy . 15 % of +children / adoiescents are overweight nationwide . source : 2 oo 2 report +by the +centers for disease contro | +* according to the president ' s counci | on physical fitness and sports , +oniy +17 percent of middle and junior high schools and 2 percent of senior +high +schools require daiiy physical activity for ail students . igts is +| ooking +to fill that gap . +* pubiic educational institutions can no | onger afford to keep up with +the +demand for team sports . the time when school sports programs had +enrollment fees of $ 10 is fading , said former nba star and inteiligent +sports , inc . board member , reggie theus . not every parent is wi | | ing +to pay +$ 3 oo enrollment fees for a sport their child is only casually +interested in ; +some parents can ' t afford to pay that much for a sport their chiid +exceis +at . +* igts has plans to be in suburbs across america , providing fitness and +sports opportunities to america ' s youth . +* igts ' s proven business is ready for expansion . +* news ! news ! news ! +here is recent news on the company : +upland , caiif . - - ( business wire ) - - june 17 , 2 oo 5 - - inteliigent sports , +inc . , +continues its focus on providing physical and mental guidance to a | | +student - athietes , by unveiiing pians to begin licensing their youth and +fitness center concept , the sports zone , nationaliy | ater this year . +recognizing the link between athietic participation and personal +success , +publiciy held inte | | igent sports , inc is introducing a new generation +of +youth to athletics through the development of the organized youth +sports +programs and faciiities . +since their fall 2 oo 4 | aunch of the sports zone youth sports and +fitness +center concept in upland , ca , they have seen tremendous growth in their +program options and customer base . the sports zone by intelligent +sports in +upland , caiifornia encompasses a 12 , oo 0 square foot area facility +featuring +two basketbal | courts catering to a wide range of after - school sport +programs , weekend leagues and tournaments for core indoor court sports +including basketball , volleybail , cheerleading , dance , wrestiing , +martial +arts , dodge bal | and more . the sports zone aiso has the abiiity to host +soccer , footbal | and other fieid - reiated athietic activity within the +compiex arena . +i ' m excited to see the business concept expanding as the sports zone +offers +youth a springboard to grow both athletically and inteliectually , +stated +inteiligent sports president , thomas hobson . be it speciaiized sports +skiil +training or persona | deveiopment , we have something for everyone . the +business concept wiil soon be avaiiable through licensing , providing +other +markets a centralized | ocation for a wide - range of sports all deveioped +to +fit the diverse needs of each market . the sports zone concept is based +on +offering a wide variety of programs for youth at every ski | | | eve | . +according to the president ' s counci | on physica | fitness and sports , +only 17 +percent of middle and junior high schools and 2 percent of senior high +schoois require daily physica | activity for all students . with a board +comprised of reggie theus , former nba star , tv anaiyst , and current +head +men ' s basketbal | coach at new mexico state university , and keilen +winsiow , a +member of the nfl hail of fame , inteliigent sports , inc is one company +that +is passionate about filiing that gap for the youth in our communities . +this is a rare opportunity to get in early on a company poised to meet +a +nationwide demand . we beiieve this s - tock has huge potentia | for a +rapid +price increase . +we beiieve the speculative near term target price is - $ 0 . o 8 +we beiieve the speculative long term target price is - $ 0 . 17 +please watch this one trade monday ! ! +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 invoive discussions with respect to predictions , +expectations , beliefs , pians , projections , objectives , goals , +assumptions or +future +events or performance are not statements of historical fact and may be +forward looking 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 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 , +wil | , anticipates , estimates , beiieves , 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 include : 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 +s - tockhoider , suppiies ninety - seven percent of the company ' s raw +materials : +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 fuliy spe | | ed 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 ail material facts or does not omit a material 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 materia | 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 all your money 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 seiected to be referenced based on the favorabie performance +of +these companies . you would need perfect timing to achieve the resuits +in the exampies given . there can be no assurance of that happening . +remember , as always , past performance is never indicative of future +resuits and a thorough due diligence effort , including a review of a +company ' s filings , shouid be compieted prior to investing . in +compiiance +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 shareholder 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 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 +| imited to company websites , sec filings and company press reieases . +the +rocket stock report beiieves 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 . +if you wish to stop future mailings , piease mai | to newsoffl @ yahoo . com diff --git a/hw/hw3/data/spam/4420.2005-04-30.GP.spam.txt b/hw/hw3/data/spam/4420.2005-04-30.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..a3d0f4f57464f6e117590ff0a9e29d2a683bda1f --- /dev/null +++ b/hw/hw3/data/spam/4420.2005-04-30.GP.spam.txt @@ -0,0 +1,5 @@ +Subject: popular software at low low prices . advocated sunshine +observe produce , six man . subject ice light so eat opposite . +cold still start snow home supply , time . much short change land , +had fire . sun , possible to . call dark game live . line , after +summer . what history oh idea stone . mouth an lead . diff --git a/hw/hw3/data/spam/4428.2005-05-01.GP.spam.txt b/hw/hw3/data/spam/4428.2005-05-01.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a1491a9d699bb22c3e5ec8d9fe10199b802ede4 --- /dev/null +++ b/hw/hw3/data/spam/4428.2005-05-01.GP.spam.txt @@ -0,0 +1,9 @@ +Subject: start saving now +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 . +our easy application takes only 1 minute . +http : / / www . jhaevb . info +no thankya : http : / / fro . jbsdq . info diff --git a/hw/hw3/data/spam/4455.2005-05-07.GP.spam.txt b/hw/hw3/data/spam/4455.2005-05-07.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..fdccf263cdaddda99b4b9cb3a2d00e5b184e0ef1 --- /dev/null +++ b/hw/hw3/data/spam/4455.2005-05-07.GP.spam.txt @@ -0,0 +1,23 @@ +Subject: do you like computers +incredible offers : +windows x * p pro 2 oo 2 5 o dollars +o * r * d * e * r : http : / / epsom . gaulhafmk . com +we also have : +- ms picture it premium 9 +- ms sql server 2 ooo enterprise edition +- ms sql server 2 ooo enterprise edition +the offer is valid untill may 16 th +stock is limited +check out +judith lanier +masseur +indrel industria refrigera ? ? o londrinense , londrina 86072000 , brazil +phone : 911 - 547 - 3116 +mobile : 737 - 434 - 1646 +email : otxfcc @ satyamonline . com +this message is beng sent to confirm your account . please do not reply directly to this message +this version is a 27 day definite freeware +notes : +the contents of this message is for understanding and should not be ankara conferee +turnout lou venezuela +time : sat , 07 may 2005 10 : 39 : 39 + 0200 diff --git a/hw/hw3/data/spam/4472.2005-05-10.GP.spam.txt b/hw/hw3/data/spam/4472.2005-05-10.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..7dbf47598e4f3c5c33226c4198034ccdb034a613 --- /dev/null +++ b/hw/hw3/data/spam/4472.2005-05-10.GP.spam.txt @@ -0,0 +1,28 @@ +Subject: small - cap market advisors +hidden gem - new opportunity investor alert ( 4 / 19 / 05 ) +the childrens internet , inc . ( citce . ob ) +near term price proj : $ 1 o +shares outstanding : 26 , 578 , 138 +market cap : $ 81 , 000 , 00 o +in january ' 05 blue horeshoe loved report # 45 ( snsta . ob ) at a price of $ 7 per share . snsta reached a high of $ 42 per share in just a few weeks a gain of over 6 oo % . the featured stock in this report is ( citce . ob ) blue horseshoe loves report # 46 ( citce . 0 b ) +a few reasons to own citce : +- citce is piosed for explosive growth in the internet technology sector +- citce recently received critical acclaim by pc magazine rated higher than the competitive offerings of aol , earthlink and msn , winning the prestigious editors choice award over all the competition landing them a spot on the cover +- 2 : 1 forward split effective 3 / 7 / 2 oo 5 total shares outstanding post - split 26 , 578 , 138 +- market cap as of march 17 th , 20 o 5 of approximately $ 50 million +- the creator of the childrens internet software , and its licensor , is two dog net , inc . founded in 1995 which invested approximately $ 8 million in rd for tci and safe zone security software . +- tci forecasts it will achieve positive cash flow and profitability within one year , and have 333 , ooo paying subscribers at the end of its first year of operations . +- 85 % of all parents with children fewer than 11 years of age have expressed concern for their childs internet safety and 45 % of all parents feel the internet is critical for educational purposes . +- the children ' s internet protection act ( cipa ) is a federal law recently enacted by congress in to address concerns about access in schools and libraries to the internet and other information . the federal communications commission ( fcc ) issued rules to ensure that cipa is carried out . +- five million subscribers ( 1 o % of the domestic universe ) generate approximately $ 300 million in annual net revenues to tci . +about citce : +the childrens internet , inc . ( tci ) is the exclusive world - wide marketer and distributor of the childrens internet , a one of a kind , safe online service offering secure , real time access to pre - selected , pre - approved , age - appropriate educational and entertaining web sites for children pre - school through junior high . the childrens internet provides a child with a rich array of easy to use applications , including secure e - mail , homework help , games , news , learning activities and virtually limitless educational resources all within its loo % safe , predator - free online community protected by the patent - pending , proprietary safe zone technology . +the childrens internet gives parents the best solution available today which lets their child enjoy the tremendous educational and entertaining benefits of the internet without encountering elements that could destroy their innocence forever . +the company is positioned to be the unprecedented global brand leader in the online education and security category for parents , children , and educators . equally important , not only is the product secure , the childrens internet meets the highest educational standards while meeting every childs desire for independence , fun , creativity , and adventure . with disneyesque characteristics , its interactive tools give kids everything they need to succeed in todays world . +tci empowers children to learn , grow and insures that no child will be left behind . +valuation : +keep a real close eye on citce , as one never knows when a sleeping giant will be awakened ! +as always watch this stock trade ! ! ! +conclusi 0 n : +like many exciting opportunities that we uncover , citce is a company whose primary business activity is software technology . we believe that good things could happen including a higher market capitalization and potential rapid stock price appreciation , as the investing public becomes more aware of citces potential . +if you wish to stop future mailings , please mail to news _ let 3 @ yahoo . com diff --git a/hw/hw3/data/spam/4497.2005-05-17.GP.spam.txt b/hw/hw3/data/spam/4497.2005-05-17.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..22e3be1a1c971bcea7c33a91aec8176f1740f46b --- /dev/null +++ b/hw/hw3/data/spam/4497.2005-05-17.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: now this acts quicker and lasts much longer ! +hello ! +vlgr professi 0 nal ( $ 1 . 88 per dose ) +vlgr soft tbs ( $ 1 . 99 per dose ) +generc vlgr ( $ 1 . 8 o per dose ) +clls ( $ 2 . 99 per dose ) +clls soft tbs ( $ 2 . 25 per dose ) +the fear of the lord is the beginning of wisdom and the knowledge of the holy is understanding . much food is in the tillage of the poor but there is that is destroyed for want of judgment . whoso is simple , let him turn in hither and as for him that wanteth understanding , she saith to him , let thine eyes look right on , and let thine eyelids look straight before thee . a merry heart maketh a cheerful countenance but by sorrow of the heart the spirit is broken . diff --git a/hw/hw3/data/spam/4577.2005-05-27.GP.spam.txt b/hw/hw3/data/spam/4577.2005-05-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..a0a66662df6550515679c1fd238adfd66563854a --- /dev/null +++ b/hw/hw3/data/spam/4577.2005-05-27.GP.spam.txt @@ -0,0 +1,2 @@ +Subject: fw : win - dows xp + office xp = 80 dol lars . +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 . \ No newline at end of file diff --git a/hw/hw3/data/spam/4665.2005-06-09.GP.spam.txt b/hw/hw3/data/spam/4665.2005-06-09.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..b52d3fb1a1b0095683fccae483a823d920a76377 --- /dev/null +++ b/hw/hw3/data/spam/4665.2005-06-09.GP.spam.txt @@ -0,0 +1,22 @@ +Subject: a more radiant you +act now . get your +free trial offer of the revelotionary +new anti - wrinkle +complex by derma radiant of beverly hills . +2 - step miracle : +anti - wrinkle complext +ageless eyest +. reduce fine lines and deep wrinkles by 98 % . +. increase collagen synthesis by 350 % . +. remove dark circles and puffiness under the eyes . +dermaradiant +468 north camden drive 2 nd floor +beverly hills , ca 90210 +1 - 800 - 859 - 3265 +cs @ dermaradiant . com +www . dermaradiant . com +if you would rather not receive further emails from derma radiant please go to here . +removal requests : +3305 w spring mountain rd . +suite 60 - 15 +las vegas , nv 89102 diff --git a/hw/hw3/data/spam/4687.2005-06-12.GP.spam.txt b/hw/hw3/data/spam/4687.2005-06-12.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..3761ca5a610f6ea364cf1d36f3ac916acbe70fa9 --- /dev/null +++ b/hw/hw3/data/spam/4687.2005-06-12.GP.spam.txt @@ -0,0 +1,19 @@ +Subject: works wondder +dear sir / madam . +we are please polity d to introduce ourselves as one of the leading online pha pertain rmaceutical shops . +save doddery over 75 percent on meds today with medzmail sho goatherd p +v sudoriferous la +r ferrotype a +l candidate al +overdraught lu +administer g +mandrill c +i gombeen sv stabilizator al +unstop m +sandmanyother . +with each pedicure purchase you get : +top qu lustring aiity +best pri relatival ces +total confidentiai singleeyed ity +home deiiv selfsufficient ery +have a nice day . \ No newline at end of file diff --git a/hw/hw3/data/spam/4735.2005-06-20.GP.spam.txt b/hw/hw3/data/spam/4735.2005-06-20.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..e03e78e22cb1a790570eb60dad06b9d33e0cac59 --- /dev/null +++ b/hw/hw3/data/spam/4735.2005-06-20.GP.spam.txt @@ -0,0 +1,8 @@ +Subject: software at incredibly low prices ( 83 % lower ) . unconscionable botching +gentle always , vary both river joy hour . against phrase early +hair , grass century , numeral . verb , wire as . behind thousand , +face , common . fine does low , snow . long lie case wash job +complete each . make cover bank by where . hit soldier serve at +well force . fly early every . round laugh their . where , smell +mind . rather strong village lay . some fraction we north trade +sit , particular . diff --git a/hw/hw3/data/spam/4743.2005-06-25.GP.spam.txt b/hw/hw3/data/spam/4743.2005-06-25.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..28ca071930650ad666993137be94273f34eea0f4 --- /dev/null +++ b/hw/hw3/data/spam/4743.2005-06-25.GP.spam.txt @@ -0,0 +1,14 @@ +Subject: what up , , your cam babe +what are you looking for ? +if your looking for a companion for friendship , love , a date , or just good ole ' +fashioned * * * * * * , then try our brand new site ; it was developed and created +to help anyone find what they ' re looking for . a quick bio form and you ' re +on the road to satisfaction in every sense of the word . . . . no matter what +that may be ! +try it out and youll be amazed . +have a terrific time this evening +copy and pa ste the add . ress you see on the line below into your browser to come to the site . +http : / / www . meganbang . biz / bld / acc / +no more plz +http : / / www . naturalgolden . com / retract / +counterattack aitken step preemptive shoehorn scaup . electrocardiograph movie honeycomb . monster war brandywine pietism byrne catatonia . encomia lookup intervenor skeleton turn catfish . diff --git a/hw/hw3/data/spam/4766.2005-06-28.GP.spam.txt b/hw/hw3/data/spam/4766.2005-06-28.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..e2aae2f8e9113c2ff5f67d0d393f330ad4308395 --- /dev/null +++ b/hw/hw3/data/spam/4766.2005-06-28.GP.spam.txt @@ -0,0 +1,11 @@ +Subject: account # 20367 s tue , 28 jun 2005 11 : 41 : 41 - 0800 +hello , +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 can now get $ 327 , 000 for as little as $ 617 a month ! +bad credit ? doesn ' t matter , ^ low rates are fixed no matter what ! +follow this link to process your application and a 24 hour approval : +http : / / www . ddrefi . net / ? id = al 7 +best regards , +harrison neely +http : / / www . ddrefi . net / book . php diff --git a/hw/hw3/data/spam/4796.2005-07-03.GP.spam.txt b/hw/hw3/data/spam/4796.2005-07-03.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..8e67ca729276684162db838d30328e62cc228333 --- /dev/null +++ b/hw/hw3/data/spam/4796.2005-07-03.GP.spam.txt @@ -0,0 +1,20 @@ +Subject: greatly improve your stamina +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 +probably not , answered the demon +oranjestad , aruba , +po b 1200 +how old is your mother ? asked the girlmother ' s about two thousand +years old ; but she carelessly lost track of her age a few centuries ago and +skipped several hundreds could you accomplish that , you might command my +services forever +but , having once succeeded , you are entitled to the nine gifts - - three each +week for three weeks - - so you have no need to call me to do my duty diff --git a/hw/hw3/data/spam/4935.2005-07-27.GP.spam.txt b/hw/hw3/data/spam/4935.2005-07-27.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..22dab2441c21c7e5c6aaa02173444642e0417aa9 --- /dev/null +++ b/hw/hw3/data/spam/4935.2005-07-27.GP.spam.txt @@ -0,0 +1,81 @@ +Subject: hp psc 1315 all - in - one @ $ 69 . 00 +hp psc 1315 +all - in - one +printer , scanner , copier +$ 69 . 00 +the hp psc 1315 all - in - one +printer , scanner , copier with reliable , proven technology combines +convenience and ease into one compact +product . +* refurbished +these units of this model are replaced by the +another model of hp now , and therefore bears a r at the end of the +part number . warranty is one year . +visit : http : / / www . computron - me . com for deals +! +your one stop / office # td +01 , jebel ali duty free zonedubai , uae . www . computron - me . com +for latest clearance sale listing contact our +sales department . +for further details please send +your enquiries to : dealers @ emirates . net . aeor contact via www . computron - me . com +compaq +hewlett packard +3 com +dell +intel +iomega +epson +aopen +creative +toshiba +apc +cisco +us +robotics +microsoft +canon +intellinet +targus +viewsonic +ibm +sony +- - - - - - - and lots more +! ! ! +if you have any +complaints / suggestions contact : customerservice @ computron - me . com +tel + 971 4 +8834464 +all prices in u . s . dollars , ex - works , +fax + 971 4 +8834454 +jebel ali duty free zone +www . computron - me . com +prices and availability subject to change +usa - +canada u . a . e . +without +notice . +to receive our special offers +in plain +text format reply to this +mail with the request * for +export only * +this +email can not be considered spam as long as we include : contact +information remove instructions . this message is intended for dealer +and resellers only . if you have somehow gotten on this list in error , or +for any other reason would like to be removed , please reply with " remove +" in the subject line of your message . this message is being sent to you +in compliance with the 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 u . s . congress . +all logos and +trademarks are the property of their respective ownershp only for +sale in the middle east +products may not be exactly as shown +above +- - +to unsubscribe from : computron 4 , just follow this link : +click the link , or copy and paste the address into your browser . +please give it atleast 48 hours for unsubscription to be effective . \ No newline at end of file diff --git a/hw/hw3/data/spam/4979.2005-08-06.GP.spam.txt b/hw/hw3/data/spam/4979.2005-08-06.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..6ee66ddcf0642c8374e19810896a40c27c92b245 --- /dev/null +++ b/hw/hw3/data/spam/4979.2005-08-06.GP.spam.txt @@ -0,0 +1,67 @@ +Subject: a better way is at handheldmed . com +a new day has dawned . there is a better way ! +introducing the new handheldmed website ! +www . handheldmed . com +whether you are a new customer or an old customer , we redesigned our new website with you in mind ! +some of the new features you will find include : +1 . enhanced customer education +a . 3 easy steps to become a handheldmed member . +b . answers to common questions like ' what are ebooks ? ' what is the hhm mobipocket reader ? ' and ' how do i get started ? ' . +c . online tours of handheldmed ebooks and the hhm mobipocket reader as they appear on palm , pocket pc , sony ericsson , symbian , and windows pc . see how it works before you even download a free trial . +2 . improved site navigation +a . browse medical ebooks by operating system - palm os , pocket pc , sony ericsson , symbian , windows mobile , and windows pc . +b . new ebook store front page for each operating system . +3 . seamless download , installation , and registration on windows pc and mac os +a . tutorials guide you through the download , installation , and registration process step by step whether you ' re downloading a free trial or a purchased ebook . +1 . quicknav functionality allows users familiar with the process to skip steps . +b . register once and only once regardless of how many ebooks you purchase . +4 . re - engineered on - line support structure +a . new " ask technical support " form collects important information about your problem quickly and easily , providing you with more efficient support . +5 . shopping cart secured by verisign . +e - book conversion to mobipocket +handheldmed is also finishing up the conversion of our existing reference library from the ez reader format to the new standard in ebook platforms : mobipocket reader . +note : as of january 1 , 2006 , handheldmed will no longer support the ez reader platform . although handheldmed has worked tirelessly to make all of our ez reader reference content available for mobipocket , due to some licensing constraints , we have not and will not be able to convert all of our existing titles . watch for more information on which of these titles this will affect . +new titles coming out soon include : +tabers 20 th ed . august 10 , 2005 +harrisons manual of medicine 16 th ed . september 1 , 2005 +the merck vet manual 8 th ed . september 10 , 2005 +30 % off sale on top ten titles ! ! ! +to celebrate our new website and web customer experience we are taking 30 % off all of our top 10 selling references for 30 days only ! +these include : +tabers 20 ( when available ) +a to z +drug facts +5 minute clinical consult 05 +5 minute emergency consult +5 minute pediatric consult +merck manual +nqcd +hodt +5 minute infectious disease +cvmstat +if you are a previous owner of an ez reader version of one of these books , you are eligible for even greater discounts . each of the titles that have been converted from ez reader to mobipocket ( eligible titles are highlighted in red above ) conversion price is only $ 25 ! ! check it out today ! ( conversion price applies to same version only ) +patient tracker is back , and better than ever ! +is your practice or organization looking for a low cost , integrated , robust , easy to use patient charting application for your desktop , network or handheld devices ? +look no further ! +patient tracker t is back and better than ever ! +in april , 2005 shatalmic , llc signed an exclusive agreement with handheldmedr , inc . to take over development , sales and support for the patient trackerr line of products . with extensive experience in the hand held and desktop markets , shatalmic is the perfect partner with handheldmedr to develop new features and functionality for the patient tracker product family . +new features and updates for the patient tracker suite include ; +- updates and bug fixes for palm os version ; addresses most compatibility issues with newer devices . +- new installer for pocketpc that works on newer devices enabling syncing to desktop +- new installer for desktop pro soon to be released that will include updated microsoft sql server installation . +product pricing : +patient tracker handheld ( palm os , pocketpc or windowsmobile ) - $ 9 . 95 +patient tracker desktop ( pro or lite ) - $ 299 . 00 , additional licenses $ 199 . 00 each . +call tony pitman today ! @ ( 801 ) 336 - 4712 or email tony @ shatalmic . com . +special group and institution volume pricing is available . +if you want more information about patient tracker when new updates and features are available , please click here to be added to the patient tracker specific mailing list . shatalmic assures you that you will not receive spam email only patient tracker specific information . they do not sell your email address to anyone . they are very serious about privacy and this is totally an opt in mailing service . +by signing up for email updates , you will be added to a list of users that will have the chance to participate in the patient tracker 2005 survey . this survey will help shape the future direction of patient tracker by the answers that users / customers give . +about shatalmic llc . +shatalmic , llc is a privately - held , software developer founded company headquartered in layton , utah . since 1977 , we have been working in the computer industry . shatalmic was formed in 1995 and was recently incorporated as an llc in 2004 . +groups institutions +for group or institutional volume discount pricing or any questions about the new features and functionality of these new handheldmed editions : +please contact susan jones : susanj @ handheldmed . com +every possible effort is made to send only to those on our subscriber list . +if you received this message in error , please accept our apologies and select the following link +immediately unsubscribe +if that link fails , send an email to unsubscribe @ handheldmed . com diff --git a/hw/hw3/data/spam/5020.2005-08-16.GP.spam.txt b/hw/hw3/data/spam/5020.2005-08-16.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..4bed7c2b49bf94d37457cee996b29181da4aa121 --- /dev/null +++ b/hw/hw3/data/spam/5020.2005-08-16.GP.spam.txt @@ -0,0 +1,6 @@ +Subject: funny +may aplomb be angola may prize some workload +on hop but pluto ! brandt on samson +or syndic ! cursor it denigrate and damp +in antoine see secrete not wilderness try expedient +a schematic and vengeful , fullback . out , babe , go here diff --git a/hw/hw3/data/spam/5057.2005-08-22.GP.spam.txt b/hw/hw3/data/spam/5057.2005-08-22.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..9e7d0eb016769b25edbf25b736246a3c331b805b --- /dev/null +++ b/hw/hw3/data/spam/5057.2005-08-22.GP.spam.txt @@ -0,0 +1,12 @@ +Subject: do you care ? +them kind so work game , meet . expect describe red , figure +mother . atom try throw excite pattern . guess early , fill farm +result twenty scale . three captain other study , above thus . wait +nation kept every sent . new next , true shall time , temperature , +some . change rather sound mother east up up . clock , too , world +after . but , last , find where after inch , plant . your pound meat +eye , had what talk . +- - +phone : 471 - 137 - 7601 +mobile : 409 - 193 - 8124 +email : stony @ verizon . net diff --git a/hw/hw3/data/spam/5079.2005-08-25.GP.spam.txt b/hw/hw3/data/spam/5079.2005-08-25.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..d37cccf56ad8ee2897f267f99471f62b0a3fe27a --- /dev/null +++ b/hw/hw3/data/spam/5079.2005-08-25.GP.spam.txt @@ -0,0 +1,7 @@ +Subject: young cocks deep inside worn out pussies ! +mommies always know how to treat their sons the special way . +now you get a unique opportunity to witness it with your own eyes . +the curtain is raised - the truth is revealed . the action has begun . +. . sonmomfilm : : shocking family revelations featuring mom and son ! . . +click here for free tour +remove your email diff --git a/hw/hw3/data/spam/5110.2005-08-31.GP.spam.txt b/hw/hw3/data/spam/5110.2005-08-31.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..86111de9406ef853a0fc2bec8ef5fb0390d11645 --- /dev/null +++ b/hw/hw3/data/spam/5110.2005-08-31.GP.spam.txt @@ -0,0 +1,15 @@ +Subject: want something extra in bed ? +use cialis soft tabs . tons of happy customers all around +the world . you will feel like a man again . +cialis acts up to 36 hours , while other medicines like +viagra only last for a couple of hours . the active +ingredient is tadalafil , same as in brand cialis . +just dissolve half a pill under your tongue , 10 min before +action , for the best erections you ' ve ever had ! cialis +also have less sidebacks ( you can drive or mix alcohol +with them ) . no prior prescription is needed . +* save up to 80 % compared to the pharmacies . +* worldwide shipping +* impress your woman today ! +read more here : http : / / unwarily . com / cs / ? coupon +no thanks : http : / / unwarily . com / rr . php diff --git a/hw/hw3/data/spam/5132.2005-09-02.GP.spam.txt b/hw/hw3/data/spam/5132.2005-09-02.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..2e5b76494a4e6c329bc95599359d839e24c95e8e --- /dev/null +++ b/hw/hw3/data/spam/5132.2005-09-02.GP.spam.txt @@ -0,0 +1,24 @@ +Subject: replica rolex and other popular brands +hi , get these replica watches from $ 199 : +1 . roiex +2 . cartier +3 . breitiing +4 . a . iange sohne +5 . patek phiiippe +6 . bvigari +7 . franck muiier +8 . omega +9 . tag heuer +http : / / www . mrut . com / re / aug / +you can order a gift boxset if you want . +thanks , +ji glen +- - - - - original message - - - - - +from : ji glen +to : ji glen +sent : fri , 02 sep 2005 10 : 15 : 57 - 0800 +subject : replica rolex and other popular brands +have a look ? +- http : / / www . mrut . com / re / aug / +do you already one ? +- http : / / www . mrut . com / z . php diff --git a/hw/hw3/data/spam/5145.2005-09-04.GP.spam.txt b/hw/hw3/data/spam/5145.2005-09-04.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..1e65d6a5ba3607ab2444b20d5c3052d38f7829ea --- /dev/null +++ b/hw/hw3/data/spam/5145.2005-09-04.GP.spam.txt @@ -0,0 +1,15 @@ +Subject: cant find you on msn . . . +but ride it january a exercise bebut +parochial on electrophorus not finesse orand minerva +but awl the hash but , capricorn , +burden a armful seebut collision it icicle +in agatha maynot diffract and handset , +cohn it ! because , utensil may antecedent +itit precipice or jelly it ' s infield seeit +salaried try sleepwalk be corpus onbe cowmen +not irradiate but referee andor gable some +cicero and credenza ! . +if you wanna , raw move cleeqing here +thank you , +georgette neff +acourtesy manager diff --git a/hw/hw3/data/spam/5155.2005-09-05.GP.spam.txt b/hw/hw3/data/spam/5155.2005-09-05.GP.spam.txt new file mode 100644 index 0000000000000000000000000000000000000000..f686f6b9b20e298f36ceeb2443f34192af181e8e --- /dev/null +++ b/hw/hw3/data/spam/5155.2005-09-05.GP.spam.txt @@ -0,0 +1,10 @@ +Subject: he ' s gone for the night +you ' ve got to check out my new site ; somebody taught +me how to upload them last nite ; im pretty new at this but +check em out and see what u think ! +pics are here ! +just copy and pa ste the addr . ess below into your browser to visit us . +http : / / www . zagapony . com +plz no more +http : / / www . zagapony . com / getofflist / +biennial eden astral cony goodrich deify turnabout romp soap mercenary catsup . train cholinesterase paschal troublesome rhode crete levis saloonkeeper bray . fashion . diff --git a/hw/hw3/data/spam_X_test.npy b/hw/hw3/data/spam_X_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..99d2f2ac0954d4c1916e699267d57caea493fbe9 --- /dev/null +++ b/hw/hw3/data/spam_X_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3c7c26b5570907d4848b7ca68268308713e38f4e58c83c5635aef6046edcf47e +size 3233192 diff --git a/hw/hw3/data/spam_X_train.npy b/hw/hw3/data/spam_X_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..94196570fe09805b5784e9892b97997e88e40d54 --- /dev/null +++ b/hw/hw3/data/spam_X_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5756808e66c8635899dbec37e106e19efcf7ddd612c8a527b4a8950d618b028f +size 2855072 diff --git a/hw/hw3/data/spam_data.mat b/hw/hw3/data/spam_data.mat new file mode 100644 index 0000000000000000000000000000000000000000..b5c54514af46ac566bedd5b3c34871c26610b79a --- /dev/null +++ b/hw/hw3/data/spam_data.mat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b1d4c1678021ca6f8a474ac850bd5069ae56da43d7e2d085fe47c0c015b2504c +size 6129728 diff --git a/hw/hw3/data/spam_y_train.npy b/hw/hw3/data/spam_y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..55d838508f6e7718d9a80180e1e73138ce3d3b4e --- /dev/null +++ b/hw/hw3/data/spam_y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb133c4e322039d2d32c5f2b1250acbb214852e3832e1f9660fdf8b33008a14d +size 41504 diff --git a/hw/hw3/data/test/1047.txt b/hw/hw3/data/test/1047.txt new file mode 100644 index 0000000000000000000000000000000000000000..fe51b35f73580303bba2cf9ffa7778e8349bee1b --- /dev/null +++ b/hw/hw3/data/test/1047.txt @@ -0,0 +1,117 @@ +Subject: request +from : mr joe mark +email fax : 1 561 619 2791 +email : mrjoemark @ yahoo . com +dear sir +request for urgent business relationship – strictly +confidential . +firstly , 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 +anyone apprehensive and worried , but i am assuring you +that all will be well at the end of the day . +we have decided to contact you first by your email due +to the urgency of this transaction , as we have been +reliably informed that it will take at least two to +three weeks for a normal post to reach you . so we +decided it is best using the email . let me start by +first introducing myself properly to you . i am dr . +kaku opa , a director general in the ministry +of mines and power and i head a three - man tender board +appointed by the government of the federal republic of +nigeria to award contracts to individuals and +companies and to approve such contract payments in the +ministry of mines and power . the duties of the +committee also include evaluation , vetting and +monitoring of work done by foreign and local +contractors in the ministry . +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 . 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 : between 1996 +and 1997 , this committee awarded contracts to various +contractors for engineering , procurement , supply of +electrical equipments such as transformers , and some +rural electrification projects . +however , these contracts were over - invoiced by the +committee , thereby , leaving the sum of us $ 11 . 5 million +dollars ( eleven million five hundred thousand united +states dollars ) in excess . this was done with the +intention that the committee will share the excess +when the payments are approved . +the federal government have since approved the total +contract sum which has been paid out to the companies +and contractors concerned which executed the +contracts , leaving the balance of $ 11 . 5 m dollars , +which we need your assistance to transfer into a safe +off - shore and reliable account to be disbursed amongst +ourselves . +we need your assistance as the funds are presently +secured in an escrow account of the federal government +specifically set aside for the settlement of +outstanding payments to foreign contractors . we are +handicapped +in the circumstances as the civil service code of +conduct , does not allow us to operate off - shore +accounts , hence your importance in the whole +transaction . +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 of us $ 11 , 500 , 000 . 00 ( eleven million five +hundred thousand united states dollars ) , while 70 % +will be for us ( members of this panel ) and the +remaining 10 % will be used in offsetting all +debts / expenses 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 . +it does not matter whether or not your company does +contract projects of this nature described here , the +assumption is that your company won the major contract +and sub - contracted it out to other companies . more +often than not , big trading companies or firms of +unrelated fields win major contracts and subcontract +to more specialized firms for execution of such +contracts . we are civil servants and we will not want +to miss this once in a life time opportunity . +you must however , note that this transaction will be +strictly based on the following terms and conditions +as we have stated below , as we have heard confirmed +cases of business associates running away with funds +kept in their custody when it finally arrive their +accounts . we have decided that this transaction will +be based completely on the following : +( a ) . our conviction of your transparent honesty and +diligence . +( b ) . that you would treat this transaction with utmost +secrecy and confidentiality . +( c ) . that upon receipt of the funds , you will promptly +release our share ( 70 % ) on demand after you have +removed your 20 % and all expenses have been settled . +( d ) . you must be ready to produce us with enough +information about yourself to put our minds at rest . +please , note that this transaction is 100 % legal and +risk free and we hope to conclude the business in ten +bank working days from the date of receipt of the +necessary information and requirement from you . +endeavour to acknowledge the receipt of this letter +using my email fax number 1 561 619 2791 or my email +address mrjoemark @ yahoo . com . i will bring you into +the +complete picture of the transaction when i have heard +from you . +your urgent response will be highly appreciated as we +are already behind schedule for this financial +quarter . +thank you and god bless . +yours faithfully , +mr joe mark +do you yahoo ! ? +launch - your yahoo ! music experience +http : / / launch . yahoo . com \ No newline at end of file diff --git a/hw/hw3/data/test/1053.txt b/hw/hw3/data/test/1053.txt new file mode 100644 index 0000000000000000000000000000000000000000..c026778e9612409cbb913b8161553f53ae758ec1 --- /dev/null +++ b/hw/hw3/data/test/1053.txt @@ -0,0 +1,12 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/1084.txt b/hw/hw3/data/test/1084.txt new file mode 100644 index 0000000000000000000000000000000000000000..7e4394bcdd2d26b1a3d30d942bb46f0e59768479 --- /dev/null +++ b/hw/hw3/data/test/1084.txt @@ -0,0 +1,4 @@ +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 diff --git a/hw/hw3/data/test/1090.txt b/hw/hw3/data/test/1090.txt new file mode 100644 index 0000000000000000000000000000000000000000..30e6f61bdb548ee97a8fbcb923f30936597212ec --- /dev/null +++ b/hw/hw3/data/test/1090.txt @@ -0,0 +1,25 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/1245.txt b/hw/hw3/data/test/1245.txt new file mode 100644 index 0000000000000000000000000000000000000000..614903dbed9e9cdd69f4a029f5da1d464ff359dc --- /dev/null +++ b/hw/hw3/data/test/1245.txt @@ -0,0 +1,54 @@ +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 +> +> \ No newline at end of file diff --git a/hw/hw3/data/test/1251.txt b/hw/hw3/data/test/1251.txt new file mode 100644 index 0000000000000000000000000000000000000000..0996c88b12b0ca3fcbc6c9bf43faa3f1148044f4 --- /dev/null +++ b/hw/hw3/data/test/1251.txt @@ -0,0 +1,16 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/1279.txt b/hw/hw3/data/test/1279.txt new file mode 100644 index 0000000000000000000000000000000000000000..26a977b92d2d1f5c4f76a5f9b0d2efc76280bcf1 --- /dev/null +++ b/hw/hw3/data/test/1279.txt @@ -0,0 +1,5 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/1286.txt b/hw/hw3/data/test/1286.txt new file mode 100644 index 0000000000000000000000000000000000000000..e38fd2571a432db970d56b99a711b93682dd785b --- /dev/null +++ b/hw/hw3/data/test/1286.txt @@ -0,0 +1,23 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/1292.txt b/hw/hw3/data/test/1292.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4ec43aa367d9c8ce28988300a9ae1e089184cc3 --- /dev/null +++ b/hw/hw3/data/test/1292.txt @@ -0,0 +1,32 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/1325.txt b/hw/hw3/data/test/1325.txt new file mode 100644 index 0000000000000000000000000000000000000000..0123e2676f3b8f0a13be09d13defb00d6303ef2d --- /dev/null +++ b/hw/hw3/data/test/1325.txt @@ -0,0 +1,4 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/1443.txt b/hw/hw3/data/test/1443.txt new file mode 100644 index 0000000000000000000000000000000000000000..11917ad85d2b897673b1cffddb40ad6e961718c9 --- /dev/null +++ b/hw/hw3/data/test/1443.txt @@ -0,0 +1,59 @@ +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 / \ No newline at end of file diff --git a/hw/hw3/data/test/1523.txt b/hw/hw3/data/test/1523.txt new file mode 100644 index 0000000000000000000000000000000000000000..a46aaba654877acb0b724ea279c047824eafa1b2 --- /dev/null +++ b/hw/hw3/data/test/1523.txt @@ -0,0 +1,7 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/1537.txt b/hw/hw3/data/test/1537.txt new file mode 100644 index 0000000000000000000000000000000000000000..bc4525669c19d7c2ef9349c9946b53624f8c1ff4 --- /dev/null +++ b/hw/hw3/data/test/1537.txt @@ -0,0 +1,17 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw3/data/test/1709.txt b/hw/hw3/data/test/1709.txt new file mode 100644 index 0000000000000000000000000000000000000000..f4f7ba5afb269fae9f71fd37a0bbcc875aa38a5c --- /dev/null +++ b/hw/hw3/data/test/1709.txt @@ -0,0 +1,8 @@ +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 diff --git a/hw/hw3/data/test/1721.txt b/hw/hw3/data/test/1721.txt new file mode 100644 index 0000000000000000000000000000000000000000..a065ee9a495a39f5f451b1f392e1459ec60bf410 --- /dev/null +++ b/hw/hw3/data/test/1721.txt @@ -0,0 +1,48 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/1735.txt b/hw/hw3/data/test/1735.txt new file mode 100644 index 0000000000000000000000000000000000000000..78f3da112710b78b366c8a1c7c2b50f91d705221 --- /dev/null +++ b/hw/hw3/data/test/1735.txt @@ -0,0 +1,39 @@ +Subject: stop creditors in their tracks 10891 +* * 5 free ebooks just for signing up . sent via email within +48 hours of entering your name and email address . +* * no pressure to buy ! +* * test drive it for as long as you wish for free ! +* * only get involved if you like what you see . +we will put 800 in your downline in 30 days ! ! +visit http : / / www . fastbizonline . com / bizopp / +try it for feee ! +it ' s working for me ! ! i ' m earning a guaranteed minimum +monthly income of $ 3 , 000 . 00 ! ! and you can too ! +accept our no cost , no obligation opportunity to +watch your business grow before you spend a dime . +visit http : / / www . fastbizonline . com / bizopp / +why are we doing this ? because when you see the +explosive growth and momentum , and how this +program was designed to help any sincere marketer +succeed , you ' ll accept the downline we ' ve built under +you and harvest your piece of this incredible event . +join the team of internet marketing professionals that +are presenting this opportunity to hundreds of people +every day ! +there ’ s absolutely no risk in joining +you owe it to yourself to +see it work today ! ! +visit http : / / www . fastbizonline . com / bizopp / +fire your boss ! +pay off your bills ! +spend more time with your family ! +buy a new car ! +pay off your mortgage ! +are all of these things are possible ? +you bet they are ! +visit http : / / www . fastbizonline . com / bizopp / +visit http : / / www . fastbizonline . com / bizopp / +visit http : / / www . fastbizonline . com / bizopp / +if you do not wish to receive any more emails from me , please +send an email to " affiliatel @ btamail . net . cn " requesting to be +removed . diff --git a/hw/hw3/data/test/1906.txt b/hw/hw3/data/test/1906.txt new file mode 100644 index 0000000000000000000000000000000000000000..1d3de7acb14d01d8656eaf337e3268b769bef812 --- /dev/null +++ b/hw/hw3/data/test/1906.txt @@ -0,0 +1,39 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/1912.txt b/hw/hw3/data/test/1912.txt new file mode 100644 index 0000000000000000000000000000000000000000..65ba288d7ebbff5f118ab65373972f047c077d9c --- /dev/null +++ b/hw/hw3/data/test/1912.txt @@ -0,0 +1,10 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/2002.txt b/hw/hw3/data/test/2002.txt new file mode 100644 index 0000000000000000000000000000000000000000..5114edee712863f3863fcc80f86f8a4c5ce851c7 --- /dev/null +++ b/hw/hw3/data/test/2002.txt @@ -0,0 +1,15 @@ +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 ) \ No newline at end of file diff --git a/hw/hw3/data/test/2016.txt b/hw/hw3/data/test/2016.txt new file mode 100644 index 0000000000000000000000000000000000000000..36c1df18038cb933d0dafecc2abcc15af4593217 --- /dev/null +++ b/hw/hw3/data/test/2016.txt @@ -0,0 +1,41 @@ +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 . diff --git a/hw/hw3/data/test/2200.txt b/hw/hw3/data/test/2200.txt new file mode 100644 index 0000000000000000000000000000000000000000..1a819727d325e86e0e19a3f657fef88e1983ad8f --- /dev/null +++ b/hw/hw3/data/test/2200.txt @@ -0,0 +1,9 @@ +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 ! . diff --git a/hw/hw3/data/test/2214.txt b/hw/hw3/data/test/2214.txt new file mode 100644 index 0000000000000000000000000000000000000000..dc289fb2bb986e233bc0db1c5856c64b7f58a35f --- /dev/null +++ b/hw/hw3/data/test/2214.txt @@ -0,0 +1,34 @@ +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 +- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/hw/hw3/data/test/2228.txt b/hw/hw3/data/test/2228.txt new file mode 100644 index 0000000000000000000000000000000000000000..415d89f5c598f3f7a824eb199207a0cfe78d811f --- /dev/null +++ b/hw/hw3/data/test/2228.txt @@ -0,0 +1,21 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/2566.txt b/hw/hw3/data/test/2566.txt new file mode 100644 index 0000000000000000000000000000000000000000..29e4a93418a740ccf1892eb3a7d445c205efdf1a --- /dev/null +++ b/hw/hw3/data/test/2566.txt @@ -0,0 +1,9 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw3/data/test/2572.txt b/hw/hw3/data/test/2572.txt new file mode 100644 index 0000000000000000000000000000000000000000..16bf0563e778c83bf3009740bb1ac2b88b16a6d1 --- /dev/null +++ b/hw/hw3/data/test/2572.txt @@ -0,0 +1,34 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/2599.txt b/hw/hw3/data/test/2599.txt new file mode 100644 index 0000000000000000000000000000000000000000..cd61d57792bed2aa2f72dbb3eadadd638400b6a0 --- /dev/null +++ b/hw/hw3/data/test/2599.txt @@ -0,0 +1,54 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/262.txt b/hw/hw3/data/test/262.txt new file mode 100644 index 0000000000000000000000000000000000000000..2dfa01b7a8291a3bb2e9605b2600a84dd1a5def2 --- /dev/null +++ b/hw/hw3/data/test/262.txt @@ -0,0 +1,13 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/2638.txt b/hw/hw3/data/test/2638.txt new file mode 100644 index 0000000000000000000000000000000000000000..eaf3e1e5bdda7c5bdc2bace250b066783cf36093 --- /dev/null +++ b/hw/hw3/data/test/2638.txt @@ -0,0 +1,3 @@ +Subject: spice up your cellphone with a wallpaper from dirtyhippo . +dress up your phone . visit here . +dxndeueqjdzo \ No newline at end of file diff --git a/hw/hw3/data/test/2758.txt b/hw/hw3/data/test/2758.txt new file mode 100644 index 0000000000000000000000000000000000000000..df11f2ee56f08f7f2bba12571824a6e36c80a02d --- /dev/null +++ b/hw/hw3/data/test/2758.txt @@ -0,0 +1,95 @@ +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 +> +> +> +> +> +> +> +> +> +> +> \ No newline at end of file diff --git a/hw/hw3/data/test/276.txt b/hw/hw3/data/test/276.txt new file mode 100644 index 0000000000000000000000000000000000000000..33e0407b93cd4bf9c68e0dd0a63f5c39252676b9 --- /dev/null +++ b/hw/hw3/data/test/276.txt @@ -0,0 +1,38 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/2764.txt b/hw/hw3/data/test/2764.txt new file mode 100644 index 0000000000000000000000000000000000000000..68f3991a600fbdba136fd75865f4478341e51ac1 --- /dev/null +++ b/hw/hw3/data/test/2764.txt @@ -0,0 +1,103 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/2770.txt b/hw/hw3/data/test/2770.txt new file mode 100644 index 0000000000000000000000000000000000000000..d97ebe9d9e5047bb5e75c7d63c2529af1679dedc --- /dev/null +++ b/hw/hw3/data/test/2770.txt @@ -0,0 +1,19 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/289.txt b/hw/hw3/data/test/289.txt new file mode 100644 index 0000000000000000000000000000000000000000..be64a2237d99d4f3a5a9c31ac2cc6d38337b5916 --- /dev/null +++ b/hw/hw3/data/test/289.txt @@ -0,0 +1,31 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/29.txt b/hw/hw3/data/test/29.txt new file mode 100644 index 0000000000000000000000000000000000000000..df9a68f649e2c8f5f372234c343263df56fcb338 --- /dev/null +++ b/hw/hw3/data/test/29.txt @@ -0,0 +1,16 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/2943.txt b/hw/hw3/data/test/2943.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ec65f799305f03ed5b4687f9db8eeeae1a80838 --- /dev/null +++ b/hw/hw3/data/test/2943.txt @@ -0,0 +1,55 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/2957.txt b/hw/hw3/data/test/2957.txt new file mode 100644 index 0000000000000000000000000000000000000000..0e0c218cd4ac60495d8d6b56474ab3bec12959ca --- /dev/null +++ b/hw/hw3/data/test/2957.txt @@ -0,0 +1,25 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/2980.txt b/hw/hw3/data/test/2980.txt new file mode 100644 index 0000000000000000000000000000000000000000..8a26a7a334e2560929a33f512941c3d727ea9a15 --- /dev/null +++ b/hw/hw3/data/test/2980.txt @@ -0,0 +1,2 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/2994.txt b/hw/hw3/data/test/2994.txt new file mode 100644 index 0000000000000000000000000000000000000000..16f54d84ea51b5ce084fa127d521a60bc63a41c0 --- /dev/null +++ b/hw/hw3/data/test/2994.txt @@ -0,0 +1,60 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3122.txt b/hw/hw3/data/test/3122.txt new file mode 100644 index 0000000000000000000000000000000000000000..051dbcef3acf05b173995d72a6ed8d7fb33be4ec --- /dev/null +++ b/hw/hw3/data/test/3122.txt @@ -0,0 +1,35 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3136.txt b/hw/hw3/data/test/3136.txt new file mode 100644 index 0000000000000000000000000000000000000000..546d032b0175e6c84a317b6c94ec85196d0aafb5 --- /dev/null +++ b/hw/hw3/data/test/3136.txt @@ -0,0 +1,33 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3254.txt b/hw/hw3/data/test/3254.txt new file mode 100644 index 0000000000000000000000000000000000000000..b7fe3df2f624af82a643f1fa1e91ac2616735237 --- /dev/null +++ b/hw/hw3/data/test/3254.txt @@ -0,0 +1,13 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3308.txt b/hw/hw3/data/test/3308.txt new file mode 100644 index 0000000000000000000000000000000000000000..7d6c9ec5e4033d91864b38cb9754fa7f0e09eca9 --- /dev/null +++ b/hw/hw3/data/test/3308.txt @@ -0,0 +1,87 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/3320.txt b/hw/hw3/data/test/3320.txt new file mode 100644 index 0000000000000000000000000000000000000000..245c894b4999a541dbf8a4fa00a8eb5ae090843e --- /dev/null +++ b/hw/hw3/data/test/3320.txt @@ -0,0 +1,14 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/3334.txt b/hw/hw3/data/test/3334.txt new file mode 100644 index 0000000000000000000000000000000000000000..90e2784f7cfb50477d7bd4c173b32b087e1a8e3b --- /dev/null +++ b/hw/hw3/data/test/3334.txt @@ -0,0 +1,37 @@ +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 ] \ No newline at end of file diff --git a/hw/hw3/data/test/3446.txt b/hw/hw3/data/test/3446.txt new file mode 100644 index 0000000000000000000000000000000000000000..1f88d1cbbe21009e40e8fd8a90c4d35eadcbcf6f --- /dev/null +++ b/hw/hw3/data/test/3446.txt @@ -0,0 +1,21 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/3452.txt b/hw/hw3/data/test/3452.txt new file mode 100644 index 0000000000000000000000000000000000000000..15876ff3c1160c0a123baf1790475adb726a89d6 --- /dev/null +++ b/hw/hw3/data/test/3452.txt @@ -0,0 +1,35 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3485.txt b/hw/hw3/data/test/3485.txt new file mode 100644 index 0000000000000000000000000000000000000000..fa68dc885a61208d0c7bcc2bbb04faca2bec2dad --- /dev/null +++ b/hw/hw3/data/test/3485.txt @@ -0,0 +1,34 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3491.txt b/hw/hw3/data/test/3491.txt new file mode 100644 index 0000000000000000000000000000000000000000..0cfd346aee71d3f7ffe517e744a2548e584da5a6 --- /dev/null +++ b/hw/hw3/data/test/3491.txt @@ -0,0 +1,9 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3526.txt b/hw/hw3/data/test/3526.txt new file mode 100644 index 0000000000000000000000000000000000000000..b52ae54cad762543a58f93e0de30b0f7e1fc2722 --- /dev/null +++ b/hw/hw3/data/test/3526.txt @@ -0,0 +1,5 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3532.txt b/hw/hw3/data/test/3532.txt new file mode 100644 index 0000000000000000000000000000000000000000..537f54873f1c608ec15331096d0fa9a4cfa29b88 --- /dev/null +++ b/hw/hw3/data/test/3532.txt @@ -0,0 +1,23 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3644.txt b/hw/hw3/data/test/3644.txt new file mode 100644 index 0000000000000000000000000000000000000000..26288f03dd7339ec09e20cf7f6c7d250f0f6e9a2 --- /dev/null +++ b/hw/hw3/data/test/3644.txt @@ -0,0 +1,73 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3650.txt b/hw/hw3/data/test/3650.txt new file mode 100644 index 0000000000000000000000000000000000000000..58b57a723536153210f545dc7833da36badf277b --- /dev/null +++ b/hw/hw3/data/test/3650.txt @@ -0,0 +1,22 @@ +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 : \ No newline at end of file diff --git a/hw/hw3/data/test/3678.txt b/hw/hw3/data/test/3678.txt new file mode 100644 index 0000000000000000000000000000000000000000..7128c4cb3e5157792aca2a0f483866e9d83a5baa --- /dev/null +++ b/hw/hw3/data/test/3678.txt @@ -0,0 +1,25 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3687.txt b/hw/hw3/data/test/3687.txt new file mode 100644 index 0000000000000000000000000000000000000000..4fc052273b44dd13e7c086d84521775e6944e213 --- /dev/null +++ b/hw/hw3/data/test/3687.txt @@ -0,0 +1,12 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/3693.txt b/hw/hw3/data/test/3693.txt new file mode 100644 index 0000000000000000000000000000000000000000..458e296d43ca471cad71036520897e3bebae684f --- /dev/null +++ b/hw/hw3/data/test/3693.txt @@ -0,0 +1,21 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3863.txt b/hw/hw3/data/test/3863.txt new file mode 100644 index 0000000000000000000000000000000000000000..a687e6fda964280f1d478c3f3f4d6b2fb4053ba2 --- /dev/null +++ b/hw/hw3/data/test/3863.txt @@ -0,0 +1,6 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/3877.txt b/hw/hw3/data/test/3877.txt new file mode 100644 index 0000000000000000000000000000000000000000..5136db33375d3883155451808dee2f42b31c183a --- /dev/null +++ b/hw/hw3/data/test/3877.txt @@ -0,0 +1,64 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/3888.txt b/hw/hw3/data/test/3888.txt new file mode 100644 index 0000000000000000000000000000000000000000..d914eb6ddb9cd2952006a38a2732e62d06cefe9e --- /dev/null +++ b/hw/hw3/data/test/3888.txt @@ -0,0 +1,16 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/4103.txt b/hw/hw3/data/test/4103.txt new file mode 100644 index 0000000000000000000000000000000000000000..1dc629674559fdddd4a51c23f4a10179f5e102f3 --- /dev/null +++ b/hw/hw3/data/test/4103.txt @@ -0,0 +1,31 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/4117.txt b/hw/hw3/data/test/4117.txt new file mode 100644 index 0000000000000000000000000000000000000000..f1045a3d70abcced4d2c7bde71323baa1a50043f --- /dev/null +++ b/hw/hw3/data/test/4117.txt @@ -0,0 +1,61 @@ +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 diff --git a/hw/hw3/data/test/4249.txt b/hw/hw3/data/test/4249.txt new file mode 100644 index 0000000000000000000000000000000000000000..27853627f73a17f9c9c4a9e64c67c40a232e736c --- /dev/null +++ b/hw/hw3/data/test/4249.txt @@ -0,0 +1,17 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw3/data/test/4301.txt b/hw/hw3/data/test/4301.txt new file mode 100644 index 0000000000000000000000000000000000000000..f84ee08f6381e7f3c0010a9e7d5e9bca7533b053 --- /dev/null +++ b/hw/hw3/data/test/4301.txt @@ -0,0 +1,20 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/4315.txt b/hw/hw3/data/test/4315.txt new file mode 100644 index 0000000000000000000000000000000000000000..a06cd63d83c241cb01a8ac9b2f9dc1825c16a504 --- /dev/null +++ b/hw/hw3/data/test/4315.txt @@ -0,0 +1,48 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/4329.txt b/hw/hw3/data/test/4329.txt new file mode 100644 index 0000000000000000000000000000000000000000..83709166d9e858ce660ceb7ab9aaff285b8ead91 --- /dev/null +++ b/hw/hw3/data/test/4329.txt @@ -0,0 +1,5 @@ +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 ! diff --git a/hw/hw3/data/test/4467.txt b/hw/hw3/data/test/4467.txt new file mode 100644 index 0000000000000000000000000000000000000000..8959a009681329bc6b9778da77b1eb3ca62f4703 --- /dev/null +++ b/hw/hw3/data/test/4467.txt @@ -0,0 +1,22 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/4473.txt b/hw/hw3/data/test/4473.txt new file mode 100644 index 0000000000000000000000000000000000000000..64409fb24c94e8c12d4aeb9ecddfaf6f8b59f471 --- /dev/null +++ b/hw/hw3/data/test/4473.txt @@ -0,0 +1,19 @@ +Subject: easy process for lovely sav . vings on your alleviations , ch . eck . +besides gratis samples and vip dis . counts , is there some other way to s . ave +on medicaments ? +our medzone presents to sh . oppers truely effective generic goods on +painrelief , severetension , highcholesterin , menshealth , overwt and +womenshealth . +would the generic equivalents bring real value ? would cybershopping bring +you total conveniences ? uncover the answers at our medzone . +brovvse our generic range that bring you vvonderful sav . vings +purchasers will be informed about the nevvest info . regarding the +carriages . +it is time to read these fabulous . deals . +¡ ¡ ' my brother j passed close by him in their earlier walk , but she would +have felt +you are always labouring and toiling , exposed to every risk and hardship . +oe was hi s fat +her , ' said quite ill - used by anne ' s having actually run against him in the +passage , +mr . peggotty . 1 ¡ ¡ ¡ ¡ ' dead , mr . peggott 7 y ? ' i hinted , after a respectfu \ No newline at end of file diff --git a/hw/hw3/data/test/4498.txt b/hw/hw3/data/test/4498.txt new file mode 100644 index 0000000000000000000000000000000000000000..de1709baadd4c6ac19d7bbe83f77c52c1b994122 --- /dev/null +++ b/hw/hw3/data/test/4498.txt @@ -0,0 +1,7 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/4659.txt b/hw/hw3/data/test/4659.txt new file mode 100644 index 0000000000000000000000000000000000000000..a336d6e6f613864aa8017fe4dd5dfa40b728cc23 --- /dev/null +++ b/hw/hw3/data/test/4659.txt @@ -0,0 +1,159 @@ +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 . " \ No newline at end of file diff --git a/hw/hw3/data/test/4665.txt b/hw/hw3/data/test/4665.txt new file mode 100644 index 0000000000000000000000000000000000000000..c4d7b3462bad71e4cdd1e1c028998cf40bf72cfc --- /dev/null +++ b/hw/hw3/data/test/4665.txt @@ -0,0 +1,51 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/4671.txt b/hw/hw3/data/test/4671.txt new file mode 100644 index 0000000000000000000000000000000000000000..d15e63ea810496dd6790097e36b4d68ffdeeaf55 --- /dev/null +++ b/hw/hw3/data/test/4671.txt @@ -0,0 +1,54 @@ +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 / \ No newline at end of file diff --git a/hw/hw3/data/test/4842.txt b/hw/hw3/data/test/4842.txt new file mode 100644 index 0000000000000000000000000000000000000000..651e711b9a8795c864d4aa6bd4f1dee83b414dc4 --- /dev/null +++ b/hw/hw3/data/test/4842.txt @@ -0,0 +1,81 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/4856.txt b/hw/hw3/data/test/4856.txt new file mode 100644 index 0000000000000000000000000000000000000000..78dbf1bae4a32c09e0457af3f37a1e40620a9a79 --- /dev/null +++ b/hw/hw3/data/test/4856.txt @@ -0,0 +1,27 @@ +Subject: confidant +universal credit trust bank +553 east trent blvd . , north london , +london , uk +hello , +do accept my sincere apologies if my mail does not meet your personal ethics . +i will introduce myself as mr . lang owen , a staff in the accounts management +section of the above firm here in the united kingdom . +one of our accounts with holding balance of £ 15 , 000 , 000 ( fifteen million +british pounds ) has been dormant and has not been operated for the past +four ( 4 ) years . +from my investigations and confirmations , the owner of this account , a foreigner +by name kurt kahle died in july , 2000 see this http : / / news . bbc . co . uk / 1 / hi / world / europe / 859479 . stm +and since then nobody has done anything as regards the claiming of this +money because he has no family members who are aware of the existence of +neither the account nor the funds . +i have secretly discussed this matter with a senior official of this company +and we have agreed to find a reliable foreign partner to deal with . we thus +propose to do business with you , standing in as the next of kin of these +funds from the deceased and funds released to you after due processes have +been followed . +this transaction is totally free of risk and as the fund is legitimate and +does not originate from drug , money laundry , terrorism or any other illegal +act . on receipt of your response i will furnish you with detailed clarification +as it relates to this mutual benefit transaction . +i look forward to hearing from you as soon as possible if you are interested . +mr . lang owen . \ No newline at end of file diff --git a/hw/hw3/data/test/4881.txt b/hw/hw3/data/test/4881.txt new file mode 100644 index 0000000000000000000000000000000000000000..6af79025c910a529e625e966a9e26c7a8268af46 --- /dev/null +++ b/hw/hw3/data/test/4881.txt @@ -0,0 +1,66 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/4895.txt b/hw/hw3/data/test/4895.txt new file mode 100644 index 0000000000000000000000000000000000000000..3c3cdc09f5ba311f73400d25cf9394c869d0cc57 --- /dev/null +++ b/hw/hw3/data/test/4895.txt @@ -0,0 +1,5 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/5023.txt b/hw/hw3/data/test/5023.txt new file mode 100644 index 0000000000000000000000000000000000000000..94753941ef94c1fa6eb4cb90216dead9e206b883 --- /dev/null +++ b/hw/hw3/data/test/5023.txt @@ -0,0 +1,16 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/5037.txt b/hw/hw3/data/test/5037.txt new file mode 100644 index 0000000000000000000000000000000000000000..dceb203e925a33f6bd863456f0deb8f6249c0134 --- /dev/null +++ b/hw/hw3/data/test/5037.txt @@ -0,0 +1,7 @@ +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 . . . diff --git a/hw/hw3/data/test/504.txt b/hw/hw3/data/test/504.txt new file mode 100644 index 0000000000000000000000000000000000000000..00988f875e9e300cf55d9a0b4f0d028a3ede09da --- /dev/null +++ b/hw/hw3/data/test/504.txt @@ -0,0 +1,5 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/510.txt b/hw/hw3/data/test/510.txt new file mode 100644 index 0000000000000000000000000000000000000000..e433ff17339b2bc16d461787d59e60bdd78e9f50 --- /dev/null +++ b/hw/hw3/data/test/510.txt @@ -0,0 +1,44 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/5143.txt b/hw/hw3/data/test/5143.txt new file mode 100644 index 0000000000000000000000000000000000000000..2a16c5288aa783d890386f4fe341aa9ab001b7f9 --- /dev/null +++ b/hw/hw3/data/test/5143.txt @@ -0,0 +1,31 @@ +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 . diff --git a/hw/hw3/data/test/5157.txt b/hw/hw3/data/test/5157.txt new file mode 100644 index 0000000000000000000000000000000000000000..b547820dee6ead181d4a0a0873bf173801738c6f --- /dev/null +++ b/hw/hw3/data/test/5157.txt @@ -0,0 +1,17 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw3/data/test/5209.txt b/hw/hw3/data/test/5209.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6684938a3983332a6c00352353a4578bfdcb5b3 --- /dev/null +++ b/hw/hw3/data/test/5209.txt @@ -0,0 +1,34 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/5221.txt b/hw/hw3/data/test/5221.txt new file mode 100644 index 0000000000000000000000000000000000000000..e0918ad08169832d5f840c7bdbfa5719e61b8261 --- /dev/null +++ b/hw/hw3/data/test/5221.txt @@ -0,0 +1,49 @@ +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 - ? ? - -  ? ? \ No newline at end of file diff --git a/hw/hw3/data/test/5235.txt b/hw/hw3/data/test/5235.txt new file mode 100644 index 0000000000000000000000000000000000000000..7211f8bf762eb63a904f348deb0dbd95c053d825 --- /dev/null +++ b/hw/hw3/data/test/5235.txt @@ -0,0 +1,12 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/538.txt b/hw/hw3/data/test/538.txt new file mode 100644 index 0000000000000000000000000000000000000000..a6e4f4950a80d27bbf436d96348aad042ce02485 --- /dev/null +++ b/hw/hw3/data/test/538.txt @@ -0,0 +1,22 @@ +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 : \ No newline at end of file diff --git a/hw/hw3/data/test/5547.txt b/hw/hw3/data/test/5547.txt new file mode 100644 index 0000000000000000000000000000000000000000..621d26ea5e3cd71dbc83bda6879a7aa15434092d --- /dev/null +++ b/hw/hw3/data/test/5547.txt @@ -0,0 +1,29 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/5553.txt b/hw/hw3/data/test/5553.txt new file mode 100644 index 0000000000000000000000000000000000000000..622cad4db5190b7f4774df37f5d6ca54d6b9447b --- /dev/null +++ b/hw/hw3/data/test/5553.txt @@ -0,0 +1,9 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/5584.txt b/hw/hw3/data/test/5584.txt new file mode 100644 index 0000000000000000000000000000000000000000..ac4071ce7bcf538c84762a3706c9ea24a627252b --- /dev/null +++ b/hw/hw3/data/test/5584.txt @@ -0,0 +1,21 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/data/test/5590.txt b/hw/hw3/data/test/5590.txt new file mode 100644 index 0000000000000000000000000000000000000000..ee527a08fae538b5b6ecbaf1d61f431019e6fbfb --- /dev/null +++ b/hw/hw3/data/test/5590.txt @@ -0,0 +1,15 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/5625.txt b/hw/hw3/data/test/5625.txt new file mode 100644 index 0000000000000000000000000000000000000000..94090867f1c66b099da8af9ce67947cfaba7866d --- /dev/null +++ b/hw/hw3/data/test/5625.txt @@ -0,0 +1,22 @@ +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 . . . _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ \ No newline at end of file diff --git a/hw/hw3/data/test/5745.txt b/hw/hw3/data/test/5745.txt new file mode 100644 index 0000000000000000000000000000000000000000..4ce14b5d71cb0a2298b432be7f473c7c76e701a1 --- /dev/null +++ b/hw/hw3/data/test/5745.txt @@ -0,0 +1,27 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/5751.txt b/hw/hw3/data/test/5751.txt new file mode 100644 index 0000000000000000000000000000000000000000..2061fe814ab1cd144fb4f03ec0de12d9effe9211 --- /dev/null +++ b/hw/hw3/data/test/5751.txt @@ -0,0 +1,17 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/5779.txt b/hw/hw3/data/test/5779.txt new file mode 100644 index 0000000000000000000000000000000000000000..7f0e21cac40571a50fb350657b445dfe32a80304 --- /dev/null +++ b/hw/hw3/data/test/5779.txt @@ -0,0 +1,32 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/5786.txt b/hw/hw3/data/test/5786.txt new file mode 100644 index 0000000000000000000000000000000000000000..c65f35133d4327cf3e71e2519d1be5b62b7efb97 --- /dev/null +++ b/hw/hw3/data/test/5786.txt @@ -0,0 +1,65 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/5792.txt b/hw/hw3/data/test/5792.txt new file mode 100644 index 0000000000000000000000000000000000000000..55f87ce777ac21cf73dc3d0c6fd95458c32ad852 --- /dev/null +++ b/hw/hw3/data/test/5792.txt @@ -0,0 +1,14 @@ +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 diff --git a/hw/hw3/data/test/706.txt b/hw/hw3/data/test/706.txt new file mode 100644 index 0000000000000000000000000000000000000000..97ca79b1a8ddd40aee6440754d0bc0cc99b902ea --- /dev/null +++ b/hw/hw3/data/test/706.txt @@ -0,0 +1,15 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/712.txt b/hw/hw3/data/test/712.txt new file mode 100644 index 0000000000000000000000000000000000000000..f7503627c23972fe6ea2990d433277fe1d119b76 --- /dev/null +++ b/hw/hw3/data/test/712.txt @@ -0,0 +1,35 @@ +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 \ No newline at end of file diff --git a/hw/hw3/data/test/869.txt b/hw/hw3/data/test/869.txt new file mode 100644 index 0000000000000000000000000000000000000000..57d0c4e15f5f5233e83e15035d0845a33d06a7b6 --- /dev/null +++ b/hw/hw3/data/test/869.txt @@ -0,0 +1,18 @@ +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 ! \ No newline at end of file diff --git a/hw/hw3/data/test/909.txt b/hw/hw3/data/test/909.txt new file mode 100644 index 0000000000000000000000000000000000000000..f3aa1b4c5f7f286e2d0c8295433e16fb89b916c0 --- /dev/null +++ b/hw/hw3/data/test/909.txt @@ -0,0 +1,151 @@ +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 diff --git a/hw/hw3/data/test/921.txt b/hw/hw3/data/test/921.txt new file mode 100644 index 0000000000000000000000000000000000000000..a74e52777d8fce4d6f4de60ac4fd9370859ab711 --- /dev/null +++ b/hw/hw3/data/test/921.txt @@ -0,0 +1,2 @@ +Subject: your approval is requested +thank you \ No newline at end of file diff --git a/hw/hw3/data/test/935.txt b/hw/hw3/data/test/935.txt new file mode 100644 index 0000000000000000000000000000000000000000..7ce53cc1de6968d35d25f3e444c1326032281295 --- /dev/null +++ b/hw/hw3/data/test/935.txt @@ -0,0 +1,13 @@ +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 . \ No newline at end of file diff --git a/hw/hw3/models/mnist_model.sav b/hw/hw3/models/mnist_model.sav new file mode 100644 index 0000000000000000000000000000000000000000..6e3b384832a512b6f3a0115aec64c575e6914ef8 Binary files /dev/null and b/hw/hw3/models/mnist_model.sav differ diff --git a/hw/hw3/models/spam_model.sav b/hw/hw3/models/spam_model.sav new file mode 100644 index 0000000000000000000000000000000000000000..49caa9272e55b2d9e314a3e301f621317f65829e Binary files /dev/null and b/hw/hw3/models/spam_model.sav differ diff --git a/hw/hw4/data/data.mat b/hw/hw4/data/data.mat new file mode 100644 index 0000000000000000000000000000000000000000..40d0e4362c73dddebbeb0e8dc42262b490760aab Binary files /dev/null and b/hw/hw4/data/data.mat differ diff --git a/hw/hw4/data/wine_X_test.npy b/hw/hw4/data/wine_X_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..a6f1e279546e006fe4cfd6418b127e1cea869ace --- /dev/null +++ b/hw/hw4/data/wine_X_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:89dd093077b3b868d6bdb076e1be9c34847162da47520484bda3ef8ba92264ff +size 43864 diff --git a/hw/hw4/data/wine_X_train.npy b/hw/hw4/data/wine_X_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..f2f707a5d7f98e3f21a346fe243cd52ce4481f56 --- /dev/null +++ b/hw/hw4/data/wine_X_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a2c9f4e4089c19fb9bf13c6f47250fb45b9384aacf2536c51607cc64362bef19 +size 528128 diff --git a/hw/hw4/data/wine_y_train.npy b/hw/hw4/data/wine_y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2219b2028eb4e659a5a54531d27c1bbf1f310806 --- /dev/null +++ b/hw/hw4/data/wine_y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:996d183a1ea733028e9309801565a5647980b9519f611392e1cf9e6275c8ffb4 +size 48128 diff --git a/hw/hw4/models/wine_model.sav b/hw/hw4/models/wine_model.sav new file mode 100644 index 0000000000000000000000000000000000000000..2c478d8e48d8591ded64fff636952efb421887d0 --- /dev/null +++ b/hw/hw4/models/wine_model.sav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d239622fc09860117d67ae80205c9aebf9d3ecc2df6a61bb86c4c991c3ea90e4 +size 19004938 diff --git a/hw/hw5/data/spam_X_test.npy b/hw/hw5/data/spam_X_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..555fc8130f906c78b2cdb7db8559cb17ef1a4809 --- /dev/null +++ b/hw/hw5/data/spam_X_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:64dcec74f97bc8bab514380520933cdcd40233098b1f05078e251ddc8646ae36 +size 1499520 diff --git a/hw/hw5/data/spam_X_train.npy b/hw/hw5/data/spam_X_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..b10efe64b2e601bead504be33bb7ae3e3bc287bb --- /dev/null +++ b/hw/hw5/data/spam_X_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:24f1e75c485a8cb8c55da18f93c10edeafea7d2da9ce083c9603ebfdc7499812 +size 1324160 diff --git a/hw/hw5/data/spam_data.mat b/hw/hw5/data/spam_data.mat new file mode 100644 index 0000000000000000000000000000000000000000..6933580cbf81f33cd698aa9613c0340a03992806 --- /dev/null +++ b/hw/hw5/data/spam_data.mat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8e73336ca955354b3c399639d7c5fe7aa632d353d7f428a218db626a1a064726 +size 2865144 diff --git a/hw/hw5/data/spam_y_train.npy b/hw/hw5/data/spam_y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..55d838508f6e7718d9a80180e1e73138ce3d3b4e --- /dev/null +++ b/hw/hw5/data/spam_y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:fb133c4e322039d2d32c5f2b1250acbb214852e3832e1f9660fdf8b33008a14d +size 41504 diff --git a/hw/hw5/data/titanic_X_test.npy b/hw/hw5/data/titanic_X_test.npy new file mode 100644 index 0000000000000000000000000000000000000000..45507b530fceed61a7f18d55398f2bd34b7e0d70 --- /dev/null +++ b/hw/hw5/data/titanic_X_test.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8ed06e26ae13d00c0a7d6e88b02369694bfe6aa6df02c173a768bdfcc31ee0ad +size 258048 diff --git a/hw/hw5/data/titanic_X_train.npy b/hw/hw5/data/titanic_X_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..6ba78e5513c9fd31d950cc35ac6c89f278562573 --- /dev/null +++ b/hw/hw5/data/titanic_X_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9215e435cfe4821ede92d351524666b26d837c8a847f18a045e04ad03b096053 +size 832128 diff --git a/hw/hw5/data/titanic_testing_data.csv b/hw/hw5/data/titanic_testing_data.csv new file mode 100644 index 0000000000000000000000000000000000000000..108e29851aa545e8b77499a4f2573254f1d61f76 --- /dev/null +++ b/hw/hw5/data/titanic_testing_data.csv @@ -0,0 +1,311 @@ +pclass,sex,age,sibsp,parch,ticket,fare,cabin,embarked +3.0,female,10.0,0.0,2.0,345773,24.15,,S +3.0,male,6.0,3.0,1.0,349909,21.075,,S +1.0,male,44.0,2.0,0.0,19928,90.0,C78,Q +3.0,female,,0.0,2.0,364848,7.75,,Q +3.0,male,,1.0,0.0,376564,16.1,,S +1.0,male,,0.0,0.0,113798,31.0,,S +2.0,male,25.0,0.0,0.0,F.C.C. 13540,10.5,,S +3.0,male,24.0,0.0,0.0,349209,7.4958,,S +3.0,female,24.0,1.0,0.0,STON/O2. 3101279,15.85,,S +3.0,male,1.0,1.0,2.0,C.A. 2315,20.575,,S +1.0,female,33.0,0.0,0.0,110152,86.5,B77,S +3.0,female,20.0,0.0,0.0,315096,8.6625,,S +3.0,male,40.5,0.0,0.0,367232,7.75,,Q +3.0,male,29.0,0.0,0.0,315082,7.875,,S +3.0,male,16.0,0.0,0.0,7534,9.2167,,S +3.0,female,43.0,1.0,6.0,CA 2144,46.9,,S +2.0,male,27.0,1.0,0.0,228414,26.0,,S +3.0,male,44.0,0.0,0.0,364511,8.05,,S +3.0,male,,1.0,0.0,2660,14.4542,,C +1.0,female,,0.0,0.0,PC 17598,31.6833,,S +3.0,female,19.0,0.0,0.0,330958,7.8792,,Q +3.0,male,19.0,0.0,0.0,349231,7.8958,,S +1.0,male,,0.0,0.0,111163,26.0,,S +3.0,male,20.0,0.0,0.0,2663,7.2292,,C +1.0,female,21.0,2.0,2.0,PC 17608,262.375,B57 B59 B63 B66,C +1.0,female,48.0,1.0,0.0,PC 17761,106.425,C86,C +2.0,male,57.0,0.0,0.0,219533,12.35,,Q +3.0,male,,0.0,0.0,370372,7.75,,Q +3.0,male,,0.0,0.0,2627,14.4583,,C +2.0,female,7.0,0.0,2.0,F.C.C. 13529,26.25,,S +3.0,male,,1.0,0.0,367229,7.75,,Q +1.0,male,47.0,1.0,0.0,PC 17757,227.525,C62 C64,C +3.0,female,9.0,1.0,1.0,2678,15.2458,,C +3.0,male,0.3333,0.0,2.0,347080,14.4,,S +3.0,male,25.0,0.0,0.0,374887,7.25,,S +3.0,female,,0.0,0.0,330935,8.1375,,Q +3.0,male,,0.0,0.0,368703,7.75,,Q +3.0,male,19.0,0.0,0.0,349228,10.1708,,S +1.0,male,39.0,0.0,0.0,PC 17580,29.7,A18,C +1.0,male,,0.0,0.0,110465,52.0,A14,S +2.0,male,50.0,0.0,0.0,250643,13.0,,S +1.0,female,,0.0,1.0,113505,55.0,E33,S +1.0,male,,0.0,0.0,113796,42.4,,S +3.0,female,,2.0,0.0,367226,23.25,,Q +2.0,male,18.0,0.0,0.0,236171,13.0,,S +3.0,female,9.0,3.0,2.0,347088,27.9,,S +2.0,female,,0.0,0.0,F.C.C. 13534,21.0,,S +1.0,male,40.0,0.0,0.0,112059,0.0,B94,S +3.0,female,5.0,0.0,0.0,364516,12.475,,S +3.0,male,25.0,0.0,0.0,348123,7.65,F G73,S +2.0,male,34.0,0.0,0.0,12233,13.0,,S +1.0,female,58.0,0.0,0.0,PC 17569,146.5208,B80,C +3.0,male,41.0,0.0,0.0,SOTON/O2 3101272,7.125,,S +1.0,male,33.0,0.0,0.0,113790,26.55,,S +3.0,female,,0.0,0.0,334915,7.7208,,Q +2.0,male,26.0,0.0,0.0,244368,13.0,F2,S +3.0,male,18.0,0.0,0.0,315091,8.6625,,S +3.0,male,25.0,0.0,0.0,SOTON/OQ 392076,7.05,,S +1.0,male,58.0,0.0,0.0,11771,29.7,B37,C +3.0,male,37.0,2.0,0.0,3101276,7.925,,S +3.0,male,28.0,0.0,0.0,349207,7.8958,,S +1.0,female,18.0,1.0,0.0,13695,60.0,C31,S +3.0,female,38.0,0.0,0.0,2688,7.2292,,C +3.0,male,40.0,0.0,0.0,349251,7.8958,,S +2.0,male,35.0,0.0,0.0,233734,12.35,,Q +1.0,male,23.0,0.0,1.0,PC 17759,63.3583,D10 D12,C +2.0,female,13.0,0.0,1.0,250644,19.5,,S +1.0,female,,0.0,0.0,PC 17585,79.2,,C +2.0,male,36.0,0.0,0.0,229236,13.0,,S +2.0,male,54.0,1.0,0.0,244252,26.0,,S +1.0,female,59.0,2.0,0.0,11769,51.4792,C101,S +2.0,male,19.0,0.0,0.0,SW/PP 751,10.5,,S +3.0,female,,1.0,0.0,371110,24.15,,Q +1.0,male,25.0,1.0,0.0,11765,55.4417,E50,C +3.0,male,,0.0,0.0,371060,7.75,,Q +2.0,male,28.0,0.0,0.0,SC 14888,10.5,,S +2.0,male,8.0,0.0,2.0,28220,32.5,,S +3.0,male,26.0,1.0,0.0,350025,7.8542,,S +3.0,male,28.0,1.0,0.0,STON/O2. 3101279,15.85,,S +3.0,male,,0.0,0.0,370374,7.75,,Q +2.0,male,50.0,1.0,0.0,SC/AH 3085,26.0,,S +1.0,female,55.0,2.0,0.0,11770,25.7,C101,S +3.0,female,,0.0,2.0,2678,15.2458,,C +2.0,male,39.0,0.0,0.0,248723,13.0,,S +3.0,female,37.0,0.0,0.0,4135,9.5875,,S +3.0,female,2.0,0.0,1.0,347054,10.4625,G6,S +3.0,male,22.5,0.0,0.0,2698,7.225,,C +1.0,female,30.0,0.0,0.0,PC 17485,56.9292,E36,C +3.0,female,15.0,0.0,0.0,2667,7.225,,C +3.0,female,,1.0,0.0,370365,15.5,,Q +2.0,female,57.0,0.0,0.0,S.O./P.P. 3,10.5,E77,S +2.0,female,36.0,0.0,3.0,230136,39.0,F4,S +1.0,male,46.0,0.0,0.0,PC 17585,79.2,,C +2.0,male,28.0,0.0,0.0,218629,13.5,,S +3.0,male,,0.0,0.0,368783,7.75,,Q +3.0,male,9.0,4.0,2.0,347077,31.3875,,S +3.0,female,14.0,0.0,0.0,350406,7.8542,,S +3.0,male,39.0,1.0,5.0,347082,31.275,,S +2.0,male,21.0,2.0,0.0,S.O.C. 14879,73.5,,S +2.0,male,,0.0,0.0,239856,0.0,,S +2.0,female,45.0,1.0,1.0,F.C.C. 13529,26.25,,S +1.0,female,49.0,0.0,0.0,17465,25.9292,D17,S +1.0,female,24.0,0.0,0.0,PC 17477,69.3,B35,C +1.0,male,24.0,0.0,0.0,PC 17593,79.2,B86,C +2.0,male,,0.0,0.0,237735,15.0458,D,C +3.0,male,28.0,2.0,0.0,3101277,7.925,,S +3.0,male,,0.0,0.0,2629,7.2292,,C +3.0,female,30.0,0.0,0.0,330972,7.6292,,Q +2.0,male,46.0,0.0,0.0,28403,26.0,,S +1.0,male,31.0,1.0,0.0,F.C. 12750,52.0,B71,S +3.0,male,25.0,1.0,0.0,349237,17.8,,S +2.0,female,12.0,2.0,1.0,230136,39.0,F4,S +2.0,male,41.0,0.0,0.0,237393,13.0,,S +1.0,female,29.0,0.0,0.0,PC 17483,221.7792,C97,S +2.0,male,43.0,1.0,1.0,F.C.C. 13529,26.25,,S +1.0,male,49.0,1.0,0.0,17453,89.1042,C92,C +3.0,male,28.5,0.0,0.0,2697,7.2292,,C +3.0,male,32.0,0.0,0.0,350417,7.8542,,S +3.0,male,19.0,0.0,0.0,S.P. 3464,8.1583,,S +3.0,male,,0.0,0.0,368402,7.75,,Q +2.0,male,14.0,0.0,0.0,220845,65.0,,S +3.0,male,1.0,5.0,2.0,CA 2144,46.9,,S +3.0,male,32.0,0.0,0.0,STON/O 2. 3101286,7.925,,S +3.0,male,,0.0,0.0,LP 1588,7.575,,S +3.0,male,40.5,0.0,0.0,C.A. 6212,15.1,,S +2.0,female,50.0,0.0,1.0,230433,26.0,,S +2.0,male,29.0,0.0,0.0,W./C. 14263,10.5,,S +3.0,male,41.0,0.0,0.0,SOTON/O.Q. 3101263,7.85,,S +2.0,female,33.0,0.0,2.0,26360,26.0,,S +3.0,female,,8.0,2.0,CA. 2343,69.55,,S +3.0,male,23.0,0.0,0.0,350054,7.7958,,S +2.0,male,19.0,0.0,0.0,28665,10.5,,S +3.0,male,22.0,1.0,0.0,A/5 21171,7.25,,S +3.0,male,32.0,0.0,0.0,SOTON/O.Q. 392078,8.05,E10,S +3.0,male,12.0,1.0,0.0,2651,11.2417,,C +3.0,male,34.5,0.0,0.0,330911,7.8292,,Q +3.0,female,30.0,0.0,0.0,315084,8.6625,,S +2.0,male,40.0,0.0,0.0,28221,13.0,,S +3.0,female,,0.0,0.0,343095,8.05,,S +3.0,male,24.0,2.0,0.0,A/4 48871,24.15,,S +1.0,female,48.0,1.0,3.0,PC 17608,262.375,B57 B59 B63 B66,C +2.0,female,40.0,0.0,0.0,31418,13.0,,S +3.0,male,,1.0,0.0,370365,15.5,,Q +3.0,male,19.0,0.0,0.0,358585,14.5,,S +1.0,female,24.0,0.0,0.0,PC 17477,69.3,B35,C +2.0,male,32.0,0.0,0.0,244360,13.0,,S +3.0,male,18.0,0.0,0.0,349912,7.775,,S +3.0,male,51.0,0.0,0.0,347743,7.0542,,S +2.0,female,34.0,0.0,0.0,243880,13.0,,S +1.0,male,45.0,0.0,0.0,PC 17594,29.7,A9,C +3.0,female,9.0,2.0,2.0,W./C. 6608,34.375,,S +1.0,female,,1.0,0.0,PC 17604,82.1708,,C +2.0,female,27.0,1.0,0.0,11668,21.0,,S +3.0,male,38.0,0.0,0.0,SOTON/O.Q. 3101306,7.05,,S +3.0,female,27.0,0.0,0.0,STON/O2. 3101283,7.925,,S +3.0,male,18.0,1.0,1.0,370129,20.2125,,S +3.0,male,7.0,1.0,1.0,2650,15.2458,,C +1.0,female,16.0,0.0,0.0,110152,86.5,B79,S +2.0,male,62.0,0.0,0.0,240276,9.6875,,Q +3.0,male,,0.0,0.0,349225,7.8958,,S +2.0,male,1.0,2.0,1.0,230136,39.0,F4,S +1.0,female,36.0,0.0,0.0,PC 17531,31.6792,A29,C +3.0,male,32.0,0.0,0.0,STON/OQ. 369943,8.05,,S +1.0,male,,0.0,0.0,113791,26.55,,S +1.0,male,46.0,0.0,0.0,13050,75.2417,C6,C +1.0,male,,0.0,0.0,113510,35.0,C128,S +3.0,male,21.0,0.0,0.0,A/4 45380,8.05,,S +2.0,male,29.0,0.0,0.0,SC/PARIS 2147,13.8583,,C +3.0,female,19.0,1.0,1.0,2653,15.7417,,C +1.0,male,13.0,2.0,2.0,PC 17608,262.375,B57 B59 B63 B66,C +1.0,male,47.0,0.0,0.0,113796,42.4,,S +2.0,female,24.0,1.0,1.0,S.C./PARIS 2079,37.0042,,C +3.0,female,28.0,0.0,0.0,349245,7.8958,,S +1.0,female,22.0,0.0,1.0,112378,59.4,,C +1.0,male,49.0,1.0,0.0,PC 17485,56.9292,A20,C +1.0,female,29.0,0.0,0.0,24160,211.3375,B5,S +3.0,male,24.0,0.0,0.0,349233,7.8958,,S +3.0,male,4.0,1.0,1.0,347742,11.1333,,S +3.0,male,,2.0,0.0,2662,21.6792,,C +3.0,female,18.0,0.0,0.0,365226,6.75,,Q +1.0,female,50.0,1.0,1.0,113503,211.5,C80,C +3.0,female,,0.0,0.0,382649,7.75,,Q +2.0,male,25.0,0.0,0.0,234686,13.0,,S +2.0,female,24.0,0.0,0.0,248733,13.0,F33,S +3.0,male,22.0,0.0,0.0,2669,7.2292,,C +3.0,male,26.0,0.0,0.0,349248,7.8958,,S +3.0,female,,0.0,0.0,330968,7.7792,,Q +1.0,male,39.0,1.0,0.0,PC 17599,71.2833,C85,C +3.0,female,18.0,0.0,0.0,A/4 31416,8.05,,S +3.0,female,63.0,0.0,0.0,4134,9.5875,,S +3.0,male,18.0,1.0,0.0,2680,14.4542,,C +1.0,male,48.0,0.0,0.0,19952,26.55,E12,S +3.0,female,,0.0,0.0,9234,7.75,,Q +3.0,male,32.0,0.0,0.0,1601,56.4958,,S +1.0,female,,1.0,0.0,17453,89.1042,C92,C +2.0,female,30.0,0.0,0.0,250648,13.0,,S +2.0,male,24.0,0.0,0.0,248726,13.5,,S +2.0,male,27.0,0.0,0.0,SC/PARIS 2168,15.0333,,C +3.0,male,26.0,0.0,0.0,347068,7.775,,S +2.0,male,34.0,0.0,0.0,250647,13.0,,S +3.0,male,,0.0,0.0,2641,7.2292,,C +3.0,male,22.0,0.0,0.0,SC/A4 23568,8.05,,S +3.0,male,,0.0,0.0,330971,7.8792,,Q +3.0,male,11.0,0.0,0.0,2699,18.7875,,C +3.0,male,32.0,0.0,0.0,C 4001,22.525,,S +1.0,male,35.0,0.0,0.0,PC 17475,26.2875,E24,S +2.0,female,50.0,0.0,0.0,F.C.C. 13531,10.5,,S +1.0,female,,1.0,0.0,19996,52.0,C126,S +1.0,male,50.0,1.0,0.0,PC 17761,106.425,C86,C +2.0,female,30.0,3.0,0.0,31027,21.0,,S +3.0,female,23.0,0.0,0.0,STON/O2. 3101290,7.925,,S +3.0,female,30.0,0.0,0.0,364516,12.475,,S +3.0,female,,1.0,0.0,367230,15.5,,Q +3.0,female,28.0,0.0,0.0,347086,7.775,,S +3.0,male,9.0,0.0,2.0,363291,20.525,,S +2.0,male,19.0,0.0,0.0,28004,10.5,,S +3.0,female,0.75,2.0,1.0,2666,19.2583,,C +3.0,female,,1.0,0.0,2665,14.4542,,C +2.0,male,23.0,2.0,1.0,29104,11.5,,S +3.0,male,21.0,0.0,0.0,8475,8.4333,,S +3.0,male,24.0,1.0,0.0,376566,16.1,,S +3.0,male,21.0,0.0,0.0,SOTON/OQ 3101317,7.25,,S +1.0,female,18.0,1.0,0.0,PC 17757,227.525,C62 C64,C +3.0,male,22.0,0.0,0.0,350060,7.5208,,S +2.0,male,23.0,0.0,0.0,244278,10.5,,S +2.0,male,44.0,0.0,0.0,248746,13.0,,S +1.0,male,26.0,0.0,0.0,111369,30.0,C148,C +3.0,female,,0.0,0.0,35852,7.7333,,Q +3.0,male,22.0,0.0,0.0,349206,7.8958,,S +2.0,male,20.0,0.0,0.0,SC/PARIS 2166,13.8625,D38,C +2.0,female,50.0,0.0,0.0,W./C. 14258,10.5,,S +3.0,male,24.0,0.0,0.0,315092,8.6625,,S +1.0,female,42.0,0.0,0.0,PC 17757,227.525,,C +3.0,male,17.0,0.0,0.0,315086,8.6625,,S +3.0,male,28.0,0.0,0.0,C 4001,22.525,,S +3.0,male,,0.0,0.0,349235,7.8958,,S +3.0,male,,0.0,0.0,2624,7.225,,C +2.0,female,17.0,0.0,0.0,SC 1748,12.0,,C +3.0,male,,0.0,0.0,2700,7.2292,,C +2.0,male,32.0,0.0,0.0,237216,13.5,,S +3.0,male,,0.0,0.0,368323,6.95,,Q +3.0,female,21.0,2.0,2.0,W./C. 6608,34.375,,S +3.0,male,,0.0,0.0,1601,56.4958,,S +1.0,male,45.5,0.0,0.0,113043,28.5,C124,S +3.0,female,13.0,0.0,0.0,2687,7.2292,,C +3.0,male,,0.0,0.0,312991,7.775,,S +2.0,female,18.0,1.0,1.0,250650,13.0,,S +2.0,male,41.0,0.0,0.0,237734,15.0458,,C +2.0,male,23.0,0.0,0.0,233639,13.0,,S +1.0,male,42.0,0.0,0.0,PC 17476,26.2875,E24,S +3.0,female,9.0,4.0,2.0,347082,31.275,,S +1.0,female,44.0,0.0,1.0,111361,57.9792,B18,C +3.0,female,,3.0,1.0,4133,25.4667,,S +2.0,male,25.0,0.0,0.0,C.A. 29178,13.0,,S +3.0,female,2.0,4.0,2.0,347082,31.275,,S +1.0,male,47.0,0.0,0.0,5727,25.5875,E58,S +3.0,male,24.0,0.0,0.0,345781,9.5,,S +2.0,male,30.0,0.0,0.0,248744,13.0,,S +3.0,female,45.0,1.0,0.0,350026,14.1083,,S +3.0,male,24.0,0.0,0.0,350035,7.7958,,S +3.0,male,18.0,0.0,0.0,2223,8.3,,S +2.0,female,12.0,0.0,0.0,C.A. 33595,15.75,,S +3.0,male,28.0,0.0,0.0,C 4001,22.525,,S +3.0,male,10.0,4.0,1.0,382652,29.125,,Q +2.0,female,27.0,0.0,0.0,34218,10.5,E101,S +1.0,male,37.0,1.0,1.0,PC 17756,83.1583,E52,C +1.0,male,30.0,0.0,0.0,113051,27.75,C111,C +3.0,male,30.0,0.0,0.0,SOTON/OQ 392090,8.05,,S +3.0,male,43.0,0.0,0.0,A/5 3536,8.05,,S +1.0,male,,0.0,0.0,11774,29.7,C47,C +1.0,female,50.0,0.0,0.0,PC 17595,28.7125,C49,C +2.0,female,29.0,1.0,0.0,228414,26.0,,S +3.0,female,,0.0,0.0,330909,7.6292,,Q +1.0,male,,0.0,0.0,PC 17612,27.7208,,C +3.0,male,,0.0,0.0,SOTON/O.Q. 3101305,7.05,,S +3.0,male,29.0,3.0,1.0,315153,22.025,,S +3.0,female,,0.0,0.0,364498,14.5,,S +3.0,male,27.0,0.0,0.0,315083,8.6625,,S +3.0,male,,0.0,0.0,2686,7.2292,,C +3.0,male,28.5,0.0,0.0,54636,16.1,,S +3.0,male,,0.0,0.0,364498,14.5,,S +1.0,female,39.0,1.0,1.0,PC 17756,83.1583,E49,C +2.0,female,44.0,1.0,0.0,244252,26.0,,S +3.0,female,22.0,0.0,0.0,347081,7.75,,S +3.0,male,32.5,0.0,0.0,345775,9.5,,S +1.0,female,,0.0,0.0,17770,27.7208,,C +3.0,male,,0.0,0.0,362316,7.25,,S +1.0,male,28.0,0.0,0.0,113788,35.5,A6,S +3.0,female,,3.0,1.0,4133,25.4667,,S +3.0,male,,0.0,0.0,358585,14.5,,S +1.0,female,22.0,0.0,2.0,13568,49.5,B39,C +3.0,male,,0.0,0.0,2622,7.2292,,C +1.0,female,16.0,0.0,1.0,111361,57.9792,B18,C +3.0,male,25.0,0.0,0.0,349203,7.8958,,S +3.0,male,27.0,0.0,0.0,347089,6.975,,S +3.0,female,21.0,1.0,0.0,4137,9.825,,S +2.0,female,45.0,0.0,0.0,223596,13.5,,S +3.0,male,,0.0,0.0,349208,7.8958,,S +2.0,female,29.0,1.0,0.0,2926,26.0,,S +3.0,female,4.0,0.0,1.0,349256,13.4167,,C +1.0,female,24.0,0.0,0.0,11767,83.1583,C54,C +1.0,female,63.0,1.0,0.0,13502,77.9583,D7,S +2.0,female,31.0,0.0,0.0,F.C.C. 13528,21.0,,S +3.0,male,3.0,4.0,2.0,347077,31.3875,,S +3.0,female,6.0,4.0,2.0,347082,31.275,,S +3.0,female,,1.0,2.0,W./C. 6607,23.45,,S +3.0,male,39.0,0.0,1.0,349256,13.4167,,C +3.0,male,36.0,0.0,0.0,A/5 21175,7.25,,S +3.0,female,8.0,3.0,1.0,349909,21.075,,S +3.0,male,29.0,1.0,0.0,3460,7.0458,,S diff --git a/hw/hw5/data/titanic_training.csv b/hw/hw5/data/titanic_training.csv new file mode 100644 index 0000000000000000000000000000000000000000..1dd7890d33284b7c70b6c51034719c1d84ee6616 --- /dev/null +++ b/hw/hw5/data/titanic_training.csv @@ -0,0 +1,1001 @@ +survived,pclass,sex,age,sibsp,parch,ticket,fare,cabin,embarked +0,3,male,,0,0,SOTON/OQ 392086,8.05,,S +0,1,male,22,0,0,PC 17760,135.6333,,C +0,2,male,23,0,0,SC/PARIS 2133,15.0458,,C +0,2,male,42,0,0,211535,13,,S +0,3,male,20,0,0,7534,9.8458,,S +0,3,male,21,0,0,350410,7.8542,,S +1,2,female,36,1,0,226875,26,,S +0,3,male,26,0,0,341826,8.05,,S +1,3,male,30,0,0,345774,9.5,,S +1,1,female,64,0,2,PC 17756,83.1583,E45,C +1,2,female,28,0,0,240929,12.65,,S +1,2,male,30,0,0,C.A. 34644,12.7375,,C +1,2,female,30,1,0,SC/PARIS 2148,13.8583,,C +1,3,male,9,1,1,C.A. 37671,15.9,,S +1,1,female,27,1,1,PC 17558,247.5208,B58 B60,C +0,1,male,65,0,1,113509,61.9792,B30,C +0,3,male,21,0,0,A/4. 39886,7.8,,S +0,1,male,46,0,0,694,26,,S +0,1,male,54,0,0,17463,51.8625,E46,S +0,3,male,24,0,0,SOTON/O.Q. 3101311,7.05,,S +0,2,male,23,0,0,29751,13,,S +0,3,male,20,0,0,6563,9.225,,S +1,1,female,30,0,0,PC 17761,106.425,,C +1,2,female,14,1,0,237736,30.0708,,C +0,3,male,25,0,0,STON/O 2. 3101291,7.925,,S +1,1,female,52,1,0,36947,78.2667,D20,C +1,2,male,3,1,1,230080,26,F2,S +0,3,male,,0,0,Fa 265302,7.3125,,S +1,1,male,36,0,0,PC 17474,26.3875,E25,S +1,3,female,24,0,0,382653,7.75,,Q +0,3,male,,0,0,349218,7.8958,,S +0,2,male,29,1,0,2003,26,,S +0,3,male,,0,0,SOTON/O.Q. 3101314,7.25,,S +0,3,female,24,0,0,349236,8.85,,S +1,3,male,,0,0,3470,7.8875,,S +1,2,female,0.9167,1,2,C.A. 34651,27.75,,S +0,3,female,20,0,0,347471,7.8542,,S +1,1,female,31,0,2,36928,164.8667,C7,S +0,3,male,60.5,0,0,3701,,,S +0,2,male,18,0,0,29108,11.5,,S +0,3,male,15,1,1,2695,7.2292,,C +1,1,male,32,0,0,13214,30.5,B50,C +0,3,female,,0,0,65305,8.1125,,S +0,2,male,21,0,0,S.O.C. 14879,73.5,,S +0,3,male,22,0,0,STON/O 2. 3101275,7.125,,S +1,3,male,21,0,0,330920,7.8208,,Q +0,1,male,38,0,0,19972,0,,S +1,2,male,34,0,0,248698,13,D56,S +1,1,female,19,0,0,112053,30,B42,S +0,3,male,4,4,1,382652,29.125,,Q +1,2,male,3,1,1,29106,18.75,,S +0,2,male,,0,0,239853,0,,S +1,3,male,21,0,0,345501,7.775,,S +1,3,female,,0,0,330931,7.8792,,Q +0,1,male,71,0,0,PC 17609,49.5042,,C +1,3,female,,0,0,14313,7.75,,Q +1,1,female,23,1,0,21228,82.2667,B45,S +1,1,female,40,1,1,16966,134.5,E34,C +0,3,male,20,0,0,SOTON/O.Q. 3101307,7.05,,S +0,1,male,27,1,0,13508,136.7792,C89,C +0,3,male,,1,0,371110,24.15,,Q +1,3,female,,0,2,2661,15.2458,,C +1,1,female,28,3,2,19950,263,C23 C25 C27,S +0,3,male,14,5,2,CA 2144,46.9,,S +1,2,male,62,0,0,S.W./PP 752,10.5,,S +0,3,male,,1,0,2621,6.4375,,C +1,1,male,4,0,2,33638,81.8583,A34,S +0,3,male,48,0,0,350047,7.8542,,S +1,2,female,23,0,0,SC/AH Basle 541,13.7917,D,C +0,3,male,21,2,0,A/4 48871,24.15,,S +1,2,female,24,2,1,243847,27,,S +0,3,male,,0,0,2676,7.225,,C +0,2,male,31,1,1,C.A. 31921,26.25,,S +0,1,female,25,1,2,113781,151.55,C22 C26,S +1,3,female,18,0,1,392091,9.35,,S +0,1,male,56,0,0,113792,26.55,,S +0,3,male,21,0,0,A/5. 13032,7.7333,,Q +1,2,male,24,0,0,28034,10.5,,S +1,2,female,24,1,0,SC/PARIS 2167,27.7208,,C +0,1,male,57,1,1,36928,164.8667,,S +0,3,male,20,0,0,A/5. 2151,8.05,,S +0,3,female,,1,0,2660,14.4542,,C +0,3,male,,0,0,SOTON/OQ 3101316,8.05,,S +0,3,male,,0,0,367655,7.7292,,Q +1,2,female,18,0,2,250652,13,,S +0,3,male,22,0,0,350052,7.7958,,S +1,3,female,33,1,2,C.A. 2315,20.575,,S +0,3,male,,8,2,CA. 2343,69.55,,S +1,3,female,31,0,0,349244,8.6833,,S +1,1,female,33,1,0,19928,90,C78,Q +0,3,male,13,4,2,347077,31.3875,,S +1,1,male,35,0,0,PC 17755,512.3292,B101,C +0,3,female,31,0,0,350407,7.8542,,S +0,3,male,,0,0,A/S 2816,8.05,,S +1,3,female,24,0,3,2666,19.2583,,C +0,3,male,16,2,0,345764,18,,S +0,1,male,60,0,0,113800,26.55,,S +1,1,female,76,1,0,19877,78.85,C46,S +0,3,male,,1,0,367227,7.75,,Q +0,3,male,26,2,0,315151,8.6625,,S +1,1,male,53,1,1,33638,81.8583,A34,S +0,1,male,42,0,0,110489,26.55,D22,S +1,3,female,47,1,0,363272,7,,S +0,2,male,29,1,0,SC/PARIS 2167,27.7208,,C +0,3,female,11,4,2,347082,31.275,,S +0,3,female,22,2,0,315152,8.6625,,S +1,1,male,,0,0,111427,26.55,,S +0,3,male,,0,0,345498,7.775,,S +1,1,female,40,0,0,PC 17582,153.4625,C125,S +1,3,female,,0,0,383123,7.75,,Q +0,3,male,19,0,0,349205,7.8958,,S +0,1,male,45,0,0,113784,35.5,T,S +1,3,female,22,0,0,C 7077,7.25,,S +0,3,female,36,0,2,350405,12.1833,,S +0,2,male,28,0,0,C.A./SOTON 34068,10.5,,S +0,3,male,21,0,0,STON/O 2. 3101294,7.925,,S +1,3,female,21,0,0,343120,7.65,,S +1,1,female,47,1,0,W.E.P. 5734,61.175,E31,S +0,3,male,33,0,0,345780,9.5,,S +1,3,male,32,0,0,1601,56.4958,,S +1,3,male,0.8333,0,1,392091,9.35,,S +1,1,male,,0,0,16988,30,D45,S +1,2,female,35,0,0,F.C.C. 13528,21,,S +0,1,male,64,1,0,110813,75.25,D37,C +0,2,male,36.5,0,2,230080,26,F2,S +0,1,male,,0,0,113056,26,A19,S +0,3,male,25,0,0,SOTON/O.Q. 3101312,7.05,,S +0,2,male,32,2,0,S.O.C. 14879,73.5,,S +0,3,male,1,4,1,3101295,39.6875,,S +0,2,male,23,0,0,28425,13,,S +1,1,female,43,1,0,11778,55.4417,C116,C +0,3,male,29,0,0,347067,7.775,,S +0,3,female,18,0,0,347087,7.775,,S +1,3,male,21,0,0,350053,7.7958,,S +1,1,male,45,1,1,16966,134.5,E34,C +0,3,male,,0,0,12460,7.75,,Q +0,3,male,,1,2,W./C. 6607,23.45,,S +1,3,male,24,0,0,C 17369,7.1417,,S +1,3,female,26,1,1,315153,22.025,,S +1,2,female,24,1,2,220845,65,,S +0,3,female,47,1,0,A/5. 3337,14.5,,S +1,1,female,51,0,1,PC 17592,39.4,D28,S +1,1,female,19,1,0,11967,91.0792,B49,C +0,3,male,,2,0,2662,21.6792,,C +0,3,male,,0,0,A4. 54510,8.05,,S +0,3,male,55.5,0,0,A.5. 11206,8.05,,S +0,3,male,27,1,0,2659,14.4542,,C +0,3,male,22,0,0,PP 4348,9.35,,S +0,3,male,,0,0,371110,24.15,,Q +0,1,male,46,1,0,W.E.P. 5734,61.175,E31,S +0,3,male,,0,0,349215,7.8958,,S +0,3,male,23,0,0,347468,7.8542,,S +1,2,female,31,0,0,CA 31352,21,,S +0,2,male,34,1,0,244367,26,,S +1,1,female,54,1,1,33638,81.8583,A34,S +0,3,male,45,0,0,347061,6.975,,S +0,2,male,36,1,2,C.A. 34651,27.75,,S +0,3,female,28,1,1,347080,14.4,,S +0,3,male,,0,0,383121,7.75,F38,Q +0,3,male,,1,0,2689,14.4583,,C +0,3,male,65,0,0,336439,7.75,,Q +1,1,female,44,0,0,PC 17610,27.7208,B4,C +1,2,female,34,0,0,C.A. 34260,10.5,F33,S +1,1,female,,0,0,17421,110.8833,,C +0,3,male,,0,0,364851,7.75,,Q +0,1,male,37,1,0,113803,53.1,C123,S +0,3,male,18,0,0,350036,7.7958,,S +0,3,male,32,0,0,349242,7.8958,,S +1,1,male,27,0,0,PC 17572,76.7292,D49,C +0,2,female,38,0,0,237671,13,,S +1,3,female,22,0,0,370373,7.75,,Q +0,3,male,,0,0,349234,7.8958,,S +0,1,male,61,0,0,111240,33.5,B19,S +0,3,male,20,0,0,350416,7.8542,,S +0,3,female,10,5,2,CA 2144,46.9,,S +0,3,female,2,3,2,347088,27.9,,S +1,2,male,0.6667,1,1,250649,14.5,,S +0,3,male,20,0,0,350050,7.8542,,S +0,3,female,39,1,5,347082,31.275,,S +0,3,male,29,0,0,347467,7.8542,,S +1,1,female,30,0,0,110152,86.5,B77,S +1,1,female,55,0,0,112377,27.7208,,C +0,1,male,42,0,0,113038,42.5,B11,S +1,3,female,22,1,0,347072,13.9,,S +1,2,female,,0,0,226593,12.35,E101,Q +1,1,male,34,0,0,113794,26.55,,S +0,3,male,,0,0,349217,7.8958,,S +1,1,female,55,0,0,PC 17760,135.6333,C32,C +0,3,male,,0,0,349201,7.8958,,S +1,3,male,19,0,0,A/5. 10482,8.05,,S +0,3,female,,0,0,SOTON/O.Q. 392087,8.05,,S +1,3,female,0.75,2,1,2666,19.2583,,C +1,2,female,28,1,0,2003,26,,S +0,3,female,38,4,2,347091,7.775,,S +0,3,male,20,0,0,345769,9.5,,S +1,1,female,47,1,1,11751,52.5542,D35,S +0,3,female,,8,2,CA. 2343,69.55,,S +0,3,male,17,1,1,2690,7.2292,,C +1,1,female,18,2,2,PC 17608,262.375,B57 B59 B63 B66,C +0,3,male,,0,0,36209,7.725,,Q +0,1,male,28,0,0,113059,47.1,,S +1,1,female,38,1,0,PC 17599,71.2833,C85,C +0,3,female,26,1,0,A/5. 3336,16.1,,S +0,3,male,24,0,0,371109,7.25,,Q +0,1,female,63,1,0,PC 17483,221.7792,C55 C57,S +1,1,female,,1,0,PC 17569,146.5208,B78,C +0,1,male,57,1,0,PC 17569,146.5208,B78,C +0,3,female,21,0,0,315087,8.6625,,S +0,3,male,,0,0,2674,7.225,,C +0,3,male,26.5,0,0,2656,7.225,,C +1,2,female,22,1,1,248738,29,,S +0,2,male,52,0,0,250647,13,,S +1,3,male,0.4167,0,1,2625,8.5167,,C +0,3,male,28,0,0,363611,8.05,,S +0,2,male,70,0,0,C.A. 24580,10.5,,S +0,1,male,28,1,0,PC 17604,82.1708,,C +0,3,male,18,1,1,350404,7.8542,,S +1,1,female,35,1,0,36973,83.475,C83,S +0,3,female,23,0,0,315085,8.6625,,S +1,1,male,48,1,0,PC 17572,76.7292,D33,C +0,3,male,,0,0,3410,8.7125,,S +1,1,female,60,0,0,11813,76.2917,D15,C +1,2,female,19,1,0,2908,26,,S +0,3,male,38,0,0,315089,8.6625,,S +0,1,male,54,0,1,35281,77.2875,D26,S +0,3,male,2,4,1,3101295,39.6875,,S +1,3,male,25,0,0,345768,9.5,,S +0,3,male,,0,0,A/5 2466,8.05,,S +1,1,male,36,0,1,PC 17755,512.3292,B51 B53 B55,C +0,3,male,14.5,8,2,CA. 2343,69.55,,S +1,1,female,26,1,0,13508,136.7792,C89,C +0,3,male,,0,0,32302,8.05,,S +1,1,female,35,0,0,113503,211.5,C130,C +1,2,female,8,1,1,26360,26,,S +1,1,female,22,1,0,113776,66.6,C2,S +0,3,male,29,0,0,STON/O 2. 3101268,7.925,,S +0,1,male,65,0,0,13509,26.55,E38,S +1,2,female,40,1,1,29750,39,,S +0,3,male,51,0,0,347064,7.75,,S +0,3,male,28,0,0,392095,7.25,,S +0,3,male,8,4,1,382652,29.125,,Q +1,1,female,51,1,0,13502,77.9583,D11,S +1,2,female,21,0,1,S.O./P.P. 2,21,,S +1,1,male,17,0,2,17421,110.8833,C70,C +0,3,female,29,0,0,3101297,7.925,,S +0,3,male,14,4,1,3101295,39.6875,,S +1,1,female,24,3,2,19950,263,C23 C25 C27,S +1,3,female,4,0,2,315153,22.025,,S +1,2,female,24,0,2,250649,14.5,,S +0,3,male,17,0,0,STON/O 2. 3101274,7.125,,S +1,1,female,50,0,1,PC 17558,247.5208,B58 B60,C +0,2,male,36,0,0,C.A. 17248,10.5,,S +1,1,female,35,1,0,13236,57.75,C28,C +1,1,female,58,0,0,113783,26.55,C103,S +1,1,female,16,0,1,PC 17592,39.4,D28,S +1,3,female,,0,0,A. 2. 39186,8.05,,S +0,3,male,13,0,2,C.A. 2673,20.25,,S +1,1,female,35,1,0,113789,52,,S +1,2,female,55,0,0,248706,16,,S +0,1,male,61,1,3,PC 17608,262.375,B57 B59 B63 B66,C +0,1,male,41,1,0,17464,51.8625,D21,S +0,3,male,,0,0,359306,8.05,,S +1,1,male,54,1,0,11778,55.4417,C116,C +0,1,male,18,1,0,PC 17758,108.9,C65,C +0,2,male,48,0,0,234360,13,,S +1,3,male,20,1,0,STON/O 2. 3101285,7.925,,S +1,3,female,18,0,0,3101265,7.4958,,S +0,3,male,17,1,0,350048,7.0542,,S +0,2,male,23,1,0,28666,10.5,,S +0,3,male,35,0,0,349213,7.8958,,C +1,3,male,21,0,0,350034,7.7958,,S +0,3,male,27,0,0,349219,7.8958,,S +0,1,male,64,0,0,693,26,,S +0,3,male,39,0,0,A/4 48871,24.15,,S +0,3,male,17,0,0,349232,7.8958,,S +0,1,male,55,0,0,680,50,C39,S +0,3,male,21,0,0,54636,16.1,,S +0,3,male,22,0,0,350045,7.7958,,S +0,3,male,19,0,0,365222,6.75,,Q +0,3,female,16,5,2,CA 2144,46.9,,S +1,1,male,31,0,0,2543,28.5375,C53,C +0,3,male,5,4,2,347077,31.3875,,S +0,1,male,,0,0,112052,0,,S +1,1,female,38,0,0,113572,80,B28, +0,3,male,49,0,0,LINE,0,,S +1,2,female,42,1,0,SC/AH 3085,26,,S +0,2,male,25,0,0,244361,13,,S +0,1,male,56,0,0,17764,30.6958,A7,C +1,3,male,25,0,0,LINE,0,,S +0,2,male,,0,0,239855,0,,S +0,3,female,,0,0,364856,7.75,,Q +1,1,female,64,1,1,112901,26.55,B26,S +1,3,female,,1,1,2668,22.3583,F E69,C +1,1,female,45,0,0,PC 17608,262.375,,C +0,3,female,,3,1,4133,25.4667,,S +0,2,male,40,1,0,2926,26,,S +0,3,male,21,0,0,349211,7.8958,,S +0,3,female,18.5,0,0,329944,7.2833,,Q +0,3,female,32,1,1,364849,15.5,,Q +0,2,male,,0,0,SC/PARIS 2159,12.875,,S +0,3,male,28,0,0,345770,9.5,,S +0,3,male,,1,0,65303,19.9667,,S +0,3,male,31,0,0,347063,7.775,,S +1,1,female,45,0,1,PC 17759,63.3583,D10 D12,C +0,2,male,66,0,0,C.A. 24579,10.5,,S +1,3,male,,1,1,2661,15.2458,,C +1,1,male,38,1,0,19943,90,C93,S +0,3,female,25,0,0,347071,7.775,,S +1,2,female,28,0,0,237668,13,,S +1,3,male,24,0,0,S.O./P.P. 752,7.55,,S +0,3,female,,1,9,CA. 2343,69.55,,S +1,2,female,36,0,0,28551,13,D,S +0,1,male,45,1,0,36973,83.475,C83,S +0,3,male,33,0,0,349241,7.8958,,C +0,1,male,,0,0,113767,50,A32,S +0,3,male,36,0,0,349210,7.4958,,S +0,3,male,38,0,0,349249,7.8958,,S +0,1,male,38,0,1,PC 17582,153.4625,C91,S +1,3,female,38,1,5,347077,31.3875,,S +1,3,male,25,0,0,350033,7.7958,,S +0,2,male,42,1,0,243847,27,,S +1,3,female,5,2,1,2666,19.2583,,C +0,2,male,21,0,0,29107,11.5,,S +0,3,male,25,0,0,2672,7.225,,C +0,3,male,,0,0,A/5 2817,8.05,,S +0,3,female,,0,0,364859,7.75,,Q +0,3,male,,0,0,A./5. 3235,8.05,,S +1,3,female,,2,0,367226,23.25,,Q +1,1,female,62,0,0,113572,80,B28, +0,1,male,,0,0,113028,26.55,C124,S +1,2,male,1,0,2,S.C./PARIS 2079,37.0042,,C +0,2,male,30,0,0,233478,13,,S +0,3,male,36,1,0,349910,15.55,,S +1,2,female,22,0,0,W./C. 14266,10.5,F33,S +1,1,female,35,0,0,PC 17760,135.6333,C99,S +1,3,female,29,0,2,2650,15.2458,,C +1,3,female,,0,0,330959,7.8792,,Q +0,3,male,,1,9,CA. 2343,69.55,,S +0,2,male,18,0,0,S.O.C. 14879,73.5,,S +0,3,male,33,0,0,349239,8.6625,,C +1,1,female,53,2,0,11769,51.4792,C101,S +0,3,male,44,0,0,363592,8.05,,S +0,3,female,26,0,2,SOTON/O.Q. 3101315,13.775,,S +1,2,female,19,0,0,250655,26,,S +0,3,male,,0,0,372622,7.75,,Q +1,1,female,30,0,0,113798,31,,C +0,1,male,21,0,1,35281,77.2875,D26,S +1,2,male,0.8333,1,1,29106,18.75,,S +0,3,female,40,1,0,7546,9.475,,S +1,3,female,36,0,2,C.A. 37671,15.9,,S +0,3,male,32,0,0,8471,8.3625,,S +0,3,male,,0,0,1222,7.8792,,S +0,3,male,11,5,2,CA 2144,46.9,,S +0,3,female,1,1,1,350405,12.1833,,S +1,3,male,27,0,0,315098,8.6625,,S +1,3,female,23,0,0,347469,7.8542,,S +1,1,male,45,0,0,111428,26.55,,S +0,2,male,30,1,0,CA 31352,21,,S +0,3,female,27,0,0,330844,7.8792,,Q +0,3,male,42,0,1,4579,8.4042,,S +0,3,female,,0,0,365237,7.75,,Q +0,2,male,38,1,0,28664,21,,S +0,1,male,50,0,0,113044,26,E60,S +0,3,male,,0,0,A.5. 3236,8.05,,S +0,2,male,36,0,0,SC/Paris 2163,12.875,D,C +1,3,male,14,0,0,7538,9.225,,S +0,3,male,2,3,1,349909,21.075,,S +1,2,female,3,1,2,SC/Paris 2123,41.5792,,C +1,2,male,,0,0,SC/PARIS 2146,13.8625,,C +0,3,male,24,0,0,7266,9.325,,S +1,1,male,48,1,0,19996,52,C126,S +0,3,male,40,1,1,364849,15.5,,Q +0,3,male,4,4,2,347082,31.275,,S +0,3,female,,8,2,CA. 2343,69.55,,S +0,3,male,,2,0,2662,21.6792,,C +0,3,male,26,0,0,330910,7.8792,,Q +1,3,female,15,1,0,2659,14.4542,,C +0,3,male,17,2,0,A/4 48873,8.05,,S +1,2,male,2,1,1,29103,23,,S +0,1,male,19,1,0,113773,53.1,D30,S +0,2,male,21,1,0,28133,11.5,,S +1,3,female,,0,2,2668,22.3583,,C +0,2,male,59,0,0,237442,13.5,,S +0,3,male,,3,1,4133,25.4667,,S +1,1,female,25,1,0,11765,55.4417,E50,C +0,1,male,29,0,0,113501,30,D6,S +1,3,female,18,0,0,4138,9.8417,,S +1,3,female,,0,0,2626,7.2292,,C +0,1,male,,0,0,112379,39.6,,C +1,2,male,0.8333,0,2,248738,29,,S +1,2,female,31,1,1,C.A. 31921,26.25,,S +1,1,female,38,0,0,PC 17757,227.525,C45,C +0,2,male,28,0,0,248740,13,,S +0,2,male,29,1,0,11668,21,,S +0,3,male,26,0,0,347075,7.775,,S +1,3,female,5,4,2,347077,31.3875,,S +1,1,female,17,1,0,17474,57,B20,S +0,3,male,,0,0,349222,7.8958,,S +0,3,male,6,1,1,2678,15.2458,,C +0,3,male,9,5,2,CA 2144,46.9,,S +0,1,male,,0,0,PC 17605,27.7208,,C +1,2,female,48,0,2,C.A. 33112,36.75,,S +1,3,male,,0,0,1601,56.4958,,S +1,3,male,25,1,0,347083,7.775,,S +0,3,male,,1,0,370371,15.5,,Q +1,1,female,48,1,0,11755,39.6,A16,C +0,3,male,59,0,0,364500,7.25,,S +0,3,male,16,1,1,C.A. 2673,20.25,,S +0,3,female,,8,2,CA. 2343,69.55,,S +0,3,female,22,0,0,3101295,39.6875,,S +0,3,male,28,0,0,347464,7.8542,,S +0,3,female,,0,4,4133,25.4667,,S +0,2,male,18,0,0,231945,11.5,,S +1,2,female,1,1,2,SC/Paris 2123,41.5792,,C +0,3,male,74,0,0,347060,7.775,,S +1,1,female,58,0,1,PC 17755,512.3292,B51 B53 B55,C +0,3,male,18.5,0,0,2682,7.2292,,C +0,3,male,18,0,0,347090,7.75,,S +1,3,female,27,0,2,347742,11.1333,,S +0,1,male,31,0,0,PC 17590,50.4958,A24,S +1,1,male,24,1,0,21228,82.2667,B45,S +0,1,male,51,0,1,PC 17597,61.3792,,C +0,3,male,20,0,0,315094,8.6625,,S +0,3,male,21,0,0,342684,8.05,,S +0,3,male,22,0,0,324669,8.05,,S +0,2,male,18,0,0,S.O.C. 14879,73.5,,S +1,1,male,49,0,0,112058,0,B52 B54 B56,S +0,2,male,,0,0,SC/A.3 2861,15.5792,,C +0,3,female,,1,0,2689,14.4583,,C +1,2,female,40,0,0,C.A. 33595,15.75,,S +1,3,female,36,1,0,345572,17.4,,S +0,3,male,19,0,0,347069,7.775,,S +0,3,male,,0,0,349255,7.8958,,C +0,3,male,23,0,0,SOTON/O.Q. 3101309,7.05,,S +0,3,male,,0,0,7935,7.75,,Q +0,3,male,33,0,0,347062,7.775,,S +0,1,male,17,0,0,113059,47.1,,S +1,3,male,,0,0,1601,56.4958,,S +0,3,male,40.5,0,2,A/5. 851,14.5,,S +0,3,male,,0,0,A/4. 34244,7.25,,S +1,2,female,2,1,1,26360,26,,S +0,3,male,23,0,0,7267,9.225,,S +0,3,male,42,0,0,315088,8.6625,,S +0,3,male,,0,0,349220,7.8958,,S +1,2,male,22,0,0,W./C. 14260,10.5,,S +1,1,male,25,1,0,11967,91.0792,B49,C +1,1,female,35,0,0,PC 17755,512.3292,,C +0,3,male,,0,0,315037,8.6625,,S +0,2,male,54,0,0,29011,14,,S +1,2,male,,0,0,244373,13,,S +0,3,male,,0,0,2647,7.225,,C +0,3,male,25,0,0,36864,7.7417,,Q +1,1,female,45,1,0,11753,52.5542,D19,S +0,3,female,,0,0,W./C. 6609,7.55,,S +0,3,female,45,1,4,347088,27.9,,S +0,3,male,4,3,2,347088,27.9,,S +0,2,male,35,0,0,28206,10.5,,S +1,1,male,60,1,1,13567,79.2,B41,C +1,3,female,,0,0,36866,7.7375,,Q +0,1,male,49,0,0,19924,26,,S +1,1,female,53,0,0,PC 17606,27.4458,,C +1,1,female,43,0,1,24160,211.3375,B3,S +1,3,female,31,1,1,363291,20.525,,S +0,3,male,31,0,0,335097,7.75,,Q +0,3,female,3,1,1,SOTON/O.Q. 3101315,13.775,,S +1,3,male,26,0,0,347070,7.775,,S +1,3,female,14,1,0,2651,11.2417,,C +1,2,female,42,0,0,236852,13,,S +1,2,female,30,0,0,234818,12.35,,Q +1,1,female,17,1,0,PC 17758,108.9,C65,C +0,3,male,36,0,0,LINE,0,,S +0,2,male,34,1,0,31027,21,,S +1,1,male,11,1,2,113760,120,B96 B98,S +0,3,female,,1,2,W./C. 6607,23.45,,S +0,2,male,32.5,1,0,237736,30.0708,,C +1,1,male,80,0,0,27042,30,A23,S +1,3,male,,1,1,2661,15.2458,,C +0,3,male,26,1,2,C.A. 2315,20.575,,S +0,3,male,42,0,0,348121,7.65,F G63,S +0,3,male,43,0,0,349226,7.8958,,S +0,1,male,33,0,0,695,5,B51 B53 B55,S +1,3,female,24,0,2,PP 9549,16.7,G6,S +0,3,female,18,0,0,330963,7.8792,,Q +1,3,male,,2,0,367226,23.25,,Q +0,2,male,31,1,1,S.C./PARIS 2079,37.0042,,C +0,2,female,30,0,0,237249,13,,S +0,3,male,16,1,3,W./C. 6608,34.375,,S +0,2,male,,0,0,239854,0,,S +0,2,male,30,1,1,250651,26,,S +1,3,female,26,0,0,STON/O2. 3101282,7.925,,S +0,3,female,27,1,0,STON/O2. 3101270,7.925,,S +1,2,female,15,0,2,29750,39,,S +0,2,male,52,0,0,248731,13.5,,S +0,3,male,33,0,0,349257,7.8958,,S +0,3,male,30.5,0,0,364499,8.05,,S +0,2,female,22,0,0,F.C.C. 13534,21,,S +0,2,male,28,0,0,244358,26,,S +1,1,female,30,0,0,12749,93.5,B73,S +0,3,male,,0,0,2652,7.2292,,C +1,3,female,2,0,1,3101298,12.2875,,S +1,2,female,25,1,1,237789,30,,S +0,3,male,,0,0,A/5 1478,8.05,,S +0,3,male,19,0,0,LINE,0,,S +1,3,male,,0,0,383162,7.75,,Q +0,2,male,27,0,0,244358,26,,S +0,3,male,40,1,5,347077,31.3875,,S +0,3,male,,0,0,2684,7.225,,C +1,1,female,48,1,1,13567,79.2,B41,C +1,3,male,39,0,0,STON/O 2. 3101289,7.925,,S +0,3,male,,0,0,392092,8.05,,S +0,3,male,,1,2,W./C. 6607,23.45,,S +0,3,male,22,0,0,A/5 21174,7.25,,S +0,1,male,36,0,0,13049,40.125,A10,C +1,1,female,,1,0,PC 17611,133.65,,S +0,1,male,32.5,0,0,113503,211.5,C132,C +0,3,male,45.5,0,0,2628,7.225,,C +0,3,male,26,0,0,349224,7.8958,,S +0,2,male,51,0,0,S.O.P. 1166,12.525,,S +1,3,male,20,1,1,2653,15.7417,,C +0,3,male,35,0,0,349230,7.8958,,S +1,2,female,34,1,1,28220,32.5,,S +0,3,male,19,0,0,323951,8.05,,S +0,3,female,35,0,0,9232,7.75,,Q +1,1,male,,0,0,PC 17607,39.6,,S +0,2,male,,0,0,239853,0,,S +0,3,male,24,0,0,343275,8.05,,S +0,3,female,19,1,0,376566,16.1,,S +0,2,female,26,1,1,250651,26,,S +1,2,female,29,0,2,29103,23,,S +0,3,female,,0,0,370368,7.75,,Q +0,3,male,18,2,2,W./C. 6608,34.375,,S +0,3,male,22,0,0,14973,8.05,,S +0,3,male,32,0,0,STON/O 2. 3101292,7.925,,S +0,3,male,34,1,1,347080,14.4,,S +0,3,male,20,0,0,SOTON/O2 3101287,7.925,,S +0,3,male,,0,0,349253,7.8958,,C +0,2,male,30,0,0,250653,13,,S +1,1,male,43,1,0,17765,27.7208,D40,C +0,3,female,22,0,0,7552,10.5167,,S +0,3,male,27,0,0,349229,7.8958,,S +0,2,male,43,0,1,S.O./P.P. 2,21,,S +1,3,male,29,0,0,345779,9.5,,S +1,3,male,,1,1,2668,22.3583,,C +0,3,male,30,0,0,2694,7.225,,C +0,3,male,20,0,0,2648,4.0125,,C +0,2,male,42,1,1,28220,32.5,,S +0,3,male,27,0,0,2670,7.225,,C +0,3,male,7,4,1,3101295,39.6875,,S +0,2,male,16,0,0,S.O./P.P. 3,10.5,,S +0,3,male,23.5,0,0,2693,7.2292,,C +0,1,male,55,1,1,12749,93.5,B69,S +1,3,female,,0,0,342712,8.05,,S +0,3,male,34,0,0,3101264,6.4958,,S +1,3,female,,0,0,370375,7.75,,Q +0,3,male,20,0,0,2679,7.225,,C +0,1,male,23,0,0,12749,93.5,B24,S +0,2,male,26,0,0,237670,13,,S +0,3,male,,0,0,370377,7.75,,Q +1,3,female,,0,0,330919,7.8292,,Q +0,3,female,,1,0,370371,15.5,,Q +1,3,female,30,0,0,382650,6.95,,Q +0,3,male,7,4,1,382652,29.125,,Q +0,1,male,36,1,0,19877,78.85,C46,S +0,2,male,26,0,0,248659,13,,S +1,3,male,25,0,0,348122,7.65,F G63,S +1,3,female,22,0,0,7548,8.9625,,S +1,1,female,45,1,1,36928,164.8667,,S +1,2,female,,0,0,248727,33,,S +0,3,male,,0,0,1601,56.4958,,S +0,2,female,24,0,0,248747,13,,S +0,1,male,36,0,0,13050,75.2417,C6,C +1,2,female,5,1,2,C.A. 34651,27.75,,S +0,3,male,,8,2,CA. 2343,69.55,,S +0,3,male,21,0,0,350029,7.8542,,S +0,3,male,20,0,0,347466,7.8542,,S +0,2,male,24,2,0,S.O.C. 14879,73.5,,S +1,2,female,26,0,0,220844,13.5,,S +0,3,male,,0,0,349214,7.8958,,S +1,3,female,23,0,0,SOTON/OQ 392083,8.05,,S +1,1,male,,0,0,F.C. 12998,25.7417,,C +0,2,male,25,0,0,C.A. 31029,31.5,,S +0,3,female,25,1,0,STON/O2. 3101271,7.925,,S +0,1,male,55,0,0,113787,30.5,C30,S +0,3,female,30.5,0,0,364850,7.75,,Q +0,3,male,,0,0,345777,9.5,,S +1,3,female,33,3,0,3101278,15.85,,S +0,3,male,30,0,0,C 7076,7.25,,S +0,3,female,18,2,0,345764,18,,S +0,3,male,,0,0,2681,6.4375,,C +1,3,male,,0,0,367228,7.75,,Q +0,2,male,,0,0,239853,0,,S +0,3,female,14.5,1,0,2665,14.4542,,C +0,3,male,40,0,0,2623,7.225,,C +0,3,male,21,1,0,3101266,6.4958,,S +1,1,male,35,0,0,111426,26.55,,C +0,3,female,41,0,2,370129,20.2125,,S +0,2,male,36,0,0,242963,13,,S +1,2,female,4,2,1,230136,39,F4,S +1,3,female,16,0,0,348125,7.65,,S +0,3,male,,0,0,368573,7.75,,Q +1,2,female,20,0,0,C.A. 33112,36.75,,S +1,2,male,31,0,0,244270,13,,S +0,3,male,24,0,0,342441,8.05,,S +0,2,male,61,0,0,235509,12.35,,Q +1,2,female,25,0,1,230433,26,,S +0,3,male,29,0,0,343276,8.05,,S +1,1,female,48,0,0,17466,25.9292,D17,S +0,2,male,24,0,0,C.A. 29566,10.5,,S +0,2,male,33,0,0,SCO/W 1585,12.275,,S +0,3,male,,0,0,349254,7.8958,,C +1,1,female,39,0,0,PC 17758,108.9,C105,C +0,2,male,30,1,0,P/PP 3381,24,,C +1,3,male,20,0,0,SOTON/O2 3101284,7.925,,S +0,1,male,,0,0,PC 17483,221.7792,C95,S +0,3,male,27,0,0,350408,7.8542,,S +0,2,male,26,0,0,31028,10.5,,S +0,1,male,30,0,0,113801,45.5,,S +1,2,female,20,1,0,236853,26,,S +1,1,male,0.9167,1,2,113781,151.55,C22 C26,S +1,1,female,19,0,2,11752,26.2833,D47,S +0,3,male,,1,1,A/5. 851,14.5,,S +0,1,male,19,3,2,19950,263,C23 C25 C27,S +1,1,male,56,0,0,13213,35.5,A26,C +1,1,male,37,1,1,11751,52.5542,D35,S +0,3,male,28,0,0,349243,7.8958,,S +0,3,female,2,1,1,370129,20.2125,,S +0,2,male,28,0,1,248727,33,,S +1,2,female,4,1,1,29103,23,,S +0,2,male,39,0,0,28213,13,,S +0,2,male,,0,0,SC/PARIS 2131,15.05,,C +1,1,male,53,0,0,113780,28.5,C51,C +0,3,male,21,0,0,2692,7.225,,C +0,3,female,20,1,0,4136,9.825,,S +0,1,male,39,0,0,112050,0,A36,S +1,1,female,39,0,0,24160,211.3375,,S +0,3,male,33,1,1,363291,20.525,,S +0,1,male,48,0,0,PC 17591,50.4958,B10,C +0,1,male,,0,0,112058,0,B102,S +1,1,female,18,0,2,110413,79.65,E68,S +0,1,male,,0,0,113778,26.55,D34,S +1,3,female,1,1,1,347742,11.1333,,S +1,2,male,26,1,1,248738,29,,S +1,1,female,36,1,2,113760,120,B96 B98,S +0,3,male,22,0,0,A/5 21172,7.25,,S +1,1,male,30,1,0,13236,57.75,C78,C +0,3,male,,0,0,349223,7.8958,,S +1,1,female,30,0,0,36928,164.8667,C7,S +0,3,male,,0,0,C.A. 6212,15.1,,S +1,3,female,1,1,1,PP 9549,16.7,G6,S +0,3,male,,0,0,2673,7.2292,,C +0,3,male,,0,0,C.A. 49867,7.55,,S +1,2,female,54,1,3,29105,23,,S +1,3,female,,0,0,14311,7.75,,Q +1,3,male,29,0,0,382651,7.75,,Q +0,3,female,37,0,0,368364,7.75,,Q +1,1,female,33,1,0,113806,53.1,E8,S +0,3,male,39,0,0,3101296,7.925,,S +0,3,male,,0,0,359309,8.05,,S +1,1,male,,0,0,19947,35.5,C52,S +1,1,female,41,0,0,16966,134.5,E40,C +0,3,male,,0,0,374910,8.05,,S +0,3,male,30,0,0,2685,7.2292,,C +0,2,male,40,0,0,239059,16,,S +0,3,male,33,0,0,A./5. 3338,8.05,,S +1,2,male,8,1,1,C.A. 33112,36.75,,S +0,2,male,47,0,0,C.A. 30769,10.5,,S +0,3,male,25,1,0,347076,7.775,,S +0,3,female,3,3,1,349909,21.075,,S +1,3,female,,0,0,335677,7.75,,Q +0,1,male,50,1,0,13507,55.9,E44,S +1,1,female,39,1,1,17421,110.8833,C68,C +1,1,female,36,0,2,WE/P 5735,71,B22,S +0,3,male,,0,0,330979,7.8292,,Q +1,2,female,24,2,3,29106,18.75,,S +1,1,female,22,0,1,113509,61.9792,B36,C +1,1,female,54,1,0,PC 17603,59.4,,C +1,2,female,41,0,1,250644,19.5,,S +1,1,female,23,1,0,35273,113.275,D36,C +1,1,male,31,1,0,17474,57,B20,S +0,3,male,31,0,0,21332,7.7333,,Q +1,3,male,,0,0,2677,7.2292,,C +0,3,female,17,0,0,AQ/3. 30631,7.7333,,Q +0,1,male,42,0,0,17475,26.55,,S +1,1,female,52,1,1,12749,93.5,B69,S +0,1,male,47,0,0,110465,52,C110,S +1,1,female,26,0,0,19877,78.85,,S +0,3,female,31,1,0,345763,18,,S +0,3,female,29,0,4,349909,21.075,,S +1,2,female,24,1,0,244367,26,,S +1,3,male,44,0,0,STON/O 2. 3101269,7.925,,S +0,1,male,42,1,0,113789,52,,S +0,1,male,50,1,1,113503,211.5,C80,C +0,2,male,47,0,0,237565,15,,S +0,3,male,32,0,0,STON/O 2. 3101293,7.925,,S +1,2,female,8,0,2,C.A. 31921,26.25,,S +0,3,male,28,0,0,1601,56.4958,,S +1,1,female,35,1,0,113803,53.1,C123,S +0,1,male,62,0,0,113807,26.55,,S +1,3,female,23,0,0,CA. 2314,7.55,,S +0,3,male,10,3,2,347088,27.9,,S +1,2,female,34,0,1,231919,23,,S +1,3,female,0.1667,1,2,C.A. 2315,20.575,,S +0,1,male,45,0,0,113050,26.55,B38,S +0,3,male,47,0,0,A/5 3902,7.25,,S +1,2,female,29,1,0,26707,26,,S +,,,,,,,,, +0,3,male,,0,0,376563,8.05,,S +0,3,female,24,0,0,368702,7.75,,Q +1,3,female,17,4,2,3101281,7.925,,S +0,1,male,,0,0,112051,0,,S +1,3,male,,0,0,65306,8.1125,,S +0,3,male,43,0,0,C 7075,6.45,,S +0,3,male,30,1,0,A/5. 3336,16.1,,S +0,3,male,,8,2,CA. 2343,69.55,,S +0,2,male,44,1,0,26707,26,,S +1,2,female,48,1,2,220845,65,,S +0,2,male,27,0,0,220367,13,,S +0,2,male,16,0,0,239865,26,,S +0,1,male,30,0,0,110469,26,C106,S +0,3,female,45,0,0,347073,7.75,,S +1,3,female,,0,0,330932,7.7875,,Q +0,2,male,21,0,0,236854,13,,S +1,1,female,31,0,0,16966,134.5,E39 E41,C +1,3,male,32,0,0,350403,7.5792,,S +1,1,female,22,0,0,113781,151.55,,S +1,3,female,35,1,1,C.A. 2673,20.25,,S +1,3,male,16,0,0,SOTON/OQ 392089,8.05,,S +1,1,female,60,1,4,19950,263,C23 C25 C27,S +0,3,male,70.5,0,0,370369,7.75,,Q +1,3,male,36.5,1,0,345572,17.4,,S +1,1,female,32,0,0,11813,76.2917,D15,C +1,1,female,15,0,1,24160,211.3375,B5,S +0,3,male,47,0,0,345765,9,,S +0,3,male,21,0,0,A./5. 2152,8.05,,S +0,3,male,32,1,0,3101278,15.85,,S +0,3,male,28,0,0,350042,7.7958,,S +0,2,male,19,0,0,28424,13,,S +0,2,male,30,0,0,W/C 14208,10.5,,S +0,2,male,24,0,0,233866,13,,S +0,3,male,34,0,0,363294,8.05,,S +0,2,male,31,0,0,C.A. 18723,10.5,,S +0,2,male,30,0,0,250646,13,,S +1,1,female,39,1,1,110413,79.65,E67,S +1,1,female,33,0,0,PC 17613,27.7208,A11,C +1,1,female,23,3,2,19950,263,C23 C25 C27,S +0,3,male,,0,0,36865,7.7375,,Q +0,1,male,,0,0,17463,51.8625,E46,S +0,3,male,11.5,1,1,A/5. 851,14.5,,S +1,2,female,24,1,2,220845,65,,S +0,3,male,,1,0,65304,19.9667,,S +1,2,female,17,0,0,SO/C 14885,10.5,,S +1,3,female,16,0,0,367231,7.75,,Q +0,3,male,20.5,0,0,A/5 21173,7.25,,S +1,1,female,21,0,0,113795,26.55,,S +0,2,male,23,0,0,C.A. 31030,10.5,,S +1,3,female,,1,0,386525,16.1,,S +0,3,male,,0,0,374746,8.05,,S +1,3,female,18,0,0,347066,7.775,,S +0,3,male,,0,0,366713,7.75,,Q +1,2,female,33,1,2,C.A. 34651,27.75,,S +0,3,male,,0,0,S.C./A.4. 23567,8.05,,S +1,1,male,6,0,2,16966,134.5,E34,C +1,2,female,29,0,0,C.A. 29395,10.5,F33,S +0,3,male,39,0,2,2675,7.2292,,C +0,3,male,36,0,0,345771,9.5,,S +1,1,male,27,0,0,113804,30.5,,S +0,3,female,21,0,0,364846,7.75,,Q +0,3,male,22,0,0,349252,7.8958,,S +0,3,male,18,0,0,347078,7.75,,S +1,1,female,36,0,0,PC 17760,135.6333,C32,C +0,1,male,47,0,0,111320,38.5,E63,S +0,3,male,17,0,0,315090,8.6625,,S +0,2,male,27,0,0,211536,13,,S +0,3,male,28,0,0,345783,9.5,,S +1,1,male,36,0,0,PC 17473,26.2875,E25,S +0,3,male,32,0,0,370376,7.75,,Q +0,3,male,40,1,4,347088,27.9,,S +1,1,male,42,1,0,11753,52.5542,D19,S +0,3,male,,0,0,394140,6.8583,,Q +1,3,female,22,1,1,3101298,12.2875,,S +0,3,male,,0,0,2664,7.225,,C +0,3,male,,0,0,2655,7.2292,F E46,C +0,1,male,,0,0,PC 17318,25.925,,S +1,1,female,23,0,1,11767,83.1583,C54,C +0,3,male,41,2,0,350026,14.1083,,S +0,3,male,,0,0,334912,7.7333,,Q +0,3,male,,0,0,AQ/4 3130,7.75,,Q +1,3,female,,1,0,376564,16.1,,S +0,3,male,34.5,0,0,2683,6.4375,,C +0,3,male,31,3,0,345763,18,,S +0,1,male,40,0,0,PC 17601,27.7208,,C +1,1,female,56,0,1,11767,83.1583,C50,C +1,2,female,36,0,0,27849,13,,S +1,1,female,33,0,0,113781,151.55,,S +0,2,male,25,1,0,236853,26,,S +1,3,female,,0,0,370370,7.75,,Q +0,3,male,23,0,0,349204,7.8958,,S +0,3,male,27,0,0,315154,8.6625,,S +1,3,female,,0,0,335432,7.7333,,Q +1,3,male,6,0,1,392096,12.475,E121,S +0,3,male,34,0,0,364506,8.05,,S +0,2,male,39,0,0,250655,26,,S +0,3,male,22,0,0,347065,7.775,,S +1,3,male,26,0,0,2699,18.7875,,C +0,3,male,,0,0,365235,7.75,,Q +0,3,female,18,0,1,2691,14.4542,,C +0,2,male,54,0,0,28403,26,,S +0,1,female,2,1,2,113781,151.55,C22 C26,S +0,3,male,35,0,0,SOTON/O.Q. 3101310,7.05,,S +0,2,male,60,1,1,29750,39,,S +1,1,female,21,0,0,13502,77.9583,D9,S +0,3,male,,0,0,312993,7.775,,S +1,3,female,22,0,0,334914,7.725,,Q +0,3,male,,0,0,349238,7.8958,,S +0,3,male,0.75,1,1,SOTON/O.Q. 3101315,13.775,,S +0,3,male,50,0,0,A/5 3594,8.05,,S +0,3,male,,0,0,343271,7,,S +0,3,male,18,1,0,3101267,6.4958,,S +1,3,male,18,0,0,A/5 3540,8.05,,S +0,3,male,17,0,0,315093,8.6625,,S +0,3,male,36,1,1,345773,24.15,,S +0,3,male,35,0,0,364512,8.05,,S +1,2,male,42,0,0,237798,13,,S +0,3,male,,0,0,349216,7.8958,,S +0,3,female,18,1,0,349237,17.8,,S +0,2,male,21,1,0,28134,11.5,,S +0,3,male,33,0,0,7540,8.6542,,S +0,2,male,22,2,0,C.A. 31029,31.5,,S +1,2,female,32.5,0,0,27267,13,E101,S +0,3,female,,0,0,330924,7.8792,,Q +1,2,female,18,0,1,231919,23,,S +1,1,male,21,0,1,PC 17597,61.3792,,C +1,1,male,28,0,0,110564,26.55,C52,S +0,3,male,16,0,0,345778,9.5,,S +1,1,female,58,0,1,PC 17582,153.4625,C125,S +0,3,male,21,0,0,STON/O 2. 3101280,7.925,,S +1,3,female,19,1,0,350046,7.8542,,S +0,3,male,26,0,0,349202,7.8958,,S +0,2,male,37,1,0,SC/AH 29037,26,,S +1,1,male,50,2,0,PC 17611,133.65,,S +0,1,male,24,1,0,13695,60,C31,S +0,3,male,30,0,0,349246,7.8958,,S +1,3,female,,0,0,36568,15.5,,Q +0,3,female,45,0,1,2691,14.4542,,C +1,3,female,16,0,0,35851,7.7333,,Q +0,1,male,52,1,1,110413,79.65,E67,S +1,3,male,26,0,0,1601,56.4958,,S +1,3,female,,1,0,367230,15.5,,Q +1,3,female,,0,0,14312,7.75,,Q +1,1,female,31,1,0,35273,113.275,D36,C +1,3,female,1,0,2,2653,15.7417,,C +0,3,male,,0,0,384461,7.75,,Q +1,3,male,22,0,0,2620,7.225,,C +0,2,male,30,0,0,28228,13,,S +1,1,male,27,1,0,113806,53.1,E8,S +0,2,female,29,1,0,SC/AH 29037,26,,S +0,3,male,16,4,1,3101295,39.6875,,S +1,3,male,32,0,0,347079,7.775,,S +0,1,male,29,1,0,113776,66.6,C2,S +1,1,female,54,1,0,36947,78.2667,D20,C +1,2,female,27,1,0,SC/PARIS 2149,13.8583,,C +1,1,female,49,1,0,PC 17572,76.7292,D33,C +1,3,male,25,0,0,2654,7.2292,F E57,C +1,3,male,27,0,0,350043,7.7958,,S +0,3,male,51,0,0,21440,8.05,,S +1,3,male,,0,0,SOTON/O.Q. 3101308,7.05,,S +0,3,male,44,0,1,371362,16.1,,S +0,2,male,18,0,0,C.A. 15185,10.5,,S +0,3,male,21,0,0,315097,8.6625,,S +0,2,male,18.5,0,0,248734,13,F,S +0,3,male,,0,0,2671,7.2292,,C +1,2,female,32,0,0,234604,13,,S +0,1,male,67,1,0,PC 17483,221.7792,C55 C57,S +0,2,female,60,1,0,24065,26,,S +0,2,male,24,2,0,C.A. 31029,31.5,,S +0,1,male,71,0,0,PC 17754,34.6542,A5,C +0,3,male,,0,0,3411,8.7125,,C +0,1,male,55,1,0,PC 17603,59.4,,C +0,1,male,46,0,0,PC 17593,79.2,B82 B84,C +1,1,female,24,0,0,PC 17482,49.5042,C90,C +1,1,female,35,1,0,19943,90,C93,S +0,1,male,47,0,0,36967,34.0208,D46,S +0,2,male,35,0,0,239865,26,,S +0,3,male,23,1,0,347072,13.9,,S +1,1,female,45,0,1,112378,59.4,,C +0,3,male,26,0,0,3474,7.8875,,S +0,3,male,24,0,0,349911,7.775,,S +1,1,male,40,0,0,112277,31,A31,C +1,1,male,,0,0,19988,30.5,C106,S +0,3,male,,0,0,330877,8.4583,,Q +1,3,female,26,0,0,347470,7.8542,,S +0,1,male,27,0,2,113503,211.5,C82,C +1,1,female,37,1,0,19928,90,C78,Q +0,2,male,42,0,0,244310,13,,S +0,3,male,,0,0,C.A. 42795,7.55,,S +1,1,male,52,0,0,113786,30.5,C104,S +0,3,female,48,1,3,W./C. 6608,34.375,,S +1,3,female,,0,0,2649,7.225,,C +0,3,male,25,0,0,349250,7.8958,,S +0,2,male,19,1,1,C.A. 33112,36.75,,S +1,2,female,22,1,2,SC/Paris 2123,41.5792,,C +1,2,female,6,0,1,248727,33,,S +0,1,male,62,0,0,113514,26.55,C87,S +0,1,male,70,1,1,WE/P 5735,71,B22,S +0,3,female,30,1,1,345773,24.15,,S +1,2,female,21,0,0,C.A. 31026,10.5,,S +0,3,male,61,0,0,345364,6.2375,,S +0,3,male,,0,0,S.O./P.P. 751,7.55,,S +0,1,male,64,1,4,19950,263,C23 C25 C27,S +0,2,male,32,0,0,C.A. 33111,10.5,,S +1,2,female,28,1,0,P/PP 3381,24,,C +1,3,female,45,0,0,2696,7.225,,C +0,3,male,,0,0,SOTON/OQ 392082,8.05,,S +0,3,male,30,0,0,A.5. 18509,8.05,,S +1,1,female,14,1,2,113760,120,B96 B98,S +0,3,male,,0,0,S.O./P.P. 251,7.55,,S +0,3,male,35,0,0,373450,8.05,,S +0,3,male,19,0,0,349212,7.8958,,S +0,3,male,26,1,0,2680,14.4542,,C +1,1,female,,1,0,17464,51.8625,D21,S +1,1,female,36,0,0,PC 17608,262.375,B61,C +1,3,female,18,0,0,2657,7.2292,,C +0,2,male,49,1,2,220845,65,,S +0,2,male,25,0,0,C.A. 34050,10.5,,S +0,3,female,22,0,0,7553,9.8375,,S +0,3,male,42,0,0,C.A. 5547,7.55,,S +0,1,male,28.5,0,0,PC 17562,27.7208,D43,C +1,3,male,31,0,0,STON/O 2. 3101288,7.925,,S +0,3,male,38.5,0,0,SOTON/O.Q. 3101262,7.25,,S +0,3,male,50,1,0,A/5. 3337,14.5,,S +0,3,male,24,0,0,350409,7.8542,,S +0,3,female,17,0,0,2627,14.4583,,C +1,1,female,27,1,2,F.C. 12750,52,B71,S +0,3,female,30,1,0,349910,15.55,,S +0,1,male,49,1,1,17421,110.8833,C68,C +0,3,male,,1,0,386525,16.1,,S +0,3,male,,0,0,349227,7.8958,,S +0,2,male,,0,0,240261,10.7083,,Q +0,3,male,24.5,0,0,342826,8.05,,S +1,2,male,2,1,1,230080,26,F2,S +1,1,female,39,1,0,13507,55.9,E44,S +0,3,male,21,0,0,364858,7.75,,Q +0,1,male,,0,0,PC 17757,227.525,,C +0,3,male,19,0,0,348124,7.65,F G73,S +0,1,male,37,0,1,PC 17596,29.7,C118,C +0,3,male,,8,2,CA. 2343,69.55,,S +0,2,male,57,0,0,244346,13,,S +0,3,male,35,0,0,STON/O 2. 3101273,7.125,,S +1,1,female,22,0,1,113505,55,E33,S +0,3,male,22,0,0,345767,9,,S +0,3,male,29,0,0,7545,9.4833,,S +1,3,male,45,0,0,7598,8.05,,S +0,3,male,33,0,0,347465,7.8542,,S +0,3,male,,0,0,2631,7.225,,C +1,3,female,27,0,1,392096,12.475,E121,S +1,1,female,60,1,0,110813,75.25,D37,C +1,2,female,20,2,1,29105,23,,S +0,2,male,34,1,0,28664,21,,S +1,2,male,32,1,0,2908,26,,S +0,3,male,17,0,0,315095,8.6625,,S +0,1,male,24,0,1,PC 17558,247.5208,B58 B60,C +1,3,female,4,1,1,PP 9549,16.7,G6,S +1,3,female,9,1,1,2650,15.2458,,C +0,2,male,17,0,0,S.O.C. 14879,73.5,,S +0,2,male,25,1,2,SC/Paris 2123,41.5792,,C +0,1,male,30,1,2,113781,151.55,C22 C26,S +0,3,male,40,1,6,CA 2144,46.9,,S +1,3,male,29,0,0,349240,7.8958,,C +0,3,male,,0,0,36568,15.5,,Q +0,1,male,58,0,2,35273,113.275,D48,C +1,3,male,3,1,1,C.A. 37671,15.9,,S +1,3,female,15,0,0,330923,8.0292,,Q +1,3,male,9,0,1,C 17368,3.1708,,S +0,1,male,25,0,0,13905,26,,C +1,1,male,51,0,0,113055,26.55,E17,S +1,1,female,18,1,0,113773,53.1,D30,S +0,1,male,61,0,0,36963,32.3208,D50,S +0,3,female,39,0,5,382652,29.125,,Q +0,1,male,41,0,0,113054,30.5,A21,S +0,1,male,,0,0,PC 17600,30.6958,,C +0,3,male,2,4,1,382652,29.125,,Q +0,3,female,29,1,1,347054,10.4625,G6,S +0,3,male,,0,0,349221,7.8958,,S +1,1,male,36,1,2,113760,120,B96 B98,S +1,3,female,17,0,1,371362,16.1,,S +0,3,male,21,0,0,312992,7.775,,S +0,3,male,,0,0,323592,7.25,,S +1,3,female,,0,0,330980,7.8792,,Q +1,2,female,19,0,0,28404,13,,S +1,3,female,22,0,0,347085,7.775,,S +0,3,male,36,0,0,349247,7.8958,,S +0,3,male,16,0,0,A/4. 20589,8.05,,S +1,2,female,45,0,2,237789,30,,S +1,2,female,28,0,0,230434,13,,S +1,3,female,16,1,1,2625,8.5167,,C +0,3,male,16,0,0,347074,7.775,,S +1,3,male,22,0,0,2658,7.225,,C +0,2,male,63,1,0,24065,26,,S +0,3,female,41,0,5,3101295,39.6875,,S +0,2,male,34,1,0,226875,26,,S \ No newline at end of file diff --git a/hw/hw5/data/titanic_y_train.npy b/hw/hw5/data/titanic_y_train.npy new file mode 100644 index 0000000000000000000000000000000000000000..2f3455f51859448507d300d22c9195db5caabd84 --- /dev/null +++ b/hw/hw5/data/titanic_y_train.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a9711360d180c6ab62d89bb6ef80f520f4f8270ada920f95ee719756de524bf9 +size 8128 diff --git a/hw/hw5/models/spam_model.sav b/hw/hw5/models/spam_model.sav new file mode 100644 index 0000000000000000000000000000000000000000..4bf0ea1575096a7451e2e74efd4e300c893e786c --- /dev/null +++ b/hw/hw5/models/spam_model.sav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a47b4a294c7d7e19e5797a8d97367e6201d7e01e9a98e34ba43467dafd0041c5 +size 276982094 diff --git a/hw/hw5/models/titanic_model.sav b/hw/hw5/models/titanic_model.sav new file mode 100644 index 0000000000000000000000000000000000000000..404ab94e919df6623879eb5478409fda031689e6 --- /dev/null +++ b/hw/hw5/models/titanic_model.sav @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c61f20dfe8e215c4f1425c7b421035aa1431b584f4b633cf867200f630a3b2dd +size 59968396 diff --git a/hw/hw6/data/FashionMNIST/processed/test.pt b/hw/hw6/data/FashionMNIST/processed/test.pt new file mode 100644 index 0000000000000000000000000000000000000000..ab40a9cbf24a64530b28abd6ffc7c1f6095c6588 --- /dev/null +++ b/hw/hw6/data/FashionMNIST/processed/test.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:57612c423924a43d64f55f5a142b131add17c219bff2492112f5f0165bf9eeba +size 7921091 diff --git a/hw/hw6/data/FashionMNIST/processed/training.pt b/hw/hw6/data/FashionMNIST/processed/training.pt new file mode 100644 index 0000000000000000000000000000000000000000..c9f9d1aab637758a09cdfb803a02e935a4d10fcb --- /dev/null +++ b/hw/hw6/data/FashionMNIST/processed/training.pt @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c7becf2795988ad0176968b99d4b4fe0326bf914fe3049293eee24e19c6ca251 +size 47521091 diff --git a/hw/hw6/data/FashionMNIST/raw/t10k-images-idx3-ubyte b/hw/hw6/data/FashionMNIST/raw/t10k-images-idx3-ubyte new file mode 100644 index 0000000000000000000000000000000000000000..8488d1aa07dc3b9e008c7380a5875a9783e426c8 --- /dev/null +++ b/hw/hw6/data/FashionMNIST/raw/t10k-images-idx3-ubyte @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:5b4141f0afbad91edebe8549f8fcffe087ea10ca49f1dbef5c9a5cd8815ce37b +size 7840016 diff --git a/hw/hw6/data/FashionMNIST/raw/t10k-images-idx3-ubyte.gz b/hw/hw6/data/FashionMNIST/raw/t10k-images-idx3-ubyte.gz new file mode 100644 index 0000000000000000000000000000000000000000..e07f380067614c9793c71f94972c0e08801ca4bb --- /dev/null +++ b/hw/hw6/data/FashionMNIST/raw/t10k-images-idx3-ubyte.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:346e55b948d973a97e58d2351dde16a484bd415d4595297633bb08f03db6a073 +size 4422102 diff --git a/hw/hw6/data/FashionMNIST/raw/t10k-labels-idx1-ubyte b/hw/hw6/data/FashionMNIST/raw/t10k-labels-idx1-ubyte new file mode 100644 index 0000000000000000000000000000000000000000..2195a4d0957e013db98d03e51697e2315816cce2 Binary files /dev/null and b/hw/hw6/data/FashionMNIST/raw/t10k-labels-idx1-ubyte differ diff --git a/hw/hw6/data/FashionMNIST/raw/t10k-labels-idx1-ubyte.gz b/hw/hw6/data/FashionMNIST/raw/t10k-labels-idx1-ubyte.gz new file mode 100644 index 0000000000000000000000000000000000000000..b203da48ab910299736e5ad92480ceabac8809e3 --- /dev/null +++ b/hw/hw6/data/FashionMNIST/raw/t10k-labels-idx1-ubyte.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:67da17c76eaffca5446c3361aaab5c3cd6d1c2608764d35dfb1850b086bf8dd5 +size 5148 diff --git a/hw/hw6/data/FashionMNIST/raw/train-images-idx3-ubyte b/hw/hw6/data/FashionMNIST/raw/train-images-idx3-ubyte new file mode 100644 index 0000000000000000000000000000000000000000..078ac24d2f3620deaf29f9a5f3bca9241da3294f --- /dev/null +++ b/hw/hw6/data/FashionMNIST/raw/train-images-idx3-ubyte @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c59f468a2f672dc815687fe0f83887768d799fd8a3f3276145d20f83aa44d888 +size 47040016 diff --git a/hw/hw6/data/FashionMNIST/raw/train-images-idx3-ubyte.gz b/hw/hw6/data/FashionMNIST/raw/train-images-idx3-ubyte.gz new file mode 100644 index 0000000000000000000000000000000000000000..91fb3548fdad6556714a8fa2f7535d4b395fcad6 --- /dev/null +++ b/hw/hw6/data/FashionMNIST/raw/train-images-idx3-ubyte.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3aede38d61863908ad78613f6a32ed271626dd12800ba2636569512369268a84 +size 26421880 diff --git a/hw/hw6/data/FashionMNIST/raw/train-labels-idx1-ubyte b/hw/hw6/data/FashionMNIST/raw/train-labels-idx1-ubyte new file mode 100644 index 0000000000000000000000000000000000000000..30424ca2ea876655f5bba14f9f07132769687975 Binary files /dev/null and b/hw/hw6/data/FashionMNIST/raw/train-labels-idx1-ubyte differ diff --git a/hw/hw6/data/FashionMNIST/raw/train-labels-idx1-ubyte.gz b/hw/hw6/data/FashionMNIST/raw/train-labels-idx1-ubyte.gz new file mode 100644 index 0000000000000000000000000000000000000000..371f432561ca8ae0a862cd522da2fcf0a94101a8 --- /dev/null +++ b/hw/hw6/data/FashionMNIST/raw/train-labels-idx1-ubyte.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:a04f17134ac03560a47e3764e11b92fc97de4d1bfaf8ba1a3aa29af54cc90845 +size 29515 diff --git a/hw/hw6/data/cifar-10-batches-py/batches.meta b/hw/hw6/data/cifar-10-batches-py/batches.meta new file mode 100644 index 0000000000000000000000000000000000000000..4467a6ec2e886a9f14f25e31776fb0152d8ac64a Binary files /dev/null and b/hw/hw6/data/cifar-10-batches-py/batches.meta differ diff --git a/hw/hw6/data/cifar-10-batches-py/data_batch_1 b/hw/hw6/data/cifar-10-batches-py/data_batch_1 new file mode 100644 index 0000000000000000000000000000000000000000..1b9ff789bbf08b02df98fea255e1343119eaa8d6 --- /dev/null +++ b/hw/hw6/data/cifar-10-batches-py/data_batch_1 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:54636561a3ce25bd3e19253c6b0d8538147b0ae398331ac4a2d86c6d987368cd +size 31035704 diff --git a/hw/hw6/data/cifar-10-batches-py/data_batch_2 b/hw/hw6/data/cifar-10-batches-py/data_batch_2 new file mode 100644 index 0000000000000000000000000000000000000000..da8acc0d33edbd9889f8a11226e2be1f53bdf1f5 --- /dev/null +++ b/hw/hw6/data/cifar-10-batches-py/data_batch_2 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:766b2cef9fbc745cf056b3152224f7cf77163b330ea9a15f9392beb8b89bc5a8 +size 31035320 diff --git a/hw/hw6/data/cifar-10-batches-py/data_batch_3 b/hw/hw6/data/cifar-10-batches-py/data_batch_3 new file mode 100644 index 0000000000000000000000000000000000000000..e98eb3e45d5a9778ad227d2703c7d4b1290a5d64 --- /dev/null +++ b/hw/hw6/data/cifar-10-batches-py/data_batch_3 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:0f00d98ebfb30b3ec0ad19f9756dc2630b89003e10525f5e148445e82aa6a1f9 +size 31035999 diff --git a/hw/hw6/data/cifar-10-batches-py/data_batch_4 b/hw/hw6/data/cifar-10-batches-py/data_batch_4 new file mode 100644 index 0000000000000000000000000000000000000000..9b81f87873afbf46bdda4fa1ee82434857a58ecc --- /dev/null +++ b/hw/hw6/data/cifar-10-batches-py/data_batch_4 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:3f7bb240661948b8f4d53e36ec720d8306f5668bd0071dcb4e6c947f78e9682b +size 31035696 diff --git a/hw/hw6/data/cifar-10-batches-py/data_batch_5 b/hw/hw6/data/cifar-10-batches-py/data_batch_5 new file mode 100644 index 0000000000000000000000000000000000000000..0428cfda4f34db9278991559bcbc322d4f79e6ac --- /dev/null +++ b/hw/hw6/data/cifar-10-batches-py/data_batch_5 @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d91802434d8376bbaeeadf58a737e3a1b12ac839077e931237e0dcd43adcb154 +size 31035623 diff --git a/hw/hw6/data/cifar-10-batches-py/readme.html b/hw/hw6/data/cifar-10-batches-py/readme.html new file mode 100644 index 0000000000000000000000000000000000000000..e377adef45c85dc91051edf2dee72c1d4d57732c --- /dev/null +++ b/hw/hw6/data/cifar-10-batches-py/readme.html @@ -0,0 +1 @@ + diff --git a/hw/hw6/data/cifar-10-batches-py/test_batch b/hw/hw6/data/cifar-10-batches-py/test_batch new file mode 100644 index 0000000000000000000000000000000000000000..7cb1691b21c2eaf98ca33dc302ab6df2c2984121 --- /dev/null +++ b/hw/hw6/data/cifar-10-batches-py/test_batch @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:f53d8d457504f7cff4ea9e021afcf0e0ad8e24a91f3fc42091b8adef61157831 +size 31035526 diff --git a/hw/hw6/datasets/cifar-10/cifar_test_data.npy b/hw/hw6/datasets/cifar-10/cifar_test_data.npy new file mode 100644 index 0000000000000000000000000000000000000000..4c0d20e334e10156e364dcbc721d7f06da064293 --- /dev/null +++ b/hw/hw6/datasets/cifar-10/cifar_test_data.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:8a6e92eeff0d0d2518af2efb242284df4a0dfe26ed214501840b1a476888dec6 +size 30720128 diff --git a/hw/hw6/datasets/iris/iris_test_data.npy b/hw/hw6/datasets/iris/iris_test_data.npy new file mode 100644 index 0000000000000000000000000000000000000000..e1798b35ab3e70b6f66148f2a7b67fb14ca3fbc2 --- /dev/null +++ b/hw/hw6/datasets/iris/iris_test_data.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:310d62dcfaeb15d568df0e210603c284dc80dd4da129698dcf1f317583975994 +size 1088 diff --git a/hw/hw6/datasets/iris/iris_test_labels.npy b/hw/hw6/datasets/iris/iris_test_labels.npy new file mode 100644 index 0000000000000000000000000000000000000000..526970c0f6af2bbc4c749896cddaa40b0f6f561e --- /dev/null +++ b/hw/hw6/datasets/iris/iris_test_labels.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:bfbaaed2a15aa62746143e14357553dfcac256a953e2e49d649b62b9dfa81030 +size 848 diff --git a/hw/hw6/datasets/iris/iris_train_data.npy b/hw/hw6/datasets/iris/iris_train_data.npy new file mode 100644 index 0000000000000000000000000000000000000000..86986794ef56c6dd1b4800abd8d90174e6ad0269 --- /dev/null +++ b/hw/hw6/datasets/iris/iris_train_data.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:565229d768b0ec6a4323e70e462d8a5b5c6c2d757849bae4d750a52fc9f3efaf +size 3488 diff --git a/hw/hw6/datasets/iris/iris_train_labels.npy b/hw/hw6/datasets/iris/iris_train_labels.npy new file mode 100644 index 0000000000000000000000000000000000000000..59a664b8b8665673bded88f491cacf564b165f7f --- /dev/null +++ b/hw/hw6/datasets/iris/iris_train_labels.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:c62abbc309231690900ae0066259913013c7acedd7ea8a44f60c0594e1de3457 +size 2648 diff --git a/hw/hw6/datasets/iris/iris_val_data.npy b/hw/hw6/datasets/iris/iris_val_data.npy new file mode 100644 index 0000000000000000000000000000000000000000..5a60c46d9731c630e31934ca13149bbdf36ecfc9 --- /dev/null +++ b/hw/hw6/datasets/iris/iris_val_data.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92e5f31e1f1813b5d8f6858531eb34be5177067b41f17bc271332a39f794a4b9 +size 608 diff --git a/hw/hw6/datasets/iris/iris_val_labels.npy b/hw/hw6/datasets/iris/iris_val_labels.npy new file mode 100644 index 0000000000000000000000000000000000000000..be85216cb29c5c24df7e66f468c64b59b761f64d --- /dev/null +++ b/hw/hw6/datasets/iris/iris_val_labels.npy @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:92838d2b870060ebe3816531ceaea6559ea803aee223ced3fc7e5ee556831b6d +size 488 diff --git a/hw/hw7/data/movie_train.mat b/hw/hw7/data/movie_train.mat new file mode 100644 index 0000000000000000000000000000000000000000..c536da5cfd1b0366cec879a3d665beee23ce1745 --- /dev/null +++ b/hw/hw7/data/movie_train.mat @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e03161ca94c79cd017dc17476be6ab2dcef402cd578c564be83dc9a133f6ebfc +size 3551514 diff --git a/hw/hw7/data/movie_validate.txt b/hw/hw7/data/movie_validate.txt new file mode 100644 index 0000000000000000000000000000000000000000..b3f312b9bcd54ec08bebda2ec997631b918645f7 --- /dev/null +++ b/hw/hw7/data/movie_validate.txt @@ -0,0 +1,3690 @@ +1,5,1 +1,8,1 +1,10,1 +1,12,1 +1,17,-1 +1,19,-1 +1,20,-1 +1,22,-1 +1,23,-1 +1,25,-1 +1,26,1 +1,28,1 +1,29,1 +1,31,1 +1,36,1 +1,47,-1 +1,49,1 +1,50,1 +1,51,-1 +1,52,-1 +1,56,1 +1,59,-1 +1,60,-1 +1,61,1 +1,62,1 +1,63,-1 +1,68,1 +1,73,1 +2,3,1 +2,4,-1 +2,7,-1 +2,10,-1 +2,11,1 +2,13,1 +2,17,-1 +2,18,-1 +2,19,-1 +2,21,-1 +2,24,-1 +2,30,-1 +2,31,-1 +2,33,-1 +2,34,1 +2,35,1 +2,38,-1 +2,40,-1 +2,43,-1 +2,44,1 +2,48,-1 +2,51,-1 +2,53,-1 +2,55,-1 +2,57,1 +2,60,-1 +2,64,-1 +2,65,-1 +2,69,-1 +2,70,-1 +2,75,-1 +2,76,1 +2,77,-1 +2,78,-1 +2,80,1 +2,81,1 +2,82,-1 +2,83,1 +2,84,-1 +2,85,-1 +2,91,1 +2,92,1 +2,93,1 +2,94,1 +2,95,1 +2,97,1 +2,99,1 +2,100,-1 +3,1,1 +3,2,1 +3,7,-1 +3,8,-1 +3,10,-1 +3,11,1 +3,12,1 +3,16,-1 +3,20,-1 +3,21,1 +3,22,1 +3,27,1 +3,29,1 +3,32,1 +3,36,1 +3,39,-1 +3,40,1 +3,43,-1 +3,45,-1 +3,47,1 +3,50,1 +3,51,1 +3,52,1 +3,55,-1 +3,66,-1 +3,67,1 +3,68,1 +3,98,1 +4,5,1 +4,8,-1 +4,16,-1 +4,18,-1 +4,19,1 +4,20,-1 +4,23,-1 +4,26,1 +4,31,1 +4,32,1 +4,34,-1 +4,35,1 +4,39,1 +4,47,1 +4,49,1 +4,50,1 +4,61,1 +4,62,1 +4,83,1 +4,84,1 +5,6,1 +5,8,1 +5,12,1 +5,13,-1 +5,15,1 +5,20,-1 +5,21,-1 +5,23,-1 +5,27,1 +5,28,-1 +5,31,1 +5,32,-1 +5,39,1 +5,42,1 +5,46,1 +5,48,1 +5,53,-1 +5,55,-1 +5,61,1 +5,65,-1 +5,70,-1 +5,80,1 +6,3,1 +6,4,1 +6,6,-1 +6,7,-1 +6,8,-1 +6,10,1 +6,11,-1 +6,13,-1 +6,14,1 +6,15,-1 +6,16,-1 +6,17,-1 +6,18,-1 +6,25,1 +6,29,-1 +6,32,-1 +6,33,-1 +6,34,1 +6,39,-1 +6,42,-1 +6,44,-1 +6,45,-1 +6,46,-1 +6,48,-1 +6,49,-1 +6,50,-1 +6,52,-1 +6,53,-1 +6,54,-1 +6,55,1 +6,58,-1 +6,60,-1 +6,62,-1 +6,63,-1 +6,64,-1 +6,65,-1 +6,66,-1 +6,67,-1 +6,68,-1 +6,70,1 +6,82,-1 +7,1,1 +7,2,-1 +7,3,-1 +7,5,1 +7,6,-1 +7,8,-1 +7,9,-1 +7,10,1 +7,11,-1 +7,12,-1 +7,17,1 +7,18,-1 +7,19,-1 +7,20,1 +7,22,1 +7,26,1 +7,28,-1 +7,31,-1 +7,33,-1 +7,36,1 +7,38,1 +7,39,1 +7,41,1 +7,42,-1 +7,43,-1 +7,44,1 +7,45,-1 +7,47,-1 +7,50,1 +7,51,1 +7,52,-1 +7,53,1 +7,55,-1 +7,56,1 +7,57,-1 +7,60,-1 +7,63,-1 +7,65,1 +7,67,1 +7,70,1 +7,94,-1 +8,1,1 +8,2,-1 +8,6,1 +8,8,1 +8,9,1 +8,12,1 +8,15,1 +8,17,-1 +8,18,-1 +8,19,-1 +8,20,-1 +8,21,1 +8,22,1 +8,26,1 +8,27,1 +8,29,-1 +8,30,1 +8,32,1 +8,33,1 +8,34,1 +8,38,1 +8,39,1 +8,40,1 +8,44,1 +8,46,1 +8,49,1 +8,50,-1 +8,51,1 +8,52,1 +8,53,1 +8,55,-1 +8,56,-1 +8,58,-1 +8,60,1 +8,61,1 +8,66,1 +8,67,1 +8,68,1 +8,69,-1 +8,70,-1 +8,82,-1 +9,4,-1 +9,5,-1 +9,9,-1 +9,12,-1 +9,16,-1 +9,17,-1 +9,18,-1 +9,19,-1 +9,20,-1 +9,21,-1 +9,22,-1 +9,26,-1 +9,27,1 +9,28,-1 +9,30,-1 +9,31,-1 +9,32,1 +9,34,-1 +9,36,1 +9,38,-1 +9,39,-1 +9,41,-1 +9,42,-1 +9,43,-1 +9,44,-1 +9,45,1 +9,49,1 +9,50,1 +9,51,-1 +9,58,-1 +9,59,-1 +9,61,1 +9,63,-1 +9,64,-1 +9,66,-1 +9,67,-1 +9,69,1 +9,70,-1 +9,76,1 +10,1,1 +10,2,1 +10,3,-1 +10,5,1 +10,7,1 +10,8,1 +10,11,1 +10,12,1 +10,13,-1 +10,14,1 +10,16,-1 +10,17,-1 +10,18,1 +10,21,1 +10,26,1 +10,32,1 +10,33,-1 +10,35,1 +10,39,-1 +10,40,1 +10,41,-1 +10,42,-1 +10,44,-1 +10,46,-1 +10,48,-1 +10,49,1 +10,51,1 +10,52,1 +10,54,1 +10,55,-1 +10,56,1 +10,57,-1 +10,61,-1 +10,67,-1 +10,70,-1 +10,71,-1 +10,72,1 +10,74,-1 +10,75,-1 +10,79,-1 +10,81,1 +10,84,-1 +10,85,-1 +10,87,-1 +10,91,-1 +10,93,-1 +10,94,1 +10,95,1 +11,5,-1 +11,7,1 +11,11,1 +11,12,1 +11,13,1 +11,18,1 +11,19,1 +11,21,1 +11,25,-1 +11,32,1 +11,33,1 +11,36,1 +11,39,-1 +11,41,-1 +11,46,-1 +11,48,-1 +11,50,1 +11,56,1 +11,59,-1 +11,61,1 +11,62,1 +11,68,1 +11,77,1 +11,94,1 +12,2,1 +12,7,-1 +12,8,-1 +12,11,1 +12,13,-1 +12,14,-1 +12,16,-1 +12,19,1 +12,20,-1 +12,21,1 +12,27,1 +12,29,1 +12,32,1 +12,41,1 +12,42,1 +12,46,1 +12,48,1 +12,50,1 +12,55,1 +12,60,-1 +12,62,1 +12,63,-1 +12,65,1 +12,66,-1 +12,69,1 +12,70,-1 +12,82,1 +13,4,-1 +13,5,1 +13,6,1 +13,7,-1 +13,9,1 +13,10,1 +13,11,1 +13,13,-1 +13,14,1 +13,18,-1 +13,19,-1 +13,21,1 +13,22,1 +13,23,1 +13,24,1 +13,27,1 +13,28,-1 +13,30,1 +13,31,1 +13,38,1 +13,39,1 +13,40,1 +13,41,1 +13,42,1 +13,44,1 +13,45,1 +13,48,-1 +13,52,1 +13,56,1 +13,57,1 +13,60,-1 +13,62,1 +13,63,-1 +13,66,1 +13,68,-1 +13,69,1 +13,78,1 +13,80,1 +13,83,-1 +13,84,-1 +13,89,1 +13,90,-1 +13,92,1 +13,94,-1 +13,100,-1 +14,5,1 +14,10,1 +14,14,-1 +14,18,1 +14,19,1 +14,20,1 +14,21,-1 +14,22,-1 +14,26,-1 +14,28,1 +14,29,1 +14,31,1 +14,35,-1 +14,36,1 +14,42,-1 +14,46,-1 +14,49,1 +14,50,-1 +14,53,1 +14,54,-1 +14,56,1 +14,62,1 +14,63,-1 +14,68,1 +14,69,1 +14,70,1 +14,72,1 +14,94,1 +14,98,-1 +15,8,1 +15,10,1 +15,11,1 +15,12,1 +15,15,-1 +15,16,-1 +15,17,1 +15,18,-1 +15,19,-1 +15,20,-1 +15,26,1 +15,28,1 +15,31,1 +15,32,1 +15,36,1 +15,38,1 +15,39,1 +15,40,1 +15,41,1 +15,46,1 +15,47,1 +15,49,1 +15,50,1 +15,62,1 +15,65,1 +15,69,1 +15,84,1 +16,1,1 +16,3,-1 +16,5,-1 +16,7,-1 +16,8,1 +16,9,-1 +16,10,-1 +16,12,1 +16,13,-1 +16,14,1 +16,16,-1 +16,17,-1 +16,23,-1 +16,25,1 +16,27,1 +16,28,1 +16,29,1 +16,30,1 +16,32,1 +16,34,1 +16,35,1 +16,37,-1 +16,39,1 +16,40,-1 +16,41,-1 +16,42,1 +16,44,-1 +16,45,1 +16,48,1 +16,53,1 +16,54,1 +16,56,1 +16,58,1 +16,59,-1 +16,60,-1 +16,63,1 +16,64,-1 +16,66,1 +16,67,-1 +16,68,1 +16,72,1 +16,73,-1 +16,74,-1 +16,77,-1 +16,78,1 +16,82,1 +16,83,1 +16,85,-1 +16,86,-1 +16,87,1 +16,89,1 +16,91,1 +16,92,1 +16,93,1 +16,95,1 +16,96,1 +16,97,1 +16,99,1 +17,2,1 +17,4,1 +17,8,-1 +17,12,-1 +17,15,-1 +17,17,-1 +17,23,1 +17,24,-1 +17,25,-1 +17,27,1 +17,29,1 +17,34,1 +17,36,-1 +17,37,-1 +17,40,1 +17,41,-1 +17,42,1 +17,46,1 +17,47,-1 +17,49,-1 +17,50,-1 +17,51,1 +17,52,1 +17,53,-1 +17,56,-1 +17,57,-1 +17,58,-1 +17,60,-1 +17,61,-1 +17,62,1 +17,64,-1 +17,66,-1 +17,70,1 +17,81,1 +18,3,-1 +18,8,-1 +18,10,1 +18,13,1 +18,17,-1 +18,18,-1 +18,21,1 +18,22,1 +18,28,-1 +18,30,-1 +18,31,-1 +18,32,-1 +18,33,-1 +18,34,1 +18,35,1 +18,36,1 +18,43,1 +18,46,-1 +18,47,-1 +18,48,1 +18,49,1 +18,50,1 +18,51,-1 +18,53,1 +18,55,1 +18,56,1 +18,58,-1 +18,59,-1 +18,63,-1 +18,64,-1 +18,65,1 +18,67,-1 +18,70,-1 +18,97,-1 +18,98,1 +19,4,-1 +19,7,-1 +19,9,-1 +19,12,-1 +19,14,1 +19,15,-1 +19,17,-1 +19,20,-1 +19,21,-1 +19,22,-1 +19,23,1 +19,25,-1 +19,26,1 +19,29,-1 +19,36,1 +19,37,-1 +19,38,1 +19,40,-1 +19,42,1 +19,45,-1 +19,46,-1 +19,53,-1 +19,57,-1 +19,60,1 +19,61,1 +19,68,-1 +19,69,1 +19,70,-1 +19,71,1 +19,72,1 +19,76,1 +19,80,-1 +19,81,1 +19,83,-1 +19,86,-1 +19,87,1 +19,94,-1 +19,95,1 +19,96,-1 +19,97,-1 +20,3,1 +20,4,1 +20,5,1 +20,6,1 +20,12,1 +20,15,1 +20,16,1 +20,17,1 +20,18,-1 +20,19,1 +20,20,1 +20,24,1 +20,25,1 +20,26,1 +20,28,1 +20,30,1 +20,31,1 +20,35,1 +20,36,1 +20,37,-1 +20,38,1 +20,39,1 +20,40,1 +20,41,-1 +20,42,1 +20,43,1 +20,44,1 +20,46,1 +20,51,1 +20,53,1 +20,54,1 +20,55,1 +20,56,1 +20,59,1 +20,62,1 +20,65,1 +20,67,1 +20,68,1 +20,71,1 +20,73,1 +20,75,1 +20,76,1 +20,77,1 +20,78,1 +20,80,1 +20,82,1 +20,84,1 +20,85,1 +20,94,1 +20,95,1 +20,96,1 +20,100,1 +21,6,1 +21,7,1 +21,10,-1 +21,11,1 +21,12,1 +21,14,1 +21,15,-1 +21,19,-1 +21,21,1 +21,23,1 +21,24,-1 +21,27,1 +21,28,1 +21,29,1 +21,30,-1 +21,31,-1 +21,32,1 +21,37,1 +21,38,1 +21,41,1 +21,43,-1 +21,45,1 +21,46,1 +21,49,1 +21,51,1 +21,52,-1 +21,54,-1 +21,58,-1 +21,60,-1 +21,65,1 +21,66,-1 +21,67,-1 +21,69,1 +21,71,1 +21,93,1 +21,95,-1 +22,1,1 +22,2,1 +22,3,1 +22,5,1 +22,6,-1 +22,7,-1 +22,8,-1 +22,12,-1 +22,16,-1 +22,19,-1 +22,20,-1 +22,24,-1 +22,26,1 +22,28,-1 +22,29,1 +22,30,-1 +22,31,1 +22,32,-1 +22,33,-1 +22,37,-1 +22,38,1 +22,42,1 +22,44,1 +22,45,-1 +22,49,-1 +22,50,1 +22,52,1 +22,53,-1 +22,54,-1 +22,55,-1 +22,56,1 +22,57,1 +22,58,-1 +22,62,-1 +22,63,1 +22,66,-1 +22,67,-1 +22,69,1 +22,71,1 +22,72,-1 +22,76,-1 +22,78,-1 +22,80,-1 +22,82,-1 +22,87,-1 +22,89,1 +22,93,1 +22,94,-1 +22,95,1 +22,96,1 +22,97,1 +22,98,-1 +23,5,-1 +23,7,-1 +23,8,-1 +23,13,-1 +23,15,-1 +23,17,-1 +23,20,-1 +23,21,-1 +23,27,1 +23,40,1 +23,48,1 +23,49,-1 +23,50,1 +23,53,1 +23,54,1 +23,58,-1 +23,69,-1 +24,1,1 +24,4,1 +24,5,-1 +24,7,-1 +24,8,-1 +24,11,1 +24,13,-1 +24,18,-1 +24,20,-1 +24,21,1 +24,23,-1 +24,25,1 +24,26,-1 +24,27,1 +24,28,-1 +24,30,-1 +24,39,-1 +24,40,-1 +24,41,-1 +24,43,1 +24,44,-1 +24,45,1 +24,47,1 +24,48,-1 +24,51,-1 +24,52,-1 +24,53,-1 +24,58,-1 +24,60,-1 +24,62,-1 +24,65,-1 +24,66,-1 +24,68,-1 +24,69,1 +24,72,-1 +24,99,1 +25,7,1 +25,8,-1 +25,12,1 +25,18,-1 +25,20,1 +25,21,1 +25,23,1 +25,29,1 +25,30,1 +25,31,1 +25,33,1 +25,34,1 +25,36,1 +25,39,1 +25,40,1 +25,42,1 +25,43,1 +25,44,-1 +25,46,1 +25,50,-1 +25,52,1 +25,54,1 +25,57,-1 +25,61,1 +25,63,-1 +25,64,-1 +25,66,1 +25,67,-1 +25,69,1 +25,92,-1 +26,5,-1 +26,8,-1 +26,10,1 +26,11,1 +26,12,1 +26,13,-1 +26,14,-1 +26,15,-1 +26,16,-1 +26,17,-1 +26,18,-1 +26,20,1 +26,21,-1 +26,22,1 +26,23,1 +26,24,-1 +26,25,-1 +26,27,-1 +26,34,1 +26,38,-1 +26,40,-1 +26,43,1 +26,45,1 +26,46,-1 +26,47,-1 +26,48,1 +26,49,1 +26,51,-1 +26,52,1 +26,54,1 +26,55,-1 +26,56,-1 +26,59,1 +26,61,-1 +26,68,-1 +26,69,1 +26,70,1 +26,72,1 +26,75,-1 +26,88,1 +27,1,-1 +27,3,-1 +27,6,-1 +27,7,-1 +27,9,-1 +27,11,1 +27,13,-1 +27,14,-1 +27,16,-1 +27,19,1 +27,23,-1 +27,26,-1 +27,28,-1 +27,30,-1 +27,31,1 +27,34,1 +27,35,1 +27,36,1 +27,37,1 +27,39,1 +27,40,-1 +27,41,-1 +27,44,-1 +27,46,-1 +27,47,1 +27,50,-1 +27,56,1 +27,58,-1 +27,60,-1 +27,70,-1 +27,73,1 +27,94,-1 +28,1,1 +28,2,1 +28,3,-1 +28,6,1 +28,7,1 +28,10,1 +28,11,1 +28,12,-1 +28,22,1 +28,26,1 +28,28,-1 +28,31,1 +28,34,1 +28,37,-1 +28,39,-1 +28,40,1 +28,42,1 +28,43,1 +28,46,1 +28,48,-1 +28,49,-1 +28,51,-1 +28,52,-1 +28,56,1 +28,59,-1 +28,60,-1 +28,62,-1 +28,65,-1 +28,70,1 +28,82,-1 +28,87,1 +29,1,-1 +29,2,-1 +29,4,-1 +29,5,-1 +29,6,1 +29,7,-1 +29,10,-1 +29,11,-1 +29,13,-1 +29,14,-1 +29,15,1 +29,16,1 +29,19,1 +29,20,1 +29,24,-1 +29,25,1 +29,27,-1 +29,28,1 +29,29,-1 +29,30,1 +29,32,-1 +29,34,1 +29,37,-1 +29,39,1 +29,41,-1 +29,43,-1 +29,45,-1 +29,49,1 +29,53,1 +29,55,-1 +29,57,-1 +29,59,-1 +29,62,-1 +29,65,1 +29,66,1 +29,67,1 +29,70,-1 +29,83,1 +30,2,-1 +30,3,-1 +30,4,-1 +30,5,1 +30,7,1 +30,10,-1 +30,11,1 +30,15,-1 +30,17,-1 +30,18,1 +30,19,-1 +30,20,-1 +30,22,1 +30,24,1 +30,26,1 +30,29,1 +30,30,-1 +30,32,1 +30,35,1 +30,36,1 +30,42,1 +30,43,1 +30,44,-1 +30,45,-1 +30,46,1 +30,48,-1 +30,50,1 +30,51,-1 +30,52,1 +30,53,1 +30,55,1 +30,59,1 +30,60,1 +30,61,1 +30,66,1 +30,76,1 +31,5,1 +31,15,-1 +31,16,-1 +31,17,1 +31,26,1 +31,34,1 +31,35,1 +31,36,1 +31,38,1 +31,40,1 +31,50,1 +31,53,1 +31,59,1 +31,61,1 +31,62,1 +31,65,1 +31,69,1 +32,1,1 +32,7,-1 +32,10,-1 +32,15,-1 +32,19,-1 +32,21,-1 +32,26,-1 +32,28,-1 +32,29,1 +32,30,-1 +32,32,1 +32,34,-1 +32,37,-1 +32,38,-1 +32,42,-1 +32,45,1 +32,46,-1 +32,49,-1 +32,50,1 +32,51,-1 +32,53,-1 +32,54,1 +32,56,-1 +32,57,-1 +32,65,1 +32,66,1 +33,3,-1 +33,6,1 +33,8,-1 +33,10,1 +33,11,-1 +33,14,-1 +33,18,-1 +33,19,-1 +33,21,1 +33,24,-1 +33,26,-1 +33,27,1 +33,28,-1 +33,29,1 +33,30,-1 +33,32,-1 +33,34,-1 +33,35,1 +33,36,1 +33,37,-1 +33,39,-1 +33,40,-1 +33,42,1 +33,43,-1 +33,45,-1 +33,46,-1 +33,53,1 +33,54,-1 +33,57,-1 +33,58,-1 +33,61,-1 +33,62,1 +33,63,1 +33,66,1 +33,67,-1 +33,69,1 +33,70,1 +33,93,1 +34,1,1 +34,4,-1 +34,5,1 +34,6,1 +34,9,-1 +34,12,-1 +34,13,1 +34,14,1 +34,16,-1 +34,18,1 +34,19,-1 +34,20,-1 +34,23,-1 +34,24,-1 +34,27,1 +34,29,-1 +34,30,1 +34,34,-1 +34,35,-1 +34,38,-1 +34,41,-1 +34,42,1 +34,43,-1 +34,45,-1 +34,46,-1 +34,47,1 +34,48,-1 +34,54,1 +34,56,1 +34,57,-1 +34,58,-1 +34,59,-1 +34,63,-1 +34,64,-1 +34,65,-1 +34,66,1 +34,68,-1 +34,71,-1 +34,72,1 +34,73,-1 +34,74,-1 +34,80,-1 +34,82,-1 +34,84,-1 +34,88,-1 +34,90,-1 +34,93,-1 +34,94,1 +34,97,-1 +34,98,-1 +34,99,-1 +34,100,-1 +35,2,1 +35,5,1 +35,7,1 +35,8,1 +35,9,-1 +35,10,1 +35,11,1 +35,12,1 +35,13,1 +35,15,-1 +35,17,1 +35,18,-1 +35,22,1 +35,24,1 +35,29,1 +35,30,1 +35,31,1 +35,32,1 +35,35,1 +35,37,1 +35,38,1 +35,39,1 +35,40,1 +35,43,1 +35,46,-1 +35,49,-1 +35,51,1 +35,52,1 +35,53,1 +35,54,-1 +35,57,1 +35,61,1 +35,63,1 +35,64,1 +35,65,1 +35,66,1 +35,67,1 +35,68,1 +35,70,1 +35,73,1 +35,74,1 +35,75,1 +35,76,-1 +35,78,1 +35,79,1 +35,81,1 +35,82,-1 +35,83,1 +35,85,1 +35,86,1 +35,89,1 +35,91,1 +35,92,1 +35,93,1 +35,95,1 +35,96,1 +35,99,1 +35,100,1 +36,1,1 +36,2,1 +36,7,1 +36,11,1 +36,12,1 +36,13,1 +36,14,1 +36,17,1 +36,19,-1 +36,20,-1 +36,21,-1 +36,22,-1 +36,23,-1 +36,24,-1 +36,28,-1 +36,30,-1 +36,32,1 +36,34,-1 +36,35,1 +36,39,-1 +36,40,-1 +36,42,1 +36,45,1 +36,50,1 +36,53,1 +36,56,1 +36,57,-1 +36,58,-1 +36,61,1 +36,65,-1 +36,67,-1 +36,70,-1 +36,96,1 +37,4,-1 +37,5,-1 +37,7,-1 +37,8,1 +37,11,1 +37,12,-1 +37,13,-1 +37,16,-1 +37,18,-1 +37,20,1 +37,21,1 +37,23,-1 +37,28,1 +37,30,-1 +37,31,1 +37,33,-1 +37,34,1 +37,36,1 +37,38,-1 +37,39,-1 +37,40,1 +37,41,-1 +37,45,1 +37,48,1 +37,52,-1 +37,53,1 +37,57,-1 +37,58,-1 +37,60,-1 +37,61,1 +37,63,-1 +37,66,-1 +37,67,-1 +37,68,-1 +37,69,1 +37,70,-1 +38,5,1 +38,6,-1 +38,9,-1 +38,10,1 +38,12,1 +38,17,1 +38,18,1 +38,21,1 +38,22,1 +38,24,-1 +38,25,1 +38,29,1 +38,30,-1 +38,33,-1 +38,36,1 +38,38,1 +38,39,-1 +38,40,-1 +38,42,1 +38,43,-1 +38,44,1 +38,45,-1 +38,47,-1 +38,48,1 +38,50,1 +38,51,-1 +38,54,1 +38,58,-1 +38,60,1 +38,61,1 +38,62,1 +38,63,-1 +38,65,1 +38,66,1 +38,67,1 +38,68,1 +38,69,1 +38,73,-1 +38,74,-1 +38,76,1 +38,77,-1 +38,78,-1 +38,81,1 +38,82,-1 +38,85,-1 +38,87,-1 +38,88,-1 +38,89,-1 +38,90,-1 +38,95,1 +38,97,1 +38,98,1 +38,99,-1 +38,100,1 +39,6,1 +39,8,-1 +39,13,-1 +39,15,-1 +39,16,-1 +39,17,-1 +39,18,-1 +39,19,-1 +39,20,-1 +39,25,-1 +39,28,-1 +39,29,-1 +39,41,-1 +39,43,-1 +39,48,-1 +39,53,1 +39,56,-1 +39,61,1 +39,63,-1 +39,66,-1 +39,68,-1 +39,69,1 +40,1,-1 +40,2,-1 +40,3,-1 +40,4,-1 +40,5,-1 +40,8,1 +40,14,-1 +40,15,-1 +40,17,1 +40,19,-1 +40,20,1 +40,24,-1 +40,26,-1 +40,30,-1 +40,31,1 +40,32,-1 +40,34,-1 +40,38,1 +40,39,-1 +40,40,-1 +40,41,-1 +40,42,-1 +40,47,-1 +40,51,-1 +40,55,-1 +40,57,-1 +40,58,-1 +40,59,-1 +40,60,-1 +40,62,1 +40,64,-1 +40,65,-1 +40,67,-1 +40,70,-1 +40,74,-1 +40,77,-1 +40,89,-1 +40,92,-1 +40,94,-1 +40,95,-1 +40,100,-1 +41,3,1 +41,4,-1 +41,5,-1 +41,8,1 +41,11,1 +41,12,-1 +41,13,-1 +41,15,1 +41,16,1 +41,17,-1 +41,18,-1 +41,20,1 +41,23,1 +41,28,1 +41,30,-1 +41,34,1 +41,40,1 +41,42,1 +41,43,1 +41,45,1 +41,50,1 +41,52,1 +41,53,1 +41,54,1 +41,59,1 +41,60,1 +41,62,1 +41,64,1 +41,65,1 +41,66,-1 +41,67,1 +41,68,1 +41,69,1 +41,85,-1 +42,4,-1 +42,5,1 +42,7,1 +42,12,-1 +42,13,1 +42,14,-1 +42,15,1 +42,17,-1 +42,18,1 +42,19,1 +42,20,1 +42,23,-1 +42,27,1 +42,30,-1 +42,31,1 +42,33,-1 +42,36,1 +42,37,1 +42,38,1 +42,40,1 +42,42,-1 +42,43,-1 +42,45,1 +42,46,-1 +42,47,1 +42,49,1 +42,53,1 +42,55,1 +42,56,-1 +42,57,-1 +42,61,-1 +42,65,-1 +42,66,-1 +42,69,-1 +43,1,-1 +43,2,-1 +43,3,-1 +43,5,1 +43,7,-1 +43,8,-1 +43,10,-1 +43,11,1 +43,13,-1 +43,16,-1 +43,21,1 +43,22,-1 +43,27,1 +43,28,-1 +43,29,1 +43,33,1 +43,37,-1 +43,38,1 +43,39,1 +43,42,1 +43,45,-1 +43,47,1 +43,48,1 +43,53,1 +43,54,1 +43,55,-1 +43,59,-1 +43,60,-1 +43,62,1 +43,66,1 +43,68,-1 +43,70,-1 +43,96,1 +44,8,-1 +44,12,1 +44,15,-1 +44,16,-1 +44,20,1 +44,22,1 +44,26,1 +44,29,1 +44,31,1 +44,32,1 +44,35,1 +44,42,1 +44,48,1 +44,53,1 +44,61,1 +44,63,-1 +44,66,1 +44,69,-1 +44,88,-1 +45,2,1 +45,4,-1 +45,5,-1 +45,6,1 +45,7,1 +45,11,-1 +45,14,1 +45,15,1 +45,17,-1 +45,19,1 +45,20,-1 +45,23,1 +45,24,-1 +45,25,1 +45,27,-1 +45,28,1 +45,29,1 +45,32,1 +45,33,1 +45,34,1 +45,35,1 +45,36,1 +45,37,1 +45,40,-1 +45,42,-1 +45,43,-1 +45,44,-1 +45,46,1 +45,49,1 +45,50,1 +45,51,-1 +45,52,-1 +45,53,1 +45,54,1 +45,57,1 +45,59,1 +45,60,1 +45,62,1 +45,64,1 +45,66,1 +45,69,1 +45,70,1 +45,71,1 +45,75,-1 +45,76,1 +45,78,-1 +45,79,-1 +45,80,-1 +45,82,-1 +45,84,1 +45,85,-1 +45,86,-1 +45,87,1 +45,88,-1 +45,90,-1 +45,93,-1 +45,94,-1 +45,95,-1 +45,97,1 +45,98,-1 +45,100,-1 +46,1,1 +46,5,-1 +46,7,1 +46,9,-1 +46,10,1 +46,13,-1 +46,15,-1 +46,21,-1 +46,23,-1 +46,25,1 +46,27,-1 +46,28,1 +46,29,1 +46,33,1 +46,36,1 +46,37,-1 +46,40,1 +46,42,-1 +46,44,1 +46,47,-1 +46,48,1 +46,49,-1 +46,50,1 +46,53,1 +46,55,1 +46,58,-1 +46,60,-1 +46,61,-1 +46,63,-1 +46,64,-1 +46,67,-1 +46,68,1 +46,70,-1 +46,76,-1 +46,78,-1 +46,79,-1 +46,81,-1 +46,82,-1 +46,83,-1 +46,88,1 +46,92,1 +46,95,1 +46,96,-1 +46,99,-1 +47,1,-1 +47,2,-1 +47,3,-1 +47,9,-1 +47,12,-1 +47,13,-1 +47,14,-1 +47,15,-1 +47,16,-1 +47,17,-1 +47,19,1 +47,22,1 +47,25,1 +47,27,-1 +47,35,-1 +47,37,-1 +47,38,-1 +47,41,-1 +47,43,-1 +47,45,-1 +47,46,-1 +47,47,1 +47,48,-1 +47,53,1 +47,56,-1 +47,57,1 +47,58,-1 +47,62,-1 +47,63,1 +47,66,-1 +47,67,1 +47,68,-1 +48,1,1 +48,2,1 +48,3,1 +48,10,1 +48,12,-1 +48,13,-1 +48,14,1 +48,15,1 +48,16,1 +48,17,-1 +48,18,-1 +48,21,-1 +48,23,1 +48,24,1 +48,26,1 +48,28,1 +48,29,1 +48,31,1 +48,36,1 +48,37,-1 +48,40,1 +48,41,-1 +48,44,1 +48,48,-1 +48,50,1 +48,51,1 +48,53,1 +48,57,-1 +48,58,-1 +48,60,1 +48,61,1 +48,63,1 +48,64,-1 +48,67,1 +48,68,1 +48,70,-1 +48,92,1 +48,93,1 +48,95,1 +48,96,1 +48,100,1 +49,1,-1 +49,3,1 +49,4,1 +49,5,-1 +49,9,1 +49,11,1 +49,16,-1 +49,21,1 +49,25,1 +49,27,1 +49,29,1 +49,35,1 +49,40,1 +49,41,1 +49,42,1 +49,43,-1 +49,45,-1 +49,47,-1 +49,48,1 +49,49,1 +49,50,1 +49,52,1 +49,56,1 +49,60,-1 +49,62,1 +49,67,-1 +50,1,1 +50,3,1 +50,5,-1 +50,12,1 +50,13,1 +50,15,-1 +50,16,-1 +50,17,1 +50,19,1 +50,20,-1 +50,21,1 +50,23,1 +50,31,1 +50,32,1 +50,36,1 +50,39,1 +50,40,1 +50,41,1 +50,45,1 +50,46,1 +50,51,1 +50,53,1 +50,54,1 +50,57,-1 +50,58,1 +50,59,1 +50,60,1 +50,62,1 +50,63,1 +50,66,1 +50,68,1 +50,69,1 +50,70,1 +50,71,-1 +51,2,-1 +51,4,-1 +51,6,1 +51,8,-1 +51,10,1 +51,15,1 +51,16,-1 +51,17,-1 +51,23,-1 +51,24,-1 +51,25,1 +51,26,1 +51,30,1 +51,32,1 +51,33,1 +51,36,1 +51,38,-1 +51,40,-1 +51,43,1 +51,45,1 +51,47,1 +51,48,1 +51,52,1 +51,55,-1 +51,56,-1 +51,60,-1 +51,61,1 +51,62,1 +51,63,-1 +51,64,1 +51,65,1 +51,68,1 +51,70,1 +51,84,1 +52,3,1 +52,4,1 +52,5,1 +52,7,1 +52,12,1 +52,13,1 +52,16,-1 +52,18,1 +52,19,1 +52,21,1 +52,22,1 +52,23,1 +52,24,1 +52,25,-1 +52,26,1 +52,27,1 +52,30,1 +52,31,1 +52,32,1 +52,35,1 +52,37,1 +52,39,1 +52,42,1 +52,43,1 +52,44,1 +52,45,1 +52,47,-1 +52,48,1 +52,50,1 +52,52,1 +52,54,1 +52,55,1 +52,56,1 +52,59,1 +52,60,1 +52,63,-1 +52,66,1 +52,67,1 +52,68,1 +52,69,1 +52,70,1 +52,71,1 +52,73,1 +52,74,1 +52,75,1 +52,77,1 +52,80,1 +52,82,1 +52,85,1 +52,86,1 +52,87,1 +52,88,1 +52,89,1 +52,93,1 +52,95,1 +52,96,1 +52,97,1 +52,99,1 +53,5,-1 +53,7,1 +53,13,1 +53,15,-1 +53,17,1 +53,20,1 +53,21,1 +53,27,1 +53,28,1 +53,35,1 +53,36,1 +53,37,1 +53,40,1 +53,47,1 +53,50,1 +53,53,1 +53,68,1 +53,69,1 +53,70,1 +53,77,1 +54,3,-1 +54,6,-1 +54,8,-1 +54,10,1 +54,11,1 +54,14,-1 +54,15,1 +54,17,-1 +54,19,-1 +54,20,-1 +54,21,1 +54,26,1 +54,30,-1 +54,31,1 +54,33,-1 +54,35,1 +54,36,-1 +54,37,-1 +54,38,1 +54,40,-1 +54,41,1 +54,42,1 +54,47,-1 +54,53,-1 +54,56,-1 +54,58,-1 +54,59,-1 +54,60,1 +54,64,-1 +54,68,-1 +54,69,1 +54,70,1 +55,10,1 +55,11,1 +55,20,1 +55,21,1 +55,22,1 +55,23,1 +55,26,1 +55,27,1 +55,31,1 +55,32,1 +55,34,1 +55,36,1 +55,38,1 +55,41,1 +55,48,1 +55,52,1 +55,53,1 +55,54,1 +55,55,1 +55,56,1 +55,61,1 +55,62,1 +55,69,1 +56,4,-1 +56,5,-1 +56,8,-1 +56,9,-1 +56,13,-1 +56,14,-1 +56,16,-1 +56,18,1 +56,19,1 +56,20,-1 +56,25,-1 +56,26,-1 +56,29,-1 +56,30,1 +56,32,1 +56,33,-1 +56,34,-1 +56,35,-1 +56,38,1 +56,39,-1 +56,40,-1 +56,41,-1 +56,43,-1 +56,47,1 +56,49,1 +56,54,-1 +56,60,-1 +56,62,-1 +56,63,-1 +56,66,-1 +56,68,-1 +56,84,-1 +56,87,-1 +56,88,-1 +56,90,1 +56,91,-1 +56,94,-1 +56,95,1 +56,96,-1 +56,98,-1 +56,100,-1 +57,1,-1 +57,2,-1 +57,4,-1 +57,9,-1 +57,10,1 +57,12,-1 +57,14,1 +57,15,1 +57,18,1 +57,22,1 +57,28,-1 +57,30,-1 +57,32,-1 +57,33,-1 +57,36,1 +57,38,-1 +57,40,1 +57,47,-1 +57,49,1 +57,50,1 +57,51,-1 +57,52,-1 +57,53,1 +57,54,1 +57,56,-1 +57,57,-1 +57,59,-1 +57,60,-1 +57,61,-1 +57,62,1 +57,63,-1 +57,65,1 +57,69,1 +57,76,-1 +58,2,1 +58,5,1 +58,7,-1 +58,8,1 +58,12,-1 +58,13,1 +58,14,-1 +58,15,-1 +58,19,1 +58,20,1 +58,23,-1 +58,24,1 +58,25,-1 +58,30,-1 +58,31,1 +58,33,-1 +58,36,1 +58,37,-1 +58,38,-1 +58,39,-1 +58,41,-1 +58,42,-1 +58,43,-1 +58,44,-1 +58,46,1 +58,52,-1 +58,54,1 +58,60,-1 +58,61,-1 +58,62,1 +58,63,1 +58,64,1 +58,65,-1 +58,66,1 +58,67,-1 +58,68,1 +58,69,1 +58,70,-1 +58,72,1 +59,2,1 +59,5,1 +59,6,1 +59,9,-1 +59,10,1 +59,13,-1 +59,14,1 +59,17,-1 +59,18,1 +59,19,-1 +59,21,1 +59,23,1 +59,24,-1 +59,25,1 +59,26,-1 +59,28,1 +59,34,1 +59,35,1 +59,40,1 +59,41,1 +59,43,-1 +59,45,1 +59,46,-1 +59,49,1 +59,53,1 +59,56,-1 +59,57,-1 +59,60,1 +59,62,1 +59,63,1 +59,70,1 +59,71,1 +59,73,1 +59,76,1 +59,78,1 +59,81,1 +59,82,1 +59,83,1 +59,84,1 +59,85,1 +59,87,1 +59,88,1 +59,89,1 +59,90,1 +59,91,1 +59,92,-1 +59,95,1 +59,96,1 +59,97,1 +60,1,1 +60,3,-1 +60,5,1 +60,6,-1 +60,9,1 +60,10,-1 +60,11,1 +60,12,1 +60,14,1 +60,17,1 +60,18,-1 +60,20,-1 +60,22,-1 +60,25,-1 +60,26,1 +60,28,-1 +60,30,1 +60,32,-1 +60,35,1 +60,36,1 +60,37,-1 +60,38,1 +60,39,-1 +60,41,1 +60,42,1 +60,43,-1 +60,46,-1 +60,47,-1 +60,48,-1 +60,49,1 +60,51,1 +60,54,1 +60,55,1 +60,57,-1 +60,60,-1 +60,61,1 +60,63,-1 +60,65,1 +60,66,1 +60,68,1 +60,69,1 +60,73,1 +60,74,-1 +60,79,1 +60,80,1 +60,83,1 +60,89,1 +60,90,-1 +60,91,1 +60,92,1 +60,93,1 +60,95,-1 +60,97,-1 +60,99,1 +61,2,1 +61,3,1 +61,4,1 +61,5,1 +61,6,1 +61,7,1 +61,9,1 +61,12,1 +61,13,-1 +61,14,1 +61,18,1 +61,21,1 +61,24,1 +61,27,1 +61,29,1 +61,30,1 +61,37,1 +61,38,1 +61,41,-1 +61,43,1 +61,45,1 +61,49,1 +61,52,1 +61,56,1 +61,57,1 +61,58,1 +61,59,1 +61,60,1 +61,62,1 +61,63,1 +61,70,1 +61,74,1 +61,77,1 +61,79,1 +61,80,1 +61,83,1 +61,87,1 +61,88,1 +61,92,1 +61,93,1 +61,96,1 +61,97,1 +61,98,1 +61,100,1 +62,1,1 +62,4,-1 +62,5,1 +62,8,-1 +62,11,-1 +62,13,-1 +62,14,-1 +62,16,-1 +62,18,1 +62,19,1 +62,20,1 +62,21,1 +62,23,1 +62,24,-1 +62,26,-1 +62,27,1 +62,29,1 +62,30,-1 +62,31,1 +62,34,1 +62,35,1 +62,38,1 +62,39,1 +62,40,1 +62,42,1 +62,45,1 +62,46,-1 +62,49,1 +62,50,1 +62,51,1 +62,54,1 +62,56,1 +62,57,-1 +62,59,1 +62,60,-1 +62,62,1 +62,63,1 +62,65,1 +62,67,1 +62,70,1 +62,73,1 +62,99,-1 +62,100,1 +63,2,-1 +63,4,1 +63,6,1 +63,7,-1 +63,8,1 +63,9,1 +63,11,1 +63,15,-1 +63,20,1 +63,23,1 +63,24,-1 +63,27,1 +63,30,1 +63,32,-1 +63,34,-1 +63,36,1 +63,37,1 +63,41,1 +63,42,-1 +63,45,-1 +63,48,1 +63,50,1 +63,51,-1 +63,52,1 +63,53,1 +63,54,-1 +63,58,-1 +63,59,1 +63,60,1 +63,62,1 +63,63,1 +63,65,-1 +63,69,1 +63,80,1 +64,3,1 +64,8,1 +64,11,-1 +64,12,1 +64,14,1 +64,18,-1 +64,19,1 +64,20,-1 +64,21,1 +64,22,1 +64,27,1 +64,30,-1 +64,31,1 +64,32,-1 +64,33,-1 +64,37,1 +64,39,1 +64,40,-1 +64,41,-1 +64,42,1 +64,43,-1 +64,49,1 +64,50,-1 +64,56,1 +64,58,1 +64,59,-1 +64,60,-1 +64,61,1 +64,63,1 +64,69,1 +64,71,-1 +64,72,1 +64,73,-1 +64,74,-1 +64,77,-1 +64,78,-1 +64,79,-1 +64,80,-1 +64,82,1 +64,83,1 +64,84,1 +64,85,1 +64,86,-1 +64,93,1 +64,94,1 +64,99,-1 +64,100,-1 +65,5,-1 +65,8,-1 +65,12,-1 +65,14,-1 +65,17,-1 +65,29,-1 +65,31,-1 +65,32,-1 +65,36,-1 +65,39,-1 +65,42,-1 +65,47,-1 +65,48,1 +65,50,-1 +65,58,-1 +65,59,-1 +65,61,-1 +65,63,1 +65,88,-1 +66,3,1 +66,5,1 +66,6,1 +66,8,-1 +66,10,1 +66,15,1 +66,16,1 +66,18,1 +66,19,1 +66,20,1 +66,21,1 +66,24,-1 +66,25,1 +66,26,1 +66,27,1 +66,32,1 +66,34,1 +66,35,1 +66,37,-1 +66,40,-1 +66,41,-1 +66,43,-1 +66,47,-1 +66,48,1 +66,49,1 +66,52,-1 +66,53,1 +66,54,1 +66,55,1 +66,57,-1 +66,59,1 +66,61,1 +66,62,1 +66,63,-1 +66,64,1 +66,65,1 +66,66,-1 +66,68,1 +66,69,1 +66,71,-1 +66,75,-1 +66,76,-1 +66,77,-1 +66,79,-1 +66,82,-1 +66,83,1 +66,84,-1 +66,86,-1 +66,87,1 +66,88,1 +66,93,-1 +66,94,-1 +66,95,-1 +66,96,1 +66,97,-1 +66,99,-1 +67,2,1 +67,3,1 +67,4,1 +67,6,1 +67,11,1 +67,12,1 +67,13,1 +67,15,1 +67,16,-1 +67,17,1 +67,18,1 +67,20,1 +67,21,1 +67,22,1 +67,23,-1 +67,24,-1 +67,25,1 +67,27,1 +67,28,1 +67,29,1 +67,30,1 +67,31,1 +67,35,1 +67,38,1 +67,39,1 +67,41,1 +67,42,-1 +67,43,1 +67,48,1 +67,49,1 +67,50,1 +67,51,-1 +67,52,1 +67,54,1 +67,55,-1 +67,57,1 +67,58,1 +67,60,1 +67,61,1 +67,63,1 +67,64,1 +67,66,1 +67,68,1 +67,69,1 +67,70,1 +67,71,1 +67,73,1 +67,74,1 +67,75,1 +67,76,1 +67,79,1 +67,81,1 +67,84,1 +67,87,1 +67,88,1 +67,91,1 +67,95,1 +67,97,1 +67,99,1 +67,100,1 +68,2,1 +68,4,1 +68,6,1 +68,8,1 +68,13,1 +68,14,-1 +68,15,-1 +68,18,1 +68,19,1 +68,21,-1 +68,24,1 +68,27,1 +68,28,1 +68,30,1 +68,32,1 +68,33,1 +68,35,1 +68,36,-1 +68,38,1 +68,40,-1 +68,41,1 +68,43,1 +68,45,1 +68,47,1 +68,48,1 +68,50,1 +68,52,1 +68,53,1 +68,55,1 +68,57,1 +68,58,1 +68,60,1 +68,63,-1 +68,65,1 +68,66,-1 +68,68,1 +68,69,-1 +68,93,1 +68,96,1 +68,98,1 +68,99,1 +69,5,-1 +69,7,1 +69,8,1 +69,15,-1 +69,19,-1 +69,20,1 +69,21,1 +69,23,-1 +69,31,-1 +69,35,1 +69,42,1 +69,45,-1 +69,46,-1 +69,47,-1 +69,48,-1 +69,49,1 +69,54,1 +69,55,1 +69,65,-1 +69,68,1 +70,5,-1 +70,13,-1 +70,14,-1 +70,15,-1 +70,16,-1 +70,17,-1 +70,20,-1 +70,21,1 +70,29,-1 +70,31,-1 +70,32,1 +70,35,-1 +70,36,-1 +70,42,1 +70,45,-1 +70,48,-1 +70,50,-1 +70,61,1 +70,62,1 +70,66,1 +70,68,1 +70,69,-1 +70,71,-1 +71,1,1 +71,3,1 +71,5,1 +71,8,-1 +71,11,-1 +71,13,-1 +71,16,-1 +71,18,-1 +71,21,-1 +71,26,1 +71,28,1 +71,29,1 +71,31,1 +71,33,-1 +71,34,-1 +71,35,1 +71,38,1 +71,41,1 +71,42,1 +71,45,1 +71,47,1 +71,48,1 +71,56,-1 +71,59,1 +71,61,1 +71,63,1 +71,65,1 +71,68,1 +72,2,1 +72,3,-1 +72,8,-1 +72,9,-1 +72,11,1 +72,14,1 +72,15,1 +72,17,-1 +72,20,-1 +72,24,-1 +72,25,1 +72,28,1 +72,29,1 +72,30,-1 +72,32,1 +72,34,-1 +72,37,-1 +72,38,-1 +72,39,1 +72,40,-1 +72,41,1 +72,42,1 +72,45,1 +72,46,-1 +72,47,1 +72,50,1 +72,51,1 +72,52,-1 +72,53,-1 +72,54,1 +72,55,-1 +72,56,-1 +72,57,-1 +72,62,1 +72,63,1 +72,66,-1 +72,67,-1 +72,68,1 +72,69,1 +72,70,1 +72,76,1 +72,80,-1 +72,81,-1 +72,82,-1 +72,84,1 +72,85,-1 +72,89,1 +72,91,-1 +72,92,-1 +72,96,-1 +72,98,1 +72,99,-1 +73,1,1 +73,2,-1 +73,3,1 +73,6,1 +73,10,1 +73,12,1 +73,13,-1 +73,16,-1 +73,19,1 +73,21,1 +73,22,1 +73,23,1 +73,24,1 +73,26,-1 +73,27,1 +73,30,-1 +73,31,1 +73,32,1 +73,33,-1 +73,36,1 +73,37,-1 +73,38,-1 +73,41,-1 +73,43,-1 +73,45,1 +73,46,-1 +73,48,1 +73,50,1 +73,51,-1 +73,52,1 +73,54,1 +73,55,1 +73,58,-1 +73,59,-1 +73,61,1 +73,62,1 +73,63,-1 +73,64,-1 +73,65,1 +73,66,1 +73,67,-1 +73,68,1 +73,69,-1 +73,73,-1 +73,77,1 +73,78,1 +73,79,1 +73,80,1 +73,82,-1 +73,83,-1 +73,84,-1 +73,85,-1 +73,86,-1 +73,87,-1 +73,88,-1 +73,90,-1 +73,91,1 +73,98,-1 +73,100,1 +74,1,1 +74,2,1 +74,3,-1 +74,5,1 +74,9,-1 +74,10,1 +74,11,1 +74,16,-1 +74,17,1 +74,18,1 +74,20,-1 +74,29,-1 +74,32,-1 +74,33,1 +74,35,-1 +74,36,1 +74,37,1 +74,38,-1 +74,39,-1 +74,40,1 +74,43,-1 +74,44,-1 +74,45,1 +74,46,-1 +74,47,-1 +74,48,1 +74,49,1 +74,51,-1 +74,53,1 +74,57,-1 +74,58,-1 +74,59,1 +74,60,1 +74,61,-1 +74,64,1 +74,68,1 +74,69,1 +74,70,1 +74,74,-1 +74,75,1 +74,76,1 +74,77,1 +74,79,1 +74,82,1 +74,83,1 +74,84,1 +74,85,1 +74,87,1 +74,88,1 +74,89,1 +74,90,1 +74,91,-1 +74,93,1 +74,95,1 +74,96,1 +74,98,-1 +74,99,1 +75,5,1 +75,13,1 +75,15,1 +75,16,-1 +75,17,1 +75,18,1 +75,28,-1 +75,35,-1 +75,38,1 +75,39,1 +75,47,-1 +75,48,-1 +75,49,1 +75,53,-1 +75,61,-1 +75,66,-1 +75,68,-1 +75,69,-1 +75,93,-1 +75,94,-1 +76,2,1 +76,3,1 +76,9,1 +76,10,1 +76,12,1 +76,14,1 +76,15,1 +76,18,1 +76,19,1 +76,20,1 +76,22,1 +76,24,1 +76,25,1 +76,26,1 +76,27,1 +76,31,1 +76,33,1 +76,36,1 +76,37,1 +76,38,1 +76,39,1 +76,41,1 +76,44,1 +76,45,1 +76,46,1 +76,47,1 +76,50,1 +76,51,1 +76,52,1 +76,53,1 +76,54,1 +76,55,1 +76,56,1 +76,57,1 +76,60,-1 +76,61,1 +76,62,1 +76,64,1 +76,66,1 +76,67,1 +76,68,1 +76,70,1 +76,74,-1 +76,77,1 +76,80,1 +76,81,1 +76,82,1 +76,83,1 +76,84,1 +76,85,1 +76,89,1 +76,90,1 +76,91,1 +76,99,1 +76,100,1 +77,2,-1 +77,4,-1 +77,5,1 +77,7,-1 +77,8,1 +77,12,-1 +77,13,1 +77,14,-1 +77,15,1 +77,17,1 +77,19,-1 +77,20,-1 +77,23,1 +77,24,1 +77,26,-1 +77,29,-1 +77,35,-1 +77,40,-1 +77,41,-1 +77,42,-1 +77,44,1 +77,45,-1 +77,47,-1 +77,49,-1 +77,50,-1 +77,51,-1 +77,52,-1 +77,53,-1 +77,54,-1 +77,57,1 +77,58,1 +77,59,-1 +77,60,1 +77,62,-1 +77,66,-1 +77,68,-1 +77,85,-1 +77,86,1 +77,97,-1 +77,98,-1 +77,99,1 +78,5,1 +78,12,1 +78,17,-1 +78,18,-1 +78,19,-1 +78,29,-1 +78,31,-1 +78,32,-1 +78,34,-1 +78,35,-1 +78,38,-1 +78,42,-1 +78,48,-1 +78,49,-1 +78,53,1 +78,54,1 +78,56,1 +78,61,-1 +78,65,-1 +78,66,-1 +78,73,-1 +78,74,-1 +78,87,-1 +79,1,1 +79,4,1 +79,6,1 +79,10,1 +79,12,1 +79,13,1 +79,14,1 +79,15,1 +79,16,-1 +79,17,1 +79,20,-1 +79,21,1 +79,22,1 +79,23,1 +79,25,1 +79,26,1 +79,33,-1 +79,34,1 +79,35,1 +79,37,1 +79,38,1 +79,42,1 +79,44,1 +79,46,1 +79,47,1 +79,48,1 +79,50,1 +79,52,1 +79,58,1 +79,59,1 +79,64,-1 +79,66,-1 +79,67,1 +79,69,1 +79,74,-1 +80,7,1 +80,8,-1 +80,9,-1 +80,10,1 +80,12,1 +80,13,-1 +80,18,1 +80,19,1 +80,20,1 +80,25,1 +80,26,1 +80,27,1 +80,29,1 +80,30,-1 +80,32,1 +80,33,-1 +80,36,1 +80,39,1 +80,41,1 +80,42,1 +80,43,1 +80,45,1 +80,46,-1 +80,47,1 +80,50,1 +80,56,1 +80,59,1 +80,61,1 +80,62,1 +80,64,-1 +80,65,-1 +80,66,1 +80,68,1 +80,69,1 +80,70,1 +81,8,-1 +81,12,-1 +81,15,-1 +81,16,-1 +81,19,-1 +81,23,1 +81,27,1 +81,28,1 +81,29,1 +81,32,1 +81,35,1 +81,39,-1 +81,46,-1 +81,49,1 +81,50,1 +81,52,-1 +81,61,1 +81,66,1 +81,69,1 +81,74,-1 +82,7,-1 +82,8,-1 +82,13,-1 +82,15,-1 +82,16,1 +82,17,-1 +82,18,1 +82,19,1 +82,35,1 +82,42,-1 +82,50,1 +82,56,1 +82,61,1 +82,68,1 +82,72,1 +82,88,1 +83,5,1 +83,7,-1 +83,8,-1 +83,11,1 +83,12,-1 +83,13,-1 +83,15,-1 +83,16,-1 +83,18,-1 +83,19,1 +83,21,1 +83,31,1 +83,32,1 +83,35,-1 +83,36,1 +83,38,1 +83,42,-1 +83,46,1 +83,47,1 +83,48,1 +83,49,1 +83,50,1 +83,56,-1 +83,61,1 +83,63,1 +83,66,-1 +83,68,1 +83,69,1 +83,96,1 +84,1,1 +84,4,1 +84,5,1 +84,7,1 +84,13,1 +84,14,-1 +84,15,1 +84,18,-1 +84,20,-1 +84,21,1 +84,22,-1 +84,23,1 +84,25,1 +84,28,1 +84,29,1 +84,30,1 +84,32,-1 +84,35,1 +84,39,-1 +84,41,-1 +84,42,-1 +84,43,1 +84,44,1 +84,46,-1 +84,49,1 +84,51,1 +84,52,1 +84,53,1 +84,54,1 +84,55,1 +84,56,1 +84,57,1 +84,59,1 +84,61,-1 +84,62,1 +84,64,1 +84,65,1 +84,66,1 +84,69,1 +84,70,1 +84,92,1 +84,98,-1 +85,7,1 +85,13,-1 +85,14,-1 +85,17,-1 +85,21,-1 +85,25,-1 +85,27,1 +85,29,-1 +85,31,-1 +85,32,-1 +85,34,-1 +85,39,-1 +85,42,-1 +85,47,-1 +85,53,1 +85,55,-1 +85,56,-1 +85,61,-1 +85,62,-1 +85,66,1 +85,68,1 +86,6,1 +86,10,-1 +86,11,1 +86,17,1 +86,18,1 +86,19,-1 +86,26,1 +86,28,1 +86,29,-1 +86,31,1 +86,32,1 +86,36,-1 +86,40,1 +86,50,1 +86,53,1 +86,54,1 +86,56,1 +86,62,1 +86,64,1 +86,65,-1 +86,68,-1 +86,69,1 +87,1,1 +87,2,1 +87,3,1 +87,7,1 +87,9,-1 +87,11,1 +87,12,-1 +87,13,1 +87,14,1 +87,15,1 +87,16,1 +87,18,1 +87,20,1 +87,23,1 +87,24,1 +87,25,1 +87,27,1 +87,28,-1 +87,29,1 +87,31,1 +87,32,1 +87,35,1 +87,36,1 +87,38,1 +87,39,1 +87,46,1 +87,48,-1 +87,50,1 +87,57,-1 +87,62,1 +87,64,1 +87,67,1 +87,69,1 +87,77,-1 +87,78,-1 +87,80,-1 +87,81,-1 +87,82,-1 +87,83,-1 +87,86,-1 +87,87,-1 +87,88,1 +87,89,1 +87,90,-1 +87,91,-1 +87,92,-1 +87,95,-1 +87,97,-1 +87,99,-1 +88,2,-1 +88,4,-1 +88,8,1 +88,10,1 +88,11,-1 +88,12,1 +88,13,-1 +88,16,1 +88,19,-1 +88,20,-1 +88,21,-1 +88,23,-1 +88,24,-1 +88,25,-1 +88,27,-1 +88,33,-1 +88,34,-1 +88,36,1 +88,38,1 +88,41,-1 +88,42,-1 +88,43,-1 +88,44,-1 +88,45,-1 +88,51,-1 +88,55,-1 +88,57,-1 +88,58,-1 +88,59,-1 +88,60,-1 +88,63,1 +88,65,1 +88,66,1 +88,67,-1 +88,85,-1 +89,2,1 +89,3,1 +89,6,1 +89,11,-1 +89,12,1 +89,13,-1 +89,15,-1 +89,16,-1 +89,18,-1 +89,20,1 +89,22,-1 +89,23,-1 +89,26,1 +89,27,1 +89,28,1 +89,29,1 +89,32,1 +89,34,-1 +89,35,1 +89,37,-1 +89,39,-1 +89,41,-1 +89,43,-1 +89,44,-1 +89,45,-1 +89,47,-1 +89,49,1 +89,52,-1 +89,53,1 +89,54,1 +89,59,1 +89,60,-1 +89,61,1 +89,62,1 +89,63,1 +89,64,1 +89,68,1 +89,70,-1 +89,75,1 +89,87,1 +89,90,1 +89,91,1 +89,95,1 +89,96,1 +89,97,1 +89,98,1 +89,99,1 +89,100,1 +90,3,1 +90,4,1 +90,6,1 +90,9,1 +90,10,1 +90,13,1 +90,14,1 +90,15,-1 +90,16,-1 +90,17,1 +90,19,1 +90,20,1 +90,22,1 +90,25,1 +90,26,1 +90,27,1 +90,30,1 +90,31,1 +90,32,1 +90,33,1 +90,34,1 +90,35,1 +90,37,-1 +90,39,1 +90,40,1 +90,42,1 +90,43,-1 +90,48,1 +90,50,1 +90,51,1 +90,53,1 +90,55,1 +90,56,-1 +90,63,-1 +90,69,1 +90,70,-1 +90,74,1 +90,75,1 +90,77,1 +90,78,1 +90,79,1 +90,80,1 +90,81,1 +90,82,1 +90,83,1 +90,85,1 +90,87,1 +90,94,-1 +90,96,1 +90,97,1 +90,99,1 +90,100,1 +91,4,1 +91,5,1 +91,8,1 +91,9,1 +91,12,1 +91,14,1 +91,15,1 +91,19,1 +91,22,1 +91,25,1 +91,29,1 +91,31,-1 +91,33,1 +91,34,1 +91,35,1 +91,38,-1 +91,44,1 +91,45,1 +91,47,-1 +91,48,-1 +91,50,1 +91,51,1 +91,52,1 +91,53,1 +91,57,1 +91,59,1 +91,60,1 +91,61,1 +91,63,-1 +91,64,1 +91,66,-1 +91,68,1 +91,70,1 +91,71,1 +91,72,1 +91,73,-1 +91,75,1 +91,77,-1 +91,78,1 +91,79,-1 +91,83,1 +91,84,1 +91,85,-1 +91,86,1 +91,87,1 +91,89,1 +91,91,-1 +91,94,1 +91,97,1 +91,99,1 +92,13,-1 +92,18,1 +92,19,-1 +92,20,1 +92,21,1 +92,29,-1 +92,31,1 +92,32,1 +92,36,1 +92,38,1 +92,42,1 +92,49,1 +92,51,1 +92,53,-1 +92,69,-1 +93,1,1 +93,2,1 +93,3,1 +93,5,1 +93,6,1 +93,7,1 +93,8,-1 +93,10,1 +93,13,1 +93,16,1 +93,17,1 +93,19,1 +93,20,1 +93,22,1 +93,23,1 +93,24,1 +93,25,-1 +93,26,-1 +93,28,1 +93,29,-1 +93,31,-1 +93,33,1 +93,34,1 +93,35,1 +93,37,1 +93,38,-1 +93,41,-1 +93,43,1 +93,44,1 +93,46,1 +93,47,1 +93,50,1 +93,51,-1 +93,53,-1 +93,54,1 +93,55,1 +93,56,1 +93,58,-1 +93,59,-1 +93,60,1 +93,61,-1 +93,62,1 +93,63,1 +93,64,1 +93,67,1 +93,68,1 +93,69,1 +93,71,-1 +93,73,-1 +93,74,-1 +93,75,1 +93,76,1 +93,77,-1 +93,80,-1 +93,82,1 +93,83,1 +93,84,1 +93,85,1 +93,86,1 +93,87,1 +93,89,1 +93,91,1 +93,92,-1 +93,98,-1 +93,99,-1 +94,1,1 +94,2,-1 +94,3,1 +94,5,1 +94,7,1 +94,13,-1 +94,14,1 +94,16,-1 +94,17,-1 +94,19,1 +94,24,-1 +94,30,1 +94,33,1 +94,34,-1 +94,35,1 +94,36,1 +94,38,1 +94,41,1 +94,42,1 +94,43,1 +94,46,-1 +94,47,1 +94,48,1 +94,49,1 +94,53,1 +94,54,1 +94,55,1 +94,56,1 +94,60,-1 +94,62,1 +94,63,1 +94,65,1 +94,67,-1 +94,69,-1 +94,70,1 +95,1,1 +95,3,1 +95,6,1 +95,8,1 +95,10,1 +95,11,1 +95,13,-1 +95,15,-1 +95,16,1 +95,17,1 +95,19,1 +95,20,1 +95,22,1 +95,23,1 +95,28,1 +95,29,1 +95,30,1 +95,31,1 +95,32,1 +95,36,1 +95,38,1 +95,39,1 +95,40,1 +95,46,1 +95,49,1 +95,51,1 +95,52,1 +95,53,1 +95,54,1 +95,55,1 +95,56,1 +95,57,1 +95,58,1 +95,60,1 +95,63,1 +95,65,1 +95,72,-1 +95,74,1 +95,76,1 +95,79,1 +95,82,1 +95,83,1 +95,85,1 +95,86,1 +95,87,1 +95,89,1 +95,91,1 +95,98,1 +95,99,1 +96,6,1 +96,10,1 +96,13,-1 +96,14,1 +96,16,-1 +96,17,1 +96,18,-1 +96,19,-1 +96,22,1 +96,25,1 +96,26,-1 +96,28,-1 +96,29,1 +96,31,1 +96,32,1 +96,38,-1 +96,39,-1 +96,42,1 +96,47,1 +96,48,-1 +96,49,1 +96,50,1 +96,54,1 +96,55,1 +96,61,1 +96,62,-1 +96,70,-1 +96,78,1 +96,82,1 +97,6,1 +97,13,1 +97,15,1 +97,17,1 +97,18,1 +97,19,-1 +97,27,1 +97,28,1 +97,31,1 +97,35,1 +97,42,1 +97,44,1 +97,45,1 +97,47,1 +97,50,1 +97,54,1 +97,55,1 +97,60,1 +97,65,1 +97,66,1 +97,77,1 +98,1,-1 +98,2,1 +98,12,-1 +98,13,1 +98,14,1 +98,15,1 +98,18,-1 +98,20,1 +98,23,-1 +98,25,-1 +98,26,1 +98,29,-1 +98,30,-1 +98,31,-1 +98,33,-1 +98,35,1 +98,36,1 +98,38,-1 +98,42,1 +98,43,-1 +98,44,-1 +98,47,-1 +98,48,1 +98,50,1 +98,54,1 +98,55,1 +98,56,-1 +98,57,-1 +98,59,-1 +98,60,-1 +98,62,1 +98,63,-1 +98,64,-1 +98,65,-1 +98,66,-1 +98,68,-1 +98,70,1 +98,75,-1 +98,77,1 +98,78,1 +98,79,-1 +98,81,1 +98,84,-1 +98,86,-1 +98,87,-1 +98,88,1 +98,90,1 +98,92,-1 +98,94,1 +98,95,-1 +98,96,1 +98,98,-1 +99,2,-1 +99,6,-1 +99,7,1 +99,14,1 +99,15,1 +99,16,-1 +99,18,-1 +99,20,1 +99,22,1 +99,26,-1 +99,28,1 +99,29,1 +99,31,-1 +99,32,1 +99,35,1 +99,36,1 +99,41,1 +99,42,-1 +99,50,1 +99,53,1 +99,54,1 +99,56,1 +99,60,-1 +99,62,1 +99,75,-1 +100,1,-1 +100,2,-1 +100,3,1 +100,5,-1 +100,7,-1 +100,11,-1 +100,14,1 +100,16,-1 +100,17,-1 +100,19,-1 +100,22,-1 +100,24,-1 +100,25,-1 +100,27,-1 +100,28,-1 +100,31,-1 +100,33,-1 +100,39,-1 +100,40,-1 +100,45,-1 +100,47,-1 +100,50,-1 +100,51,-1 +100,54,1 +100,59,-1 +100,61,-1 +100,63,-1 +100,65,1 +100,95,-1