antulik commited on
Commit
7e93e28
1 Parent(s): 167f719

Add BERTopic model

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ ctfidf_config.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,725 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ tags:
4
+ - bertopic
5
+ library_name: bertopic
6
+ pipeline_tag: text-classification
7
+ ---
8
+
9
+ # BERTopic-enron-50k
10
+
11
+ This is a [BERTopic](https://github.com/MaartenGr/BERTopic) model.
12
+ BERTopic is a flexible and modular topic modeling framework that allows for the generation of easily interpretable topics from large datasets.
13
+
14
+ ## Usage
15
+
16
+ To use this model, please install BERTopic:
17
+
18
+ ```
19
+ pip install -U bertopic
20
+ ```
21
+
22
+ You can use the model as follows:
23
+
24
+ ```python
25
+ from bertopic import BERTopic
26
+ topic_model = BERTopic.load("antulik/BERTopic-enron-50k")
27
+
28
+ topic_model.get_topic_info()
29
+ ```
30
+
31
+ ## Topic overview
32
+
33
+ * Number of topics: 656
34
+ * Number of training documents: 50000
35
+
36
+ <details>
37
+ <summary>Click here for an overview of all topics.</summary>
38
+
39
+ | Topic ID | Topic Keywords | Topic Frequency | Label |
40
+ |----------|----------------|-----------------|-------|
41
+ | -1 | enron - agreement - contract - energy - power | 10 | -1_enron_agreement_contract_energy |
42
+ | 0 | enronmessagingadministrationenroncom - recipients - recipient - message - disclosure | 24222 | 0_enronmessagingadministrationenroncom_recipients_recipient_message |
43
+ | 1 | fares - newark - flights - continentalcom - airlines | 510 | 1_fares_newark_flights_continentalcom |
44
+ | 2 | isda - isdas - agreements - enron - ena | 358 | 2_isda_isdas_agreements_enron |
45
+ | 3 | northwests - northwest - rogerpelotewilliamscom - available - billwcalpinecom | 355 | 3_northwests_northwest_rogerpelotewilliamscom_available |
46
+ | 4 | deals - trades - deal - trade - buys | 340 | 4_deals_trades_deal_trade |
47
+ | 5 | reschedule - scheduled - schedule - meeting - meetings | 316 | 5_reschedule_scheduled_schedule_meeting |
48
+ | 6 | outlookmigrationteamenroncom - outlook - outlookteamenroncom - appointment - calendar | 310 | 6_outlookmigrationteamenroncom_outlook_outlookteamenroncom_appointment |
49
+ | 7 | logistics - gas - fuel - coal - trading | 293 | 7_logistics_gas_fuel_coal |
50
+ | 8 | conference - scheduled - call - dial - calls | 285 | 8_conference_scheduled_call_dial |
51
+ | 9 | nda - ndas - enron - counterparties - counterparty | 230 | 9_nda_ndas_enron_counterparties |
52
+ | 10 | nasdaq - nyse - stocks - stock - market | 229 | 10_nasdaq_nyse_stocks_stock |
53
+ | 11 | arbitration - litigation - lawsuit - plaintiff - proceedings | 215 | 11_arbitration_litigation_lawsuit_plaintiff |
54
+ | 12 | enron - resumes - resume - associate - hiring | 201 | 12_enron_resumes_resume_associate |
55
+ | 13 | electricity - energy - gov - governors - federal | 193 | 13_electricity_energy_gov_governors |
56
+ | 14 | enron - allisonmchenryenroncom - eb - corp - geniafitzgeraldenroncom | 193 | 14_enron_allisonmchenryenroncom_eb_corp |
57
+ | 15 | expense - expenses - budgets - expenditures - allocations | 191 | 15_expense_expenses_budgets_expenditures |
58
+ | 16 | weekend - meet - trip - going - austin | 173 | 16_weekend_meet_trip_going |
59
+ | 17 | enrononline - wwwenrononlinecom - desk - httpwwwenrononlinecom - password | 163 | 17_enrononline_wwwenrononlinecom_desk_httpwwwenrononlinecom |
60
+ | 18 | nymexcomex - nymex - comex - futures - exchange | 154 | 18_nymexcomex_nymex_comex_futures |
61
+ | 19 | curves - curve - curvetypecd - marking - prices | 154 | 19_curves_curve_curvetypecd_marking |
62
+ | 20 | ontario - alberta - transcanada - toronto - agreements | 149 | 20_ontario_alberta_transcanada_toronto |
63
+ | 21 | brazilian - banco - transferncia - rio - janeiro | 148 | 21_brazilian_banco_transferncia_rio |
64
+ | 22 | enron - goldman - eci - repos - securities | 145 | 22_enron_goldman_eci_repos |
65
+ | 23 | enron - enrons - bankruptcy - bankrupt - savings | 141 | 23_enron_enrons_bankruptcy_bankrupt |
66
+ | 24 | enterprise - ebusiness - enron - enrononline - ecommerce | 137 | 24_enterprise_ebusiness_enron_enrononline |
67
+ | 25 | haas - mba - undergraduate - haasnewshaasberkeleyedu - university | 137 | 25_haas_mba_undergraduate_haasnewshaasberkeleyedu |
68
+ | 26 | meter - meters - contract - noms - flowed | 136 | 26_meter_meters_contract_noms |
69
+ | 27 | html - contenttexthtml - tdfont - tdtrtable - tdimg | 135 | 27_html_contenttexthtml_tdfont_tdtrtable |
70
+ | 28 | excel - spreadsheet - reports - spreadsheets - excelergy | 133 | 28_excel_spreadsheet_reports_spreadsheets |
71
+ | 29 | telephone - call - phone - voicemail - contact | 131 | 29_telephone_call_phone_voicemail |
72
+ | 30 | email - tracygeacconeenroncom - eb3102g - address - enform | 126 | 30_email_tracygeacconeenroncom_eb3102g_address |
73
+ | 31 | faxes - fax - faxing - faxed - efax | 123 | 31_faxes_fax_faxing_faxed |
74
+ | 32 | linguaphilewordsmithorg - dictionary - words - wordsmith - word | 120 | 32_linguaphilewordsmithorg_dictionary_words_wordsmith |
75
+ | 33 | agreements - contract - obligations - agreement - gas | 117 | 33_agreements_contract_obligations_agreement |
76
+ | 34 | var - risktrac - risk - variance - volatility | 115 | 34_var_risktrac_risk_variance |
77
+ | 35 | invoices - invoice - invoiced - payments - billed | 114 | 35_invoices_invoice_invoiced_payments |
78
+ | 36 | energynewslivecom - opec - energy - senate - oil | 112 | 36_energynewslivecom_opec_energy_senate |
79
+ | 37 | vacation - holiday - hours - payroll - days | 108 | 37_vacation_holiday_hours_payroll |
80
+ | 38 | prc - prcs - analysts - evaluation - vp | 108 | 38_prc_prcs_analysts_evaluation |
81
+ | 39 | sailing - boat - cruising - surf - fishing | 108 | 39_sailing_boat_cruising_surf |
82
+ | 40 | dinner - hope - happy - weekend - going | 107 | 40_dinner_hope_happy_weekend |
83
+ | 41 | collateral - csa - bank - credit - debt | 107 | 41_collateral_csa_bank_credit |
84
+ | 42 | congress - congressional - senate - legislative - senators | 105 | 42_congress_congressional_senate_legislative |
85
+ | 43 | enron - enrononline - yen - ena - japanese | 104 | 43_enron_enrononline_yen_ena |
86
+ | 44 | enron - reuters - enrons - journal - securities | 102 | 44_enron_reuters_enrons_journal |
87
+ | 45 | photos - prints - gallery - photoworks - albums | 101 | 45_photos_prints_gallery_photoworks |
88
+ | 46 | pipeline - audreyrobertsonenroncom - audrey - kimberlywatsonenroncom - pipe | 100 | 46_pipeline_audreyrobertsonenroncom_audrey_kimberlywatsonenroncom |
89
+ | 47 | expense - expenses - enronupdateconcureworkplacecom - approver - invoices | 100 | 47_expense_expenses_enronupdateconcureworkplacecom_approver |
90
+ | 48 | counterparties - counterparty - counterpartylonectect - gcp - inc | 100 | 48_counterparties_counterparty_counterpartylonectect_gcp |
91
+ | 49 | amendments - amendment - amending - revised - agreement | 99 | 49_amendments_amendment_amending_revised |
92
+ | 50 | ny - nytimescom - headlines - news - nytdirectnytimescom | 96 | 50_ny_nytimescom_headlines_news |
93
+ | 51 | enron - inc - corp - enroncorrugated - shackletonhouectect | 96 | 51_enron_inc_corp_enroncorrugated |
94
+ | 52 | terminations - termination - terminated - enrononline - enron | 95 | 52_terminations_termination_terminated_enrononline |
95
+ | 53 | lunch - enron - luncheon - lunches - reschedule | 94 | 53_lunch_enron_luncheon_lunches |
96
+ | 54 | pga - golfer - golfers - golf - golfing | 94 | 54_pga_golfer_golfers_golf |
97
+ | 55 | longhorns - longhorn - baylor - fsu - lsu | 91 | 55_longhorns_longhorn_baylor_fsu |
98
+ | 56 | gisb - gisbs - gisb1aolcom - gisb4aolcom - enron | 90 | 56_gisb_gisbs_gisb1aolcom_gisb4aolcom |
99
+ | 57 | enron - guaranty - guaranties - guarantors - guarantor | 89 | 57_enron_guaranty_guaranties_guarantors |
100
+ | 58 | enroll - enrolled - cancellation - enrollment - attend | 88 | 58_enroll_enrolled_cancellation_enrollment |
101
+ | 59 | creditworthiness - enroncreditcom - enrononline - credit - credits | 88 | 59_creditworthiness_enroncreditcom_enrononline_credit |
102
+ | 60 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076513pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000061279pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000058213pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000067320pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076416pageapproval | 88 | 60_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076513pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000061279pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000058213pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000067320pageapproval |
103
+ | 61 | books - book - trader - traders - netco | 85 | 61_books_book_trader_traders |
104
+ | 62 | drafts - draft - draftdoc - manuscript - enronltsadraftdoc | 84 | 62_drafts_draft_draftdoc_manuscript |
105
+ | 63 | enron - bankruptcy - creditors - bankrupcy - liquidation | 84 | 63_enron_bankruptcy_creditors_bankrupcy |
106
+ | 64 | electricity - utility - energy - utilities - electric | 84 | 64_electricity_utility_energy_utilities |
107
+ | 65 | schedules2002013110txt - schedules2002013010txt - schedules2002011110txt - schedules2002010507txt - schedules2002011414txt | 84 | 65_schedules2002013110txt_schedules2002013010txt_schedules2002011110txt_schedules2002010507txt |
108
+ | 66 | rtos - rto - ferc - fercs - rtg | 84 | 66_rtos_rto_ferc_fercs |
109
+ | 67 | interviewed - interviewing - interview - interviews - interviewers | 81 | 67_interviewed_interviewing_interview_interviews |
110
+ | 68 | enron - executives - encouragement - managementvitality - buddha | 81 | 68_enron_executives_encouragement_managementvitality |
111
+ | 69 | schedules2001122322txt - schedules2001122820txt - schedules2001122418txt - schedules2001122416txt - schedules2001122002txt | 81 | 69_schedules2001122322txt_schedules2001122820txt_schedules2001122418txt_schedules2001122416txt |
112
+ | 70 | conference - presentations - symposium - presentation - attend | 80 | 70_conference_presentations_symposium_presentation |
113
+ | 71 | netco - risktrac - newco - hierarchy - access | 80 | 71_netco_risktrac_newco_hierarchy |
114
+ | 72 | meeting - meet - houston - vince - email | 80 | 72_meeting_meet_houston_vince |
115
+ | 73 | agreements - netting - agreement - enroncom - collateral | 77 | 73_agreements_netting_agreement_enroncom |
116
+ | 74 | udcs - deadline - dasrs - dasr - suspended | 77 | 74_udcs_deadline_dasrs_dasr |
117
+ | 75 | enron - reuters - dow - tariff - indias | 77 | 75_enron_reuters_dow_tariff |
118
+ | 76 | edwardsacksenroncom - larryhunterenroncom - sbradfordenroncom - sharencasonenroncom - billhareenroncom | 76 | 76_edwardsacksenroncom_larryhunterenroncom_sbradfordenroncom_sharencasonenroncom |
119
+ | 77 | authorized - cps - trading - cp - approved | 76 | 77_authorized_cps_trading_cp |
120
+ | 78 | gtcs - gtc - gta - epc - revised | 75 | 78_gtcs_gtc_gta_epc |
121
+ | 79 | hourahead - schedules2001101406txt - schedules2001101404txt - schedules2001100504txt - schedules2001101803txt | 75 | 79_hourahead_schedules2001101406txt_schedules2001101404txt_schedules2001100504txt |
122
+ | 80 | shipping - shipment - delivery - order - ship | 75 | 80_shipping_shipment_delivery_order |
123
+ | 81 | chairperson - invitation - appointment - calendar - meeting | 74 | 81_chairperson_invitation_appointment_calendar |
124
+ | 82 | letter - letters - richardsandersenroncom - note - commission | 73 | 82_letter_letters_richardsandersenroncom_note |
125
+ | 83 | pulpex - market - pulp - production - kraft | 71 | 83_pulpex_market_pulp_production |
126
+ | 84 | enron - enrons - houston - houstons - ews | 71 | 84_enron_enrons_houston_houstons |
127
+ | 85 | marriott - hotel - marriottcom - hotels - booking | 71 | 85_marriott_hotel_marriottcom_hotels |
128
+ | 86 | communicationsenron - waiver - coauthor - warehouse - steel | 70 | 86_communicationsenron_waiver_coauthor_warehouse |
129
+ | 87 | nokia - motorola - sprint - cellular - phone | 68 | 87_nokia_motorola_sprint_cellular |
130
+ | 88 | admissions - mba - gmat - admission - applying | 68 | 88_admissions_mba_gmat_admission |
131
+ | 89 | attachment - inline - exchangeadministratorenroncom - oenronounacnrecipientscncjohnso5 - ebow | 68 | 89_attachment_inline_exchangeadministratorenroncom_oenronounacnrecipientscncjohnso5 |
132
+ | 90 | revisions - agreements - contracts - contract - agreement | 67 | 90_revisions_agreements_contracts_contract |
133
+ | 91 | task - schedules2001043002txt - schedulingiso - schedule - subject | 67 | 91_task_schedules2001043002txt_schedulingiso_schedule |
134
+ | 92 | turbines - turbine - sale - purchase - transfer | 65 | 92_turbines_turbine_sale_purchase |
135
+ | 93 | schedules2001040112txt - schedules2001022808txt - schedules2001042816txt - schedules2001041404txt - schedules2001030808txt | 65 | 93_schedules2001040112txt_schedules2001022808txt_schedules2001042816txt_schedules2001041404txt |
136
+ | 94 | merrillhaasenroncom - annwhiteenroncom - geniafitzgeraldenroncom - nonyfloresenroncom - loustolerenroncom | 64 | 94_merrillhaasenroncom_annwhiteenroncom_geniafitzgeraldenroncom_nonyfloresenroncom |
137
+ | 95 | enrondoc - ryansiurekenroncom - aes - edwardbradyenroncom - jaddoanenroncom | 64 | 95_enrondoc_ryansiurekenroncom_aes_edwardbradyenroncom |
138
+ | 96 | netware - novellnetwarebdcimailcom - httpwwwnwfusioncomnewslettersnetwareindexhtml - visualwares - httpa676gakamaitechnetf67677360mimagesm0netcatcontenthotwire023spacergif | 64 | 96_netware_novellnetwarebdcimailcom_httpwwwnwfusioncomnewslettersnetwareindexhtml_visualwares |
139
+ | 97 | enronupdateconcureworkplacecom - expenses - expense - paid - payment | 63 | 97_enronupdateconcureworkplacecom_expenses_expense_paid |
140
+ | 98 | enron - agreements - agreement - sale - corp | 63 | 98_enron_agreements_agreement_sale |
141
+ | 99 | office - billwilliamsenroncom - wednesday - monday - laynieeastenroncom | 61 | 99_office_billwilliamsenroncom_wednesday_monday |
142
+ | 100 | signatures - signature - signed - signing - enron | 61 | 100_signatures_signature_signed_signing |
143
+ | 101 | trades - deals - eol - prices - total | 61 | 101_trades_deals_eol_prices |
144
+ | 102 | internship - intern - internships - interns - recruiting | 60 | 102_internship_intern_internships_interns |
145
+ | 103 | sweepstakes - prizes - prize - jackpot - contest | 60 | 103_sweepstakes_prizes_prize_jackpot |
146
+ | 104 | easement - property - easements - appraisal - encroachments | 60 | 104_easement_property_easements_appraisal |
147
+ | 105 | hourahead - hour - crawler - schedule - failed | 60 | 105_hourahead_hour_crawler_schedule |
148
+ | 106 | schedule - dinner - invitation - lunch - meet | 59 | 106_schedule_dinner_invitation_lunch |
149
+ | 107 | paso - pasos - el - tariff - ferc | 59 | 107_paso_pasos_el_tariff |
150
+ | 108 | operating - procedure - iso - procedures - isos | 59 | 108_operating_procedure_iso_procedures |
151
+ | 109 | airlines - flights - airport - booking - boeing | 58 | 109_airlines_flights_airport_booking |
152
+ | 110 | storage - storeage - storagebdcimailcom - storagearea - capacity | 58 | 110_storage_storeage_storagebdcimailcom_storagearea |
153
+ | 111 | eb2601 - eb2834 - eb - eb3259 - eb3268 | 58 | 111_eb2601_eb2834_eb_eb3259 |
154
+ | 112 | nfl - commissionercom - sportslinecom - league - fantasy | 58 | 112_nfl_commissionercom_sportslinecom_league |
155
+ | 113 | epowers - epower - erex - westpower - reports | 58 | 113_epowers_epower_erex_westpower |
156
+ | 114 | ctc - ctcs - edison - edisons - owe | 57 | 114_ctc_ctcs_edison_edisons |
157
+ | 115 | futures - charts - candlesticks - carr - financial | 57 | 115_futures_charts_candlesticks_carr |
158
+ | 116 | dwr - dwrs - cdwr - revenue - cdwrs | 57 | 116_dwr_dwrs_cdwr_revenue |
159
+ | 117 | tw - tws - allocation - capacity - imbalance | 57 | 117_tw_tws_allocation_capacity |
160
+ | 118 | vince - vinces - vincekaminskienroncom - kaminski - jkaminskienroncom | 57 | 118_vince_vinces_vincekaminskienroncom_kaminski |
161
+ | 119 | lotus - documents - access - database - notes | 57 | 119_lotus_documents_access_database |
162
+ | 120 | variances - variance - schedule - schedules - schedtype | 56 | 120_variances_variance_schedule_schedules |
163
+ | 121 | unsubscribe - offersondemand - offermailboundary - advertisement - email | 56 | 121_unsubscribe_offersondemand_offermailboundary_advertisement |
164
+ | 122 | meteorological - weather - temperatures - weathernet - temperature | 56 | 122_meteorological_weather_temperatures_weathernet |
165
+ | 123 | wedding - brides - married - carolines - hotel | 56 | 123_wedding_brides_married_carolines |
166
+ | 124 | wines - winery - wine - sauvignon - winecom | 54 | 124_wines_winery_wine_sauvignon |
167
+ | 125 | enron - ena - enas - futures - exemption | 54 | 125_enron_ena_enas_futures |
168
+ | 126 | permits - permit - az - permitting - epa | 54 | 126_permits_permit_az_permitting |
169
+ | 127 | azps - pnpkaps230 - reservation - pnpk - oasis502apsccom | 53 | 127_azps_pnpkaps230_reservation_pnpk |
170
+ | 128 | outage - sap - notificationiscenroncom - enronlistenroncom - enronusersenroncom | 53 | 128_outage_sap_notificationiscenroncom_enronlistenroncom |
171
+ | 129 | nyisotechexchange - nyiso - prices - hours - 18002000 | 53 | 129_nyisotechexchange_nyiso_prices_hours |
172
+ | 130 | pira - forecast - piras - demand - weekly | 52 | 130_pira_forecast_piras_demand |
173
+ | 131 | irs - taxes - filing - tax - 1099 | 52 | 131_irs_taxes_filing_tax |
174
+ | 132 | office - mailtoimceanotes22rivest2c20anabeth22203crivest40gmpvt2ecom3e40 - assistant - mail - ext | 51 | 132_office_mailtoimceanotes22rivest2c20anabeth22203crivest40gmpvt2ecom3e40_assistant_mail |
175
+ | 133 | cap - caps - markets - market - prices | 51 | 133_cap_caps_markets_market |
176
+ | 134 | tickets - astros - ticket - enron - seats | 51 | 134_tickets_astros_ticket_enron |
177
+ | 135 | ceo - vice - promotion - oprah - chairman | 51 | 135_ceo_vice_promotion_oprah |
178
+ | 136 | recount - ballots - electors - recounts - florida | 51 | 136_recount_ballots_electors_recounts |
179
+ | 137 | sweaters - sweater - shirts - tuxedo - shopping | 51 | 137_sweaters_sweater_shirts_tuxedo |
180
+ | 138 | ercot - ercots - oomc - clientrelationsercotcom - oomcoome | 51 | 138_ercot_ercots_oomc_clientrelationsercotcom |
181
+ | 139 | epmicalpool - bethperlmanenroncom - ebs - dfs - esc | 50 | 139_epmicalpool_bethperlmanenroncom_ebs_dfs |
182
+ | 140 | variances - variance - schedules - schedtype - schedule | 50 | 140_variances_variance_schedules_schedtype |
183
+ | 141 | exchange - transfer - membership - member - exchangeinfonymexcom | 50 | 141_exchange_transfer_membership_member |
184
+ | 142 | mortgage - refinancing - refinance - mortgages - loans | 50 | 142_mortgage_refinancing_refinance_mortgages |
185
+ | 143 | marketer - recruiter - trading - opportunities - resume | 50 | 143_marketer_recruiter_trading_opportunities |
186
+ | 144 | smtp - mail - messageid - esmtp - xmsmailpriority | 50 | 144_smtp_mail_messageid_esmtp |
187
+ | 145 | gifts - gift - giftamazoncom - shopping - purchase | 49 | 145_gifts_gift_giftamazoncom_shopping |
188
+ | 146 | bandwidth - broadband - communicationsenron - telecommunications - telecom | 49 | 146_bandwidth_broadband_communicationsenron_telecommunications |
189
+ | 147 | earn - income - opportunities - financial - work | 49 | 147_earn_income_opportunities_financial |
190
+ | 148 | dbcaps97data - schedules2002011801txt - schedules2002011816txt - schedules2002011815txt - schedules2002011824txt | 48 | 148_dbcaps97data_schedules2002011801txt_schedules2002011816txt_schedules2002011815txt |
191
+ | 149 | nyisotechexchange - nyisotechexchangeglobal2000net - marketrelationsnyisocom - bulletin - nyiso | 48 | 149_nyisotechexchange_nyisotechexchangeglobal2000net_marketrelationsnyisocom_bulletin |
192
+ | 150 | fee - invoice - demand - reimbursement - amount | 48 | 150_fee_invoice_demand_reimbursement |
193
+ | 151 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000007876page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000078934pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000080623pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000078936pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000078937pageapproval | 47 | 151_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000007876page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000078934pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000080623pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000078936pageapproval |
194
+ | 152 | enrons - hfosterenroncom - markguzmanenroncom - michaeldriscollenroncom - aprilhrachenroncom | 47 | 152_enrons_hfosterenroncom_markguzmanenroncom_michaeldriscollenroncom |
195
+ | 153 | postcard - card - greetingcardscom - cards - cardmember | 47 | 153_postcard_card_greetingcardscom_cards |
196
+ | 154 | turbines - turbine - curtail200206db - curtailed - wind | 46 | 154_turbines_turbine_curtail200206db_curtailed |
197
+ | 155 | enron - merger - dynegy - dynegys - enrons | 45 | 155_enron_merger_dynegy_dynegys |
198
+ | 156 | enrons - feedback - review - reviewer - process | 45 | 156_enrons_feedback_review_reviewer |
199
+ | 157 | mexico - mexicos - mexican - perez - monterrey | 45 | 157_mexico_mexicos_mexican_perez |
200
+ | 158 | allencohrsenroncom - kenpowersenroncom - billmangelsenroncom - kenandersonenroncom - stephenherberenroncom | 44 | 158_allencohrsenroncom_kenpowersenroncom_billmangelsenroncom_kenandersonenroncom |
201
+ | 159 | deals - contract - sitara - price - deal | 44 | 159_deals_contract_sitara_price |
202
+ | 160 | outage - outages - outagesindustrialinfocom - email - deliveries | 44 | 160_outage_outages_outagesindustrialinfocom_email |
203
+ | 161 | synchronizing - synchronization - folder - folders - inbox | 44 | 161_synchronizing_synchronization_folder_folders |
204
+ | 162 | motley - forbescom - stocks - stock - investments | 44 | 162_motley_forbescom_stocks_stock |
205
+ | 163 | gifts - gift - ebay - fathers - shopping | 44 | 163_gifts_gift_ebay_fathers |
206
+ | 164 | wharton - enron - symposium - ebusiness - attend | 43 | 164_wharton_enron_symposium_ebusiness |
207
+ | 165 | surveys - enronfcucom - survey - questionnaire - enronanywhereenroncom | 43 | 165_surveys_enronfcucom_survey_questionnaire |
208
+ | 166 | seminar - seminars - prices - electricity - price | 43 | 166_seminar_seminars_prices_electricity |
209
+ | 167 | fantasy - commissionercom - league - nfl - tds | 43 | 167_fantasy_commissionercom_league_nfl |
210
+ | 168 | ferc - fercs - audit - investigation - commission | 43 | 168_ferc_fercs_audit_investigation |
211
+ | 169 | houstonchroniclecom - houston - houstons - houstonian - techxans | 43 | 169_houstonchroniclecom_houston_houstons_houstonian |
212
+ | 170 | enron - enronannouncementsenroncom - mailtoeiaenroncom - sponsor - announcement | 42 | 170_enron_enronannouncementsenroncom_mailtoeiaenroncom_sponsor |
213
+ | 171 | equityalert - equityalertcom - alert - alerts - ipo | 42 | 171_equityalert_equityalertcom_alert_alerts |
214
+ | 172 | forex - yens - yen - forexnews - currencies | 42 | 172_forex_yens_yen_forexnews |
215
+ | 173 | enronupdateconcureworkplacecom - approval - mgr - review - sjm11152001 | 41 | 173_enronupdateconcureworkplacecom_approval_mgr_review |
216
+ | 174 | swap - swaps - raptor - finalized - transaction | 41 | 174_swap_swaps_raptor_finalized |
217
+ | 175 | rent - rental - apartment - apartments - tenant | 41 | 175_rent_rental_apartment_apartments |
218
+ | 176 | pricing - priced - deals - sale - price | 40 | 176_pricing_priced_deals_sale |
219
+ | 177 | fts - columbias - columbia - capacity - allocations | 39 | 177_fts_columbias_columbia_capacity |
220
+ | 178 | httpwwwpowermarketerscompmanathtm - httpwwwpowermarketerscompmakrthtm - httpwwwpowermarketerscompmajobshtm - httpwwwpowermarketerscompmaintrhtm - httpwwwpowermarketerscomptraxhtm | 39 | 178_httpwwwpowermarketerscompmanathtm_httpwwwpowermarketerscompmakrthtm_httpwwwpowermarketerscompmajobshtm_httpwwwpowermarketerscompmaintrhtm |
221
+ | 179 | seawind - rpm - windsea - wind - port | 39 | 179_seawind_rpm_windsea_wind |
222
+ | 180 | lendingdayahead - deals - buyresale - sell - sales | 38 | 180_lendingdayahead_deals_buyresale_sell |
223
+ | 181 | socal - socals - socaltopock - socalgas - tws | 38 | 181_socal_socals_socaltopock_socalgas |
224
+ | 182 | walgreenscom - prescription - walgreens - prescriptions - merckmedcocom | 38 | 182_walgreenscom_prescription_walgreens_prescriptions |
225
+ | 183 | songs - cds - mp3 - musicmatch - artistdirect | 38 | 183_songs_cds_mp3_musicmatch |
226
+ | 184 | tennis - play - playing - tournament - weekend | 38 | 184_tennis_play_playing_tournament |
227
+ | 185 | enron - enrons - kevinhannonenroncom - ehaedickeenroncom - danleffenroncom | 38 | 185_enron_enrons_kevinhannonenroncom_ehaedickeenroncom |
228
+ | 186 | escrow - signature - certificate - collateral - certificates | 38 | 186_escrow_signature_certificate_collateral |
229
+ | 187 | ngprice - ng - ngpl - ngdkrs1001 - ngpropt | 38 | 187_ngprice_ng_ngpl_ngdkrs1001 |
230
+ | 188 | outlook - outlookteamenroncom - appointment - calendar - meetinglynns | 38 | 188_outlook_outlookteamenroncom_appointment_calendar |
231
+ | 189 | thanksgiving - thankful - celebrating - holiday - holidays | 38 | 189_thanksgiving_thankful_celebrating_holiday |
232
+ | 190 | powerpoint - presentations - presentation - presentationworking - slides | 38 | 190_powerpoint_presentations_presentation_presentationworking |
233
+ | 191 | payment - visa - card - paypal - providian | 37 | 191_payment_visa_card_paypal |
234
+ | 192 | parkingtransportationenroncom - parking - transportationparkingenroncom - transportationcorpenron - park | 37 | 192_parkingtransportationenroncom_parking_transportationparkingenroncom_transportationcorpenron |
235
+ | 193 | lynneenroncom - billenroncom - 82bruceenroncom - andyenroncom - 80steveenroncom | 37 | 193_lynneenroncom_billenroncom_82bruceenroncom_andyenroncom |
236
+ | 194 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000014988page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000014989page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034918page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034919page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000021433page | 37 | 194_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000014988page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000014989page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034918page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034919page |
237
+ | 195 | enron - enroncomment5101doc - insurance - attorneyclient - corp | 37 | 195_enron_enroncomment5101doc_insurance_attorneyclient |
238
+ | 196 | schedule - schedules - schedulingiso - hourahead - schedtype | 36 | 196_schedule_schedules_schedulingiso_hourahead |
239
+ | 197 | lineup - trade - freeman - taylor - jasonbass2compaqcom | 36 | 197_lineup_trade_freeman_taylor |
240
+ | 198 | weather - winds - snow - thunderstorm - precipitation | 36 | 198_weather_winds_snow_thunderstorm |
241
+ | 199 | enron - bankruptcy - enrons - bankrupt - savings | 36 | 199_enron_bankruptcy_enrons_bankrupt |
242
+ | 200 | hourahead - schedulingiso - hour - crawler - schedules2001041020txt | 36 | 200_hourahead_schedulingiso_hour_crawler |
243
+ | 201 | pdf - stockspdf - acrobat - charts - opecpdf | 36 | 201_pdf_stockspdf_acrobat_charts |
244
+ | 202 | meditation - faith - meditations - spiritual - verse | 36 | 202_meditation_faith_meditations_spiritual |
245
+ | 203 | reports - reporting - report - robinrodrigueenroncom - access | 35 | 203_reports_reporting_report_robinrodrigueenroncom |
246
+ | 204 | etiquette - what - favorite - kids - waitress | 35 | 204_etiquette_what_favorite_kids |
247
+ | 205 | emails - retention - archiving - outlook - mail | 34 | 205_emails_retention_archiving_outlook |
248
+ | 206 | enron - virus - viruses - virusfree - malicious | 34 | 206_enron_virus_viruses_virusfree |
249
+ | 207 | qb - wr - wrs - questionable - injured | 34 | 207_qb_wr_wrs_questionable |
250
+ | 208 | allencohrsenroncom - kenpowersenroncom - ljohnsonenroncom - tklohmanenroncom - stephenherberenroncom | 34 | 208_allencohrsenroncom_kenpowersenroncom_ljohnsonenroncom_tklohmanenroncom |
251
+ | 209 | schedules2002020118txt - schedules2002020418txt - schedules2002020218txt - schedules2002011418txt - schedules2002011016txt | 34 | 209_schedules2002020118txt_schedules2002020418txt_schedules2002020218txt_schedules2002011418txt |
252
+ | 210 | appointment - clinic - appointments - clinicians - therapist | 34 | 210_appointment_clinic_appointments_clinicians |
253
+ | 211 | httpa676gakamaitechnetf67677360mimagesm0netcm50content12610900810180021f1cspacergif - httpa676gakamaitechnetf67677360mimagesm0netcatcontenthpshopping122601transpacegif - httpa676gakamaitechnetf67677390mimagesm0netcatcontenthotwire010802spacergif - drilling - offshore | 33 | 211_httpa676gakamaitechnetf67677360mimagesm0netcm50content12610900810180021f1cspacergif_httpa676gakamaitechnetf67677360mimagesm0netcatcontenthpshopping122601transpacegif_httpa676gakamaitechnetf67677390mimagesm0netcatcontenthotwire010802spacergif_drilling |
254
+ | 212 | dbcaps97data - renpowercapscaps97datamdb - schedules2001102106txt - schedules2001102201txt - schedules2001102114txt | 33 | 212_dbcaps97data_renpowercapscaps97datamdb_schedules2001102106txt_schedules2001102201txt |
255
+ | 213 | mariner - offshore - ecr - gulf - hms | 33 | 213_mariner_offshore_ecr_gulf |
256
+ | 214 | san - pasos - ca - deliveries - socal | 33 | 214_san_pasos_ca_deliveries |
257
+ | 215 | carolyncooneyenroncom - jeandresslerenroncom - billmooreenroncom - charlesyeungenroncom - robinkittelenroncom | 33 | 215_carolyncooneyenroncom_jeandresslerenroncom_billmooreenroncom_charlesyeungenroncom |
258
+ | 216 | recipe - recipes - macaroni - dinner - baked | 33 | 216_recipe_recipes_macaroni_dinner |
259
+ | 217 | furniture - chair - chairs - sofa - couch | 33 | 217_furniture_chair_chairs_sofa |
260
+ | 218 | westpower - east - httpeastpowerdevcorpenroncomcoopermidnyisoasp - erv - httpeastpowerdevcorpenroncomsummarynyisosummaryasp | 33 | 218_westpower_east_httpeastpowerdevcorpenroncomcoopermidnyisoasp_erv |
261
+ | 219 | transmission - scheduling - psco - poston - confirmation | 33 | 219_transmission_scheduling_psco_poston |
262
+ | 220 | debt - debts - creditors - consolidate - loans | 33 | 220_debt_debts_creditors_consolidate |
263
+ | 221 | enron - egm - egms - commodities - enrons | 33 | 221_enron_egm_egms_commodities |
264
+ | 222 | outlook - exchange - mailbox - email - outage | 33 | 222_outlook_exchange_mailbox_email |
265
+ | 223 | postmasterenroncom - mailerdaemonpostmasterenroncom - recipient - mailmanenroncom - mail | 32 | 223_postmasterenroncom_mailerdaemonpostmasterenroncom_recipient_mailmanenroncom |
266
+ | 224 | powerindexlistintcxcom - intercontinentalexchange - intercontinentalexchanges - salesintcxcom - index | 32 | 224_powerindexlistintcxcom_intercontinentalexchange_intercontinentalexchanges_salesintcxcom |
267
+ | 225 | ce - pas - partielle - merci - message | 32 | 225_ce_pas_partielle_merci |
268
+ | 226 | calpine - calpines - calpeak - calpeaks - san | 32 | 226_calpine_calpines_calpeak_calpeaks |
269
+ | 227 | enron - hpl0926xls - hpln0210xls - hpln0213xls - hpln0113xls | 32 | 227_enron_hpl0926xls_hpln0210xls_hpln0213xls |
270
+ | 228 | bonds - bond - debt - bonding - investors | 32 | 228_bonds_bond_debt_bonding |
271
+ | 229 | renewable - energycommitteemembersxls - energy - emissions - solar | 32 | 229_renewable_energycommitteemembersxls_energy_emissions |
272
+ | 230 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034925page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034922page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034923page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000008491page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034918page | 32 | 230_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034925page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034922page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000034923page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000008491page |
273
+ | 231 | mike - maggi - michelle - sarah - talking | 32 | 231_mike_maggi_michelle_sarah |
274
+ | 232 | profile - looking - appear - contact - message | 32 | 232_profile_looking_appear_contact |
275
+ | 233 | charts - futures - carr - 1500 - matrices | 32 | 233_charts_futures_carr_1500 |
276
+ | 234 | documents - document - files - copies - docs | 32 | 234_documents_document_files_copies |
277
+ | 235 | outlookteamenroncom - outlook - laptop - databases - lotus | 32 | 235_outlookteamenroncom_outlook_laptop_databases |
278
+ | 236 | thomasunderwoodenroncom - scottnealenroncom - ashleyworthingenroncom - seanriordanenroncom - davidbaumbachenroncom | 31 | 236_thomasunderwoodenroncom_scottnealenroncom_ashleyworthingenroncom_seanriordanenroncom |
279
+ | 237 | pipelines - pipeline - frontier - transcanada - pipelinesouthcentral | 31 | 237_pipelines_pipeline_frontier_transcanada |
280
+ | 238 | schedules2002011204txt - schedules2002011201txt - schedules2002012504txt - schedules2002011203txt - schedules2002012503txt | 31 | 238_schedules2002011204txt_schedules2002011201txt_schedules2002012504txt_schedules2002011203txt |
281
+ | 239 | nfl - yards - jets - sportslinecom - league | 31 | 239_nfl_yards_jets_sportslinecom |
282
+ | 240 | tx - consumercareautobytelcom - chrysler - dodge - dealership | 31 | 240_tx_consumercareautobytelcom_chrysler_dodge |
283
+ | 241 | expiring - expiration - nymex - operational - status | 31 | 241_expiring_expiration_nymex_operational |
284
+ | 242 | sidewalks - curbs - street - streets - townhomes | 31 | 242_sidewalks_curbs_street_streets |
285
+ | 243 | sheetalpatelenroncom - larryhunterenroncom - kevinmeredithenroncom - bernicerodriguezenroncom - adnanpatelenroncom | 31 | 243_sheetalpatelenroncom_larryhunterenroncom_kevinmeredithenroncom_bernicerodriguezenroncom |
286
+ | 244 | survey - elbertsonhouectect - joneshouectect - haashouectect - sandershouectect | 31 | 244_survey_elbertsonhouectect_joneshouectect_haashouectect |
287
+ | 245 | message - disclosure - futures - prohibited - interdite | 30 | 245_message_disclosure_futures_prohibited |
288
+ | 246 | invoice - ipayitenroncom - ipayitipayitenroncomenron - ipayit - ehronlinesap | 30 | 246_invoice_ipayitenroncom_ipayitipayitenroncomenron_ipayit |
289
+ | 247 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000009688page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000008348page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076513pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000082421pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000082437pageapproval | 30 | 247_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000009688page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000008348page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076513pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000082421pageapproval |
290
+ | 248 | allegheny - alleghenys - alleghenymerrill - merrillissuexls - merrillallegheny | 30 | 248_allegheny_alleghenys_alleghenymerrill_merrillissuexls |
291
+ | 249 | offshore - oilfield - petroleum - gulf - oil | 30 | 249_offshore_oilfield_petroleum_gulf |
292
+ | 250 | schedulers - volumes - agl - calculated - worksheets | 30 | 250_schedulers_volumes_agl_calculated |
293
+ | 251 | enron - draft - corp - hanover - debraperlingiereenroncom | 30 | 251_enron_draft_corp_hanover |
294
+ | 252 | enrononline - counterparties - ena - counterparty - sydney | 29 | 252_enrononline_counterparties_ena_counterparty |
295
+ | 253 | reports - reporting - erv - peak - erms | 29 | 253_reports_reporting_erv_peak |
296
+ | 254 | jeandresslerenroncom - carolyncooneyenroncom - charlesyeungenroncom - stephenburnsenroncom - billmooreenroncom | 29 | 254_jeandresslerenroncom_carolyncooneyenroncom_charlesyeungenroncom_stephenburnsenroncom |
297
+ | 255 | bpas - bpa - bps - bpatbl - enrons | 29 | 255_bpas_bpa_bps_bpatbl |
298
+ | 256 | egm - ebitda - ewc - e262a1 - ermspc | 29 | 256_egm_ebitda_ewc_e262a1 |
299
+ | 257 | types - type - ethylene - approved - fin | 29 | 257_types_type_ethylene_approved |
300
+ | 258 | dell - dells - inspiron - pocket - notebook | 29 | 258_dell_dells_inspiron_pocket |
301
+ | 259 | revenue - tw - tws - quarterly - revenues | 29 | 259_revenue_tw_tws_quarterly |
302
+ | 260 | schedules2002020616txt - schedules2002010110txt - schedules2002020503txt - schedules2002020508txt - schedules2002020506txt | 29 | 260_schedules2002020616txt_schedules2002010110txt_schedules2002020503txt_schedules2002020508txt |
303
+ | 261 | emergency - fires - edis - sacramento - fire | 28 | 261_emergency_fires_edis_sacramento |
304
+ | 262 | enron - ceoenron - ets - operationsenron - chairman | 28 | 262_enron_ceoenron_ets_operationsenron |
305
+ | 263 | tx - houston - address - addresss - 3317048 | 28 | 263_tx_houston_address_addresss |
306
+ | 264 | rewards - promotionssportingbetusacom - holiday - sportsline - sportslinecoms | 28 | 264_rewards_promotionssportingbetusacom_holiday_sportsline |
307
+ | 265 | meetingeb4102 - meeting4102 - invitation - calendar - enronwide | 28 | 265_meetingeb4102_meeting4102_invitation_calendar |
308
+ | 266 | bpas - bpa - bpadiscoverymerkellawcom - mthomasmtpowercom - pmurphymbllpcom | 28 | 266_bpas_bpa_bpadiscoverymerkellawcom_mthomasmtpowercom |
309
+ | 267 | scoopmailermoneynet - mailing - send - message - address | 28 | 267_scoopmailermoneynet_mailing_send_message |
310
+ | 268 | eastrans - bmcmillsdukeenergycom - mcmills - 500000mmbtu - nominations | 28 | 268_eastrans_bmcmillsdukeenergycom_mcmills_500000mmbtu |
311
+ | 269 | pricing - costs - lpg - freight - cost | 28 | 269_pricing_costs_lpg_freight |
312
+ | 270 | servicebusinesswirecom - txindustrialinforesbusinesswirecom - houstonbusiness - industrialinfocom - emaildeliverybusinesswirecom | 28 | 270_servicebusinesswirecom_txindustrialinforesbusinesswirecom_houstonbusiness_industrialinfocom |
313
+ | 271 | feedback - deadline - status - pepenquiriesenroncom - closes | 28 | 271_feedback_deadline_status_pepenquiriesenroncom |
314
+ | 272 | epsa - epsas - panelists - commission - policy | 28 | 272_epsa_epsas_panelists_commission |
315
+ | 273 | ceraweek - cera - ceras - ceracom - energy | 28 | 273_ceraweek_cera_ceras_ceracom |
316
+ | 274 | schedules2001030813txt - schedules2001042206txt - schedules2001040916txt - schedules2001040920txt - schedules2001031606txt | 27 | 274_schedules2001030813txt_schedules2001042206txt_schedules2001040916txt_schedules2001040920txt |
317
+ | 275 | enronmailsweeperadminenroncom - enron - virus - quarantine - quarantined | 27 | 275_enronmailsweeperadminenroncom_enron_virus_quarantine |
318
+ | 276 | feedback - assessment - executive - process - participate | 27 | 276_feedback_assessment_executive_process |
319
+ | 277 | schedules2002020602txt - schedules2002020601txt - schedules2002020607txt - schedules2002020606txt - schedules2002020603txt | 27 | 277_schedules2002020602txt_schedules2002020601txt_schedules2002020607txt_schedules2002020606txt |
320
+ | 278 | sportslinecom - font - helveticaplayerfontfontbfonttdtd - html - td | 26 | 278_sportslinecom_font_helveticaplayerfontfontbfonttdtd_html |
321
+ | 279 | sap - xms - expense - isc - express | 26 | 279_sap_xms_expense_isc |
322
+ | 280 | postmasterdowjonescom - postmasterenroncom - mail - recipients - postmastersims1rcsntxswbellnet | 26 | 280_postmasterdowjonescom_postmasterenroncom_mail_recipients |
323
+ | 281 | httpwwwenroncomcorppressroomreleases2001eneeneq101ltrhtml - seanriordanenroncom - larrymayenroncom - dutchquigleyenroncom - markgreenbergenroncom | 26 | 281_httpwwwenroncomcorppressroomreleases2001eneeneq101ltrhtml_seanriordanenroncom_larrymayenroncom_dutchquigleyenroncom |
324
+ | 282 | moveteamenroncom - moved - moving - move - scheduled | 26 | 282_moveteamenroncom_moved_moving_move |
325
+ | 283 | fares - fare - airfare - farewatcher - flights | 26 | 283_fares_fare_airfare_farewatcher |
326
+ | 284 | bank - banks - banking - henningbrutteldresdnerbankcom - bankers | 26 | 284_bank_banks_banking_henningbrutteldresdnerbankcom |
327
+ | 285 | cds - cd - discs - disc - dvds | 26 | 285_cds_cd_discs_disc |
328
+ | 286 | schedules2002020322txt - schedules2002020321txt - schedules2002020207txt - schedules2002020214txt - schedules2002020220txt | 26 | 286_schedules2002020322txt_schedules2002020321txt_schedules2002020207txt_schedules2002020214txt |
329
+ | 287 | palm - palmcom - palmnet - palmtm - palmt | 26 | 287_palm_palmcom_palmnet_palmtm |
330
+ | 288 | playoffs - fantasy - playoff - league - standings | 26 | 288_playoffs_fantasy_playoff_league |
331
+ | 289 | kenseysubscribermailmanenroncom - kenseydeletion - bulkdiscussionrecommendationsnews - kensey - recommendlist | 26 | 289_kenseysubscribermailmanenroncom_kenseydeletion_bulkdiscussionrecommendationsnews_kensey |
332
+ | 290 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000009797page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000010917page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000010211page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000007591page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000007593page | 25 | 290_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000009797page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000010917page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000010211page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000007591page |
333
+ | 291 | turbine - turbines - lv - agreement - cogen | 25 | 291_turbine_turbines_lv_agreement |
334
+ | 292 | nerc - stakeholders - trustees - ferc - organization | 25 | 292_nerc_stakeholders_trustees_ferc |
335
+ | 293 | gulf - enerfax - oil - prices - futures | 25 | 293_gulf_enerfax_oil_prices |
336
+ | 294 | agt - pipeline - scheduled - algonquin - compressor | 25 | 294_agt_pipeline_scheduled_algonquin |
337
+ | 295 | nasdaq - index - stocks - crb - trading | 25 | 295_nasdaq_index_stocks_crb |
338
+ | 296 | outage - maintenance - unloaders - station - refuel | 25 | 296_outage_maintenance_unloaders_station |
339
+ | 297 | enron - enrons - bankruptcy - bankrupt - savings | 25 | 297_enron_enrons_bankruptcy_bankrupt |
340
+ | 298 | bank - chasemail - enronna0037 - chase - jpmorgan | 25 | 298_bank_chasemail_enronna0037_chase |
341
+ | 299 | invoices - ibuyitpayablesenroncom - invoice - ibuyit - ibuyitpayables | 25 | 299_invoices_ibuyitpayablesenroncom_invoice_ibuyit |
342
+ | 300 | rotations - rotation - rotating - rotational - trading | 25 | 300_rotations_rotation_rotating_rotational |
343
+ | 301 | enerfaxdailyenerfaxcom - enerfax - enerfaxdaily - enerfaxgoldsubscribeegroupscom - email | 25 | 301_enerfaxdailyenerfaxcom_enerfax_enerfaxdaily_enerfaxgoldsubscribeegroupscom |
344
+ | 302 | kennethkaaseenroncom - drewhillenroncom - gregmcclendonenroncom - martinolearyenroncom - russelldiamondenroncom | 25 | 302_kennethkaaseenroncom_drewhillenroncom_gregmcclendonenroncom_martinolearyenroncom |
345
+ | 303 | cd - receipt - cbl - cgtcustomerservicesnisourcecom - delivery | 25 | 303_cd_receipt_cbl_cgtcustomerservicesnisourcecom |
346
+ | 304 | hourstimesheet - timesheet - timesheets - payroll - timesheetsiconconsultantscom | 24 | 304_hourstimesheet_timesheet_timesheets_payroll |
347
+ | 305 | forecasting - strategies - traders - markets - market | 24 | 305_forecasting_strategies_traders_markets |
348
+ | 306 | tonight - tonights - play - game - brianhoskinsenroncom | 24 | 306_tonight_tonights_play_game |
349
+ | 307 | msn - 8am - chjohnson98hotmailcom - scottwlhotmailcom - explorer | 24 | 307_msn_8am_chjohnson98hotmailcom_scottwlhotmailcom |
350
+ | 308 | schedule - forecast - forecasting - hourly - tuesday | 24 | 308_schedule_forecast_forecasting_hourly |
351
+ | 309 | enroncounterpartyenroncom - communicationsenron - counterpartyenron - billhareenroncom - fayettcorpenronenron | 24 | 309_enroncounterpartyenroncom_communicationsenron_counterpartyenron_billhareenroncom |
352
+ | 310 | cartridges - printer - inkjets - inkjet - cartridge | 24 | 310_cartridges_printer_inkjets_inkjet |
353
+ | 311 | transwestern - positions - position - jeffrichterenroncom - ashleyworthingenroncom | 24 | 311_transwestern_positions_position_jeffrichterenroncom |
354
+ | 312 | energy - commission - tesla - edclfpcom - alanreidpcpca | 24 | 312_energy_commission_tesla_edclfpcom |
355
+ | 313 | isda - usregcommisdaorg - swaps - regulatory - exchangeable | 24 | 313_isda_usregcommisdaorg_swaps_regulatory |
356
+ | 314 | reunion - smu - fraternity - homecoming - 76ers | 24 | 314_reunion_smu_fraternity_homecoming |
357
+ | 315 | datek - dateks - brokerage - wwwdatekcom - trading | 24 | 315_datek_dateks_brokerage_wwwdatekcom |
358
+ | 316 | interviewed - interviews - interviewers - interview - interviewing | 24 | 316_interviewed_interviews_interviewers_interview |
359
+ | 317 | rac - racs - raarc - audit - manage | 24 | 317_rac_racs_raarc_audit |
360
+ | 318 | auction - bidding - bid - auctions - seller | 24 | 318_auction_bidding_bid_auctions |
361
+ | 319 | enronmda - enron - peru - earthquakeperu - legislators | 24 | 319_enronmda_enron_peru_earthquakeperu |
362
+ | 320 | tennessee - unionville - capacity - tcoleach - available | 24 | 320_tennessee_unionville_capacity_tcoleach |
363
+ | 321 | sun - expansion - devil - tw - caithness | 24 | 321_sun_expansion_devil_tw |
364
+ | 322 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000033931page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000033931pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000079824pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076650pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000057285pageapproval | 24 | 322_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000033931page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000033931pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000079824pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076650pageapproval |
365
+ | 323 | dash - dashs - dashes - dashpastoria4030901 - signed | 23 | 323_dash_dashs_dashes_dashpastoria4030901 |
366
+ | 324 | feedback - enrons - process - requests - status | 23 | 324_feedback_enrons_process_requests |
367
+ | 325 | enron - secon3 - secon - facilities - unconfirmed | 23 | 325_enron_secon3_secon_facilities |
368
+ | 326 | evite - evites - invitation - invitations - visit | 23 | 326_evite_evites_invitation_invitations |
369
+ | 327 | schedule - weekend - week - weeks - sunday | 23 | 327_schedule_weekend_week_weeks |
370
+ | 328 | variance - variances - hourahead - hour - schedule | 23 | 328_variance_variances_hourahead_hour |
371
+ | 329 | schedules2002011324txt - schedules2002020324txt - schedules2002012324txt - schedules2002011024txt - schedules2002010324txt | 23 | 329_schedules2002011324txt_schedules2002020324txt_schedules2002012324txt_schedules2002011024txt |
372
+ | 330 | bonuses - bonusraise - incentive - raise - payments | 23 | 330_bonuses_bonusraise_incentive_raise |
373
+ | 331 | venturewire - venture - ventures - enterprise - investors | 23 | 331_venturewire_venture_ventures_enterprise |
374
+ | 332 | prices - eca - market - markets - hour | 23 | 332_prices_eca_market_markets |
375
+ | 333 | appointment - cherylnelsonenroncom - beth - beths - cheryl | 23 | 333_appointment_cherylnelsonenroncom_beth_beths |
376
+ | 334 | emails - email - message - receive - ship | 23 | 334_emails_email_message_receive |
377
+ | 335 | bpas - resigned - jeffreykeelerenroncom - mhainectenroncom - susanjmaraenroncom | 23 | 335_bpas_resigned_jeffreykeelerenroncom_mhainectenroncom |
378
+ | 336 | reinsurance - insurance - insurancerelated - insurers - reinsurers | 22 | 336_reinsurance_insurance_insurancerelated_insurers |
379
+ | 337 | reviewers - feedback - approval - reviewer - approved | 22 | 337_reviewers_feedback_approval_reviewer |
380
+ | 338 | laptop - ibm - thinkpad - upgradable - compaqcom | 22 | 338_laptop_ibm_thinkpad_upgradable |
381
+ | 339 | brian - brianc - plans - chet - night | 22 | 339_brian_brianc_plans_chet |
382
+ | 340 | tonnes - johnsherriffenroncom - gas - tons - gregpiperenroncom | 22 | 340_tonnes_johnsherriffenroncom_gas_tons |
383
+ | 341 | tradersnewsindexesipgdirectcom - tradersnews - hourlymeth010801doc - hourly - httpwwwtradersnewsenergycom | 22 | 341_tradersnewsindexesipgdirectcom_tradersnews_hourlymeth010801doc_hourly |
384
+ | 342 | dow - seats - jones - investext - investexts | 22 | 342_dow_seats_jones_investext |
385
+ | 343 | nymex - nymexng - exchange - enymex - futures | 22 | 343_nymex_nymexng_exchange_enymex |
386
+ | 344 | outage - email - customerserviceindustrialinfocom - mailerindustrialinfocom - delivery | 22 | 344_outage_email_customerserviceindustrialinfocom_mailerindustrialinfocom |
387
+ | 345 | visas - visa - consulate - anshumansrivastavenroncom - anshuman | 22 | 345_visas_visa_consulate_anshumansrivastavenroncom |
388
+ | 346 | onepass - mailtoonepasscoaircom - httponepasscontinentalcomemailupgrades - airlines - elite | 22 | 346_onepass_mailtoonepasscoaircom_httponepasscontinentalcomemailupgrades_airlines |
389
+ | 347 | tariff - tariffs - interstates - transportation - production | 22 | 347_tariff_tariffs_interstates_transportation |
390
+ | 348 | calpine - calger - houston - ricky - rickyacalpinecom | 21 | 348_calpine_calger_houston_ricky |
391
+ | 349 | chron - edison - administration - in - regulators | 21 | 349_chron_edison_administration_in |
392
+ | 350 | schedules2001123020txt - schedules2001122208txt - schedules2001123012txt - schedules2001123002txt - schedules2001123017txt | 21 | 350_schedules2001123020txt_schedules2001122208txt_schedules2001123012txt_schedules2001123002txt |
393
+ | 351 | sapsecurityenroncom - ehronline - sap - ehronlineenroncom - password | 21 | 351_sapsecurityenroncom_ehronline_sap_ehronlineenroncom |
394
+ | 352 | schedule - enron - schedules - frazier - tuesday | 21 | 352_schedule_enron_schedules_frazier |
395
+ | 353 | risk - risks - policy - compliance - liquidityfunding | 21 | 353_risk_risks_policy_compliance |
396
+ | 354 | schedules2002011508txt - schedules2002011208txt - schedules2002020208txt - schedules2002011408txt - schedules2002020408txt | 21 | 354_schedules2002011508txt_schedules2002011208txt_schedules2002020208txt_schedules2002011408txt |
397
+ | 355 | enron - kitchen - employeename - louisekitchenenroncom - employee | 21 | 355_enron_kitchen_employeename_louisekitchenenroncom |
398
+ | 356 | np15 - broker - energy - deal - caiso | 21 | 356_np15_broker_energy_deal |
399
+ | 357 | thelawnet - law - attorneys - attorney - judicial | 21 | 357_thelawnet_law_attorneys_attorney |
400
+ | 358 | ehronline - ipayitenroncom - enron1 - ipayit - sap | 21 | 358_ehronline_ipayitenroncom_enron1_ipayit |
401
+ | 359 | diabetes - diabetesorg - diabetic - insulin - diabetesonestopcom | 21 | 359_diabetes_diabetesorg_diabetic_insulin |
402
+ | 360 | severance - terminated - unemployment - bonuses - employment | 21 | 360_severance_terminated_unemployment_bonuses |
403
+ | 361 | tallahassee - dominion - payment - deal - florida | 21 | 361_tallahassee_dominion_payment_deal |
404
+ | 362 | sportslinecom - font - td - html - fantasy | 21 | 362_sportslinecom_font_td_html |
405
+ | 363 | communicationsenron - facilitiesenron - centerenron - heardenron - approvals | 20 | 363_communicationsenron_facilitiesenron_centerenron_heardenron |
406
+ | 364 | revised - markbernsteinenroncom - markmcconnellenroncom - technical - review | 20 | 364_revised_markbernsteinenroncom_markmcconnellenroncom_technical |
407
+ | 365 | sap - sapsecurityenroncom - enterprise - approvergpg - accountantgpg | 20 | 365_sap_sapsecurityenroncom_enterprise_approvergpg |
408
+ | 366 | schedules2002010816txt - schedules2002012505txt - schedules2002010614txt - schedules2002010810txt - schedules2002010608txt | 20 | 366_schedules2002010816txt_schedules2002012505txt_schedules2002010614txt_schedules2002010810txt |
409
+ | 367 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000082135pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000081799pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076650pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000081127pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000081214pageapproval | 20 | 367_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000082135pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000081799pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076650pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000081127pageapproval |
410
+ | 368 | payrollenronenroncom - enronpayrollenroncom - payroll - paycheck - paychecks | 20 | 368_payrollenronenroncom_enronpayrollenroncom_payroll_paycheck |
411
+ | 369 | postmasterenroncom - recipients - delivery - notification - relayed | 20 | 369_postmasterenroncom_recipients_delivery_notification |
412
+ | 370 | dvds - dvd - vhs - httpwwwnetworksstatuscomdvddvd25 - copy | 20 | 370_dvds_dvd_vhs_httpwwwnetworksstatuscomdvddvd25 |
413
+ | 371 | enron - enrons - ldayenroncom - willisphilipenroncom - kevinclineenroncom | 20 | 371_enron_enrons_ldayenroncom_willisphilipenroncom |
414
+ | 372 | lunch - chris - germanyhouectect - germany - wed | 20 | 372_lunch_chris_germanyhouectect_germany |
415
+ | 373 | passwords - password - passworddoc - enrononline - security | 20 | 373_passwords_password_passworddoc_enrononline |
416
+ | 374 | schedules2002010502txt - schedules2002010815txt - schedules2002010813txt - schedules2002010320txt - schedules2002010804txt | 20 | 374_schedules2002010502txt_schedules2002010815txt_schedules2002010813txt_schedules2002010320txt |
417
+ | 375 | documents - hawaii - wordperfect - enronhawaii - amendedrestated | 20 | 375_documents_hawaii_wordperfect_enronhawaii |
418
+ | 376 | espeak - enron - enronannouncementsenroncom - ethinkenroncom - ethink | 20 | 376_espeak_enron_enronannouncementsenroncom_ethinkenroncom |
419
+ | 377 | agreements - ena - contract - agreement - negotiation | 20 | 377_agreements_ena_contract_agreement |
420
+ | 378 | mailbox - outlook - mailboxoutlook - exchangeadministratorenroncom - delete | 19 | 378_mailbox_outlook_mailboxoutlook_exchangeadministratorenroncom |
421
+ | 379 | insurance - httpwwwlifeinsuranceoptionscomindexrmhtml - premium - premiums - medicaid | 19 | 379_insurance_httpwwwlifeinsuranceoptionscomindexrmhtml_premium_premiums |
422
+ | 380 | mcf - mmbtu - flow - btu - flowed | 19 | 380_mcf_mmbtu_flow_btu |
423
+ | 381 | mailbox - outlook - exchangeadministratorenroncom - delete - folder | 19 | 381_mailbox_outlook_exchangeadministratorenroncom_delete |
424
+ | 382 | providers - networker - networking - network - broadband | 19 | 382_providers_networker_networking_network |
425
+ | 383 | holiday - nytimescoms - nytimescom - nytdirectnytimescom - ny | 19 | 383_holiday_nytimescoms_nytimescom_nytdirectnytimescom |
426
+ | 384 | annuity - annuities - annuites - 2001annuities - approve | 19 | 384_annuity_annuities_annuites_2001annuities |
427
+ | 385 | fee - agreement - beta - prebon - revised | 19 | 385_fee_agreement_beta_prebon |
428
+ | 386 | gtv - gtv2 - gtvii - rollups - rollup | 19 | 386_gtv_gtv2_gtvii_rollups |
429
+ | 387 | pge - pges - regulated - utilities - pgespreadvaluationdefinition | 19 | 387_pge_pges_regulated_utilities |
430
+ | 388 | enron - enrons - bankruptcy - bankrupt - donate | 19 | 388_enron_enrons_bankruptcy_bankrupt |
431
+ | 389 | enron - correctenron - kenneththibodeauxenroncom - johnallisonenroncom - davidportenroncom | 19 | 389_enron_correctenron_kenneththibodeauxenroncom_johnallisonenroncom |
432
+ | 390 | schedules2002011505txt - schedules2002011015txt - schedules2002020115txt - schedules2002012815txt - schedules2002013015txt | 19 | 390_schedules2002011505txt_schedules2002011015txt_schedules2002020115txt_schedules2002012815txt |
433
+ | 391 | sexxxmailer - sexxxmaillistemailbuckscom - porno - nude - uncensored | 19 | 391_sexxxmailer_sexxxmaillistemailbuckscom_porno_nude |
434
+ | 392 | allencohrsenroncom - ljohnsonenroncom - kenandersonenroncom - rogerwestfallenroncom - daveneubauerenroncom | 19 | 392_allencohrsenroncom_ljohnsonenroncom_kenandersonenroncom_rogerwestfallenroncom |
435
+ | 393 | duke - contract - parkercorpenronenron - deals - llc | 19 | 393_duke_contract_parkercorpenronenron_deals |
436
+ | 394 | daughter - birth - emily - prenatal - nanny | 19 | 394_daughter_birth_emily_prenatal |
437
+ | 395 | houston - tollway - highway - greatwood - gate | 19 | 395_houston_tollway_highway_greatwood |
438
+ | 396 | schedule - scheduling - schedules - schedulesercot - portlandshiftenroncom | 19 | 396_schedule_scheduling_schedules_schedulesercot |
439
+ | 397 | wildhorse - wildhorses - wildhorse1doc - wildhorse2doc - proposal | 19 | 397_wildhorse_wildhorses_wildhorse1doc_wildhorse2doc |
440
+ | 398 | abcnewsnoweditormailabcnewsgocom - abcnews - abcnewscom - httpwwwmsnbccomnewsinfectiousfrontaspbtnmbtuhttpwwwmsnbccom - mailings | 19 | 398_abcnewsnoweditormailabcnewsgocom_abcnews_abcnewscom_httpwwwmsnbccomnewsinfectiousfrontaspbtnmbtuhttpwwwmsnbccom |
441
+ | 399 | agreements - agreementsdoc - memorandum - agreement - revisions | 19 | 399_agreements_agreementsdoc_memorandum_agreement |
442
+ | 400 | tax - taxes - reserve - valuation - accounting | 18 | 400_tax_taxes_reserve_valuation |
443
+ | 401 | realplayer - realplayerr - realnetworksr - realjukeboxr - realjukebox | 18 | 401_realplayer_realplayerr_realnetworksr_realjukeboxr |
444
+ | 402 | plattslistservplattscom - platts - unsubscribing - unsubscribe - unsubscribed | 18 | 402_plattslistservplattscom_platts_unsubscribing_unsubscribe |
445
+ | 403 | rfrankenroncom - bansharmaenroncom - jdasovicenroncom - jeffreykeelerenroncom - smaraenroncom | 18 | 403_rfrankenroncom_bansharmaenroncom_jdasovicenroncom_jeffreykeelerenroncom |
446
+ | 404 | market - nat - analysis - traders - capstonetexasnet | 18 | 404_market_nat_analysis_traders |
447
+ | 405 | amitavadharenroncom - tomhalliburtonenroncom - ainsleygaddisenroncom - kevinmooreenroncom - adamstevensenroncom | 18 | 405_amitavadharenroncom_tomhalliburtonenroncom_ainsleygaddisenroncom_kevinmooreenroncom |
448
+ | 406 | exchanges - markets - powermarketerscom - liquidity - powerplants | 18 | 406_exchanges_markets_powermarketerscom_liquidity |
449
+ | 407 | outlook - outlookteamenroncom - appointment - calendar - priority | 18 | 407_outlook_outlookteamenroncom_appointment_calendar |
450
+ | 408 | schedules2002013112txt - schedules2002011013txt - schedules2002013113txt - schedules2002013013txt - schedules2002010412txt | 18 | 408_schedules2002013112txt_schedules2002011013txt_schedules2002013113txt_schedules2002013013txt |
451
+ | 409 | schedules2002010824txt - schedules2002010613txt - schedules2002010702txt - schedules2002010405txt - schedules2002010706txt | 18 | 409_schedules2002010824txt_schedules2002010613txt_schedules2002010702txt_schedules2002010405txt |
452
+ | 410 | nancysellersrobertmondavicom - nancy - mieux - bois - chante | 18 | 410_nancysellersrobertmondavicom_nancy_mieux_bois |
453
+ | 411 | schedules2002011017txt - schedules2002013017txt - schedules2002011117txt - schedules2002011417txt - schedules2002013117txt | 18 | 411_schedules2002011017txt_schedules2002013017txt_schedules2002011117txt_schedules2002011417txt |
454
+ | 412 | credit - creditcheckr - creditcheck - equifax - loan | 18 | 412_credit_creditcheckr_creditcheck_equifax |
455
+ | 413 | edclfpcom - hacknecescecom - pikesepenergycom - carolynvealhunterasmcagov - dominicdimarecalchambercom | 18 | 413_edclfpcom_hacknecescecom_pikesepenergycom_carolynvealhunterasmcagov |
456
+ | 414 | ferc - refunds - fercs - refund - fercbriefdoc | 18 | 414_ferc_refunds_fercs_refund |
457
+ | 415 | hrefhttpwwwnytimescomemail - srchttpgraphicsnytimescomimagesemailtodaysheadlinestodayshedflaggif - srchttpwwwnytimescomimagesemailwinenytnewslettersgif - hrefhttpwwwnytimescompagesnationalindexhtmltodaysheadlinemore - hrefmailtofeedbacknytimescomfeedbacknytimescoma | 18 | 415_hrefhttpwwwnytimescomemail_srchttpgraphicsnytimescomimagesemailtodaysheadlinestodayshedflaggif_srchttpwwwnytimescomimagesemailwinenytnewslettersgif_hrefhttpwwwnytimescompagesnationalindexhtmltodaysheadlinemore |
458
+ | 416 | energy - epri - svmg - policymakers - infrastructure | 18 | 416_energy_epri_svmg_policymakers |
459
+ | 417 | lehman - economy - yield - inflation - market | 18 | 417_lehman_economy_yield_inflation |
460
+ | 418 | san - plan - los - energy - summer | 18 | 418_san_plan_los_energy |
461
+ | 419 | play - lsu - teams - plays - tournament | 18 | 419_play_lsu_teams_plays |
462
+ | 420 | griffith - enronmessagingadministrationenroncom - flows - flow - contract | 18 | 420_griffith_enronmessagingadministrationenroncom_flows_flow |
463
+ | 421 | panelists - industrials - industrial - howardfromerenroncom - roberthemstockenroncom | 17 | 421_panelists_industrials_industrial_howardfromerenroncom |
464
+ | 422 | deer - lease - hunt - ranch - hunting | 17 | 422_deer_lease_hunt_ranch |
465
+ | 423 | entex - ena - exxon - ect - enbrel | 17 | 423_entex_ena_exxon_ect |
466
+ | 424 | indexoption - indexes - index - indexforward - indices | 17 | 424_indexoption_indexes_index_indexforward |
467
+ | 425 | navajo - tribes - tribe - tribal - excavation | 17 | 425_navajo_tribes_tribe_tribal |
468
+ | 426 | energy - html - srchttpwwwenergycentralcomimagesecdecdxgif - srchttpwwwenergycentralcomimagestransgif - srchttpwwwenergycentralcomimagesiconsdiskicongif | 17 | 426_energy_html_srchttpwwwenergycentralcomimagesecdecdxgif_srchttpwwwenergycentralcomimagestransgif |
469
+ | 427 | schedules - sf - weekly - ca - francisco | 17 | 427_schedules_sf_weekly_ca |
470
+ | 428 | nadzieje - andrzej - polska - pisze - ze | 17 | 428_nadzieje_andrzej_polska_pisze |
471
+ | 429 | scholarships - scholarship - fafsa - fastweb - aidscholarship | 17 | 429_scholarships_scholarship_fafsa_fastweb |
472
+ | 430 | hourahead - hour - crawler - schedule - failed | 17 | 430_hourahead_hour_crawler_schedule |
473
+ | 431 | foolcom - foolmotleyfoolcom - fool - foolwatch - fools | 17 | 431_foolcom_foolmotleyfoolcom_fool_foolwatch |
474
+ | 432 | mailbox - outlook - exchangeadministratorenroncom - journaling - journal | 17 | 432_mailbox_outlook_exchangeadministratorenroncom_journaling |
475
+ | 433 | pipeline - logistics - pipes - pipe - transports | 17 | 433_pipeline_logistics_pipes_pipe |
476
+ | 434 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000037746page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000029730page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000008254page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000077033pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000010552page | 17 | 434_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000037746page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000029730page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000008254page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000077033pageapproval |
477
+ | 435 | enron - bankruptcy - bankrupt - enrons - savings | 17 | 435_enron_bankruptcy_bankrupt_enrons |
478
+ | 436 | qfs - qf - contracts - receivables - inga | 17 | 436_qfs_qf_contracts_receivables |
479
+ | 437 | leagues - league - commissionercom - transaction - httpfootballcommissionercomenron2000 | 17 | 437_leagues_league_commissionercom_transaction |
480
+ | 438 | nepco - vepco - dpc - dpca - eeos | 17 | 438_nepco_vepco_dpc_dpca |
481
+ | 439 | transformerpleasanton - abb - transformer - transformers - contract | 17 | 439_transformerpleasanton_abb_transformer_transformers |
482
+ | 440 | invoices - contract - enfolio - revised - amendedlnk | 17 | 440_invoices_contract_enfolio_revised |
483
+ | 441 | sportslinecom - font - td - fantasy - html | 17 | 441_sportslinecom_font_td_fantasy |
484
+ | 442 | ttc - marketopshouraheadcaisocom - mktstathouraheadcaisocom - pdci - status | 17 | 442_ttc_marketopshouraheadcaisocom_mktstathouraheadcaisocom_pdci |
485
+ | 443 | danleffenroncom - edwardsacksenroncom - martysundeenroncom - jameswrightenroncom - rogeryangenroncom | 17 | 443_danleffenroncom_edwardsacksenroncom_martysundeenroncom_jameswrightenroncom |
486
+ | 444 | fitrxcom - specialsfitrxcom - drugstorecom - specials - myoplex | 17 | 444_fitrxcom_specialsfitrxcom_drugstorecom_specials |
487
+ | 445 | transmission - contract - buyresale - resale - enronioadraftdoc | 17 | 445_transmission_contract_buyresale_resale |
488
+ | 446 | wholesale - utility - customers - ena - commodity | 17 | 446_wholesale_utility_customers_ena |
489
+ | 447 | fayeellisenroncom - houstonproductenroncom - edicksonenroncom - dielterryenroncom - dianesalcidoenroncom | 17 | 447_fayeellisenroncom_houstonproductenroncom_edicksonenroncom_dielterryenroncom |
490
+ | 448 | enron - enrons - bankruptcy - bankrupt - savings | 17 | 448_enron_enrons_bankruptcy_bankrupt |
491
+ | 449 | poem - happiness - inspirational - loving - life | 16 | 449_poem_happiness_inspirational_loving |
492
+ | 450 | edicksonenroncom - ecradyenroncom - carolyngeorgeenroncom - andrewedisonenroncom - peterdelenroncom | 16 | 450_edicksonenroncom_ecradyenroncom_carolyngeorgeenroncom_andrewedisonenroncom |
493
+ | 451 | enron - enrons - bankruptcy - bankrupt - savings | 16 | 451_enron_enrons_bankruptcy_bankrupt |
494
+ | 452 | overview - brochure - meeting - robertsupertyenroncom - cus25220 | 16 | 452_overview_brochure_meeting_robertsupertyenroncom |
495
+ | 453 | pira - forecast - piras - demand - reports | 16 | 453_pira_forecast_piras_demand |
496
+ | 454 | outlook - outlookteamenroncom - mailbox - mailings - migration | 16 | 454_outlook_outlookteamenroncom_mailbox_mailings |
497
+ | 455 | fuelcell - fuel - energyrequest - hillingscorpenron - palmercorpenron | 16 | 455_fuelcell_fuel_energyrequest_hillingscorpenron |
498
+ | 456 | technologydailyalertnationaljournalcom - httpnationaljournalcommembersnews2001101024insiderhtm - technology - technologydailyalertownermail2cloakroomcom - httpnationaljournalcommembersnewsbillsbillprogresshtm | 16 | 456_technologydailyalertnationaljournalcom_httpnationaljournalcommembersnews2001101024insiderhtm_technology_technologydailyalertownermail2cloakroomcom |
499
+ | 457 | enronannouncementsenroncom - enovate - robertsupertyenroncom - susantrevinoenroncom - eb50m | 16 | 457_enronannouncementsenroncom_enovate_robertsupertyenroncom_susantrevinoenroncom |
500
+ | 458 | homecoming - reunion - 25th - dates - chuck | 16 | 458_homecoming_reunion_25th_dates |
501
+ | 459 | postmasterenroncom - smtp - mailmanenroncom - enemta01enronrelease - enemta01enroncom | 16 | 459_postmasterenroncom_smtp_mailmanenroncom_enemta01enronrelease |
502
+ | 460 | enron - enrononline - weeklyreportenroncom - europeeolenroncom - europe | 16 | 460_enron_enrononline_weeklyreportenroncom_europeeolenroncom |
503
+ | 461 | pge - pges - pgt - policies - agreements | 16 | 461_pge_pges_pgt_policies |
504
+ | 462 | houstonreportenroncom - outage - outages - scheduled - corp | 16 | 462_houstonreportenroncom_outage_outages_scheduled |
505
+ | 463 | liquidations - liquidation - pjm - liquidated - financial | 16 | 463_liquidations_liquidation_pjm_liquidated |
506
+ | 464 | craigccalpinecom - socalgas - wreedsempracom - llorenzsocalgascom - tbrillsempracom | 16 | 464_craigccalpinecom_socalgas_wreedsempracom_llorenzsocalgascom |
507
+ | 465 | runnersenroncom - track - runners - uscaa - running | 16 | 465_runnersenroncom_track_runners_uscaa |
508
+ | 466 | futures - demand - market - cash - bcfday | 16 | 466_futures_demand_market_cash |
509
+ | 467 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000057285pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000080512pageapproval - pending - approval - contacting | 16 | 467_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000057285pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000080512pageapproval_pending_approval |
510
+ | 468 | dbcaps97data - schedules2002011817txt - schedules2002011718txt - hourahead - schedules2002011717txt | 16 | 468_dbcaps97data_schedules2002011817txt_schedules2002011718txt_hourahead |
511
+ | 469 | broadband - providers - provider - isp - modem | 16 | 469_broadband_providers_provider_isp |
512
+ | 470 | attend - classes - recruiting - training - schedule | 16 | 470_attend_classes_recruiting_training |
513
+ | 471 | mailtonancysellersrobertmondavicom - scottwlhotmailcom - palo - recipient - eweek | 16 | 471_mailtonancysellersrobertmondavicom_scottwlhotmailcom_palo_recipient |
514
+ | 472 | suneetsharmaenroncom - geniafitzgeraldenroncom - sharencasonenroncom - jameswrightenroncom - elysekalmansenroncom | 16 | 472_suneetsharmaenroncom_geniafitzgeraldenroncom_sharencasonenroncom_jameswrightenroncom |
515
+ | 473 | shellywoodenroncom - cassandraschultzenroncom - brianenroncom - kenneththibodeauxenroncom - johnsherriffenroncom | 16 | 473_shellywoodenroncom_cassandraschultzenroncom_brianenroncom_kenneththibodeauxenroncom |
516
+ | 474 | enron - enrononline - httpwwwenroncomcorpinvestors - llc - markets | 16 | 474_enron_enrononline_httpwwwenroncomcorpinvestors_llc |
517
+ | 475 | classmatescom - classmates - alumni - alumniaccess - alumniuserboldfish2snowballcom | 15 | 475_classmatescom_classmates_alumni_alumniaccess |
518
+ | 476 | hurricane - winds - latitude - weather - bermuda | 15 | 476_hurricane_winds_latitude_weather |
519
+ | 477 | ub27045105938paulzq4dzq4thomaszq2enronzq4comjoinmailccbncom - ub27045105390paulzq4dzq4thomaszq2enronzq4comjoinmailccbncom - ub29066108956paulzq4dzq4thomaszq2enronzq4comjoinmailccbncom - ub27045108461paulzq4dzq4thomaszq2enronzq4comjoinmailccbncom - cegirnewsuma2110607joinmailccbncom | 15 | 477_ub27045105938paulzq4dzq4thomaszq2enronzq4comjoinmailccbncom_ub27045105390paulzq4dzq4thomaszq2enronzq4comjoinmailccbncom_ub29066108956paulzq4dzq4thomaszq2enronzq4comjoinmailccbncom_ub27045108461paulzq4dzq4thomaszq2enronzq4comjoinmailccbncom |
520
+ | 478 | meeting - meet - lunch - wednesday - tuesday | 15 | 478_meeting_meet_lunch_wednesday |
521
+ | 479 | prayer - prayed - pray - praying - thou | 15 | 479_prayer_prayed_pray_praying |
522
+ | 480 | attachment - inline - subject - follows - 01vcorpedd4bea3f5113ae5nahoumsmbx01vcorpe | 15 | 480_attachment_inline_subject_follows |
523
+ | 481 | downtown - club - membership - clubs - fee | 15 | 481_downtown_club_membership_clubs |
524
+ | 482 | pipelines - pipeline - pipe - legislation - senate | 15 | 482_pipelines_pipeline_pipe_legislation |
525
+ | 483 | enronfcucom - enron - efcuenroncom - efcu - unionenron | 15 | 483_enronfcucom_enron_efcuenroncom_efcu |
526
+ | 484 | danleffenroncom - edisons - kevinkeeneyenroncom - jeremyblachmanenroncom - daviddelaineyenroncom | 15 | 484_danleffenroncom_edisons_kevinkeeneyenroncom_jeremyblachmanenroncom |
527
+ | 485 | receipt - received - document - lindastepenovitchbankofamericacom - email | 15 | 485_receipt_received_document_lindastepenovitchbankofamericacom |
528
+ | 486 | cnn - cnnmoney - cnns - breakingnewsmailcnncom - cnncoms | 15 | 486_cnn_cnnmoney_cnns_breakingnewsmailcnncom |
529
+ | 487 | enron - enronoptionsmailingenroncom - enronoptions - enronbenefits - enronannouncementsenroncom | 15 | 487_enron_enronoptionsmailingenroncom_enronoptions_enronbenefits |
530
+ | 488 | texasspp - aeps - aep - markets - texas | 15 | 488_texasspp_aeps_aep_markets |
531
+ | 489 | enron - financing - banks - bank - funding | 15 | 489_enron_financing_banks_bank |
532
+ | 490 | econnectvpn - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000079989pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000079466pageapproval - econnect - approval | 15 | 490_econnectvpn_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000079989pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000079466pageapproval_econnect |
533
+ | 491 | eb3892 - eb3817 - eb - fax7136463490 - eb3880d | 15 | 491_eb3892_eb3817_eb_fax7136463490 |
534
+ | 492 | tolkien - tolkiens - taliban - qaeda - nytimescom | 15 | 492_tolkien_tolkiens_taliban_qaeda |
535
+ | 493 | enrononline5enroncom - aep - enrononline3enroncom - enrononline2enroncom - enrononline6enroncom | 15 | 493_enrononline5enroncom_aep_enrononline3enroncom_enrononline2enroncom |
536
+ | 494 | pricing - commodity - price - fuel - uranium | 15 | 494_pricing_commodity_price_fuel |
537
+ | 495 | schedules2002011506txt - schedules2002011206txt - schedules2002020206txt - schedules2002012506txt - schedules2002011006txt | 15 | 495_schedules2002011506txt_schedules2002011206txt_schedules2002020206txt_schedules2002012506txt |
538
+ | 496 | enrononline - approval - brochure - review - postcard | 15 | 496_enrononline_approval_brochure_review |
539
+ | 497 | lexisnexis - lexis - certifinder - enronpubrecdoc - filings | 15 | 497_lexisnexis_lexis_certifinder_enronpubrecdoc |
540
+ | 498 | reviewers - reviewed - prc - approved - perfmgmtenroncomenron | 15 | 498_reviewers_reviewed_prc_approved |
541
+ | 499 | payroll - germanyhouectect - germanyenroncom - accounts - germanjbasfcorpcom | 15 | 499_payroll_germanyhouectect_germanyenroncom_accounts |
542
+ | 500 | taxbills - foundmoneycom - cash - grants - foundmoney | 15 | 500_taxbills_foundmoneycom_cash_grants |
543
+ | 501 | sleuth - searches - company - research - infonautics | 15 | 501_sleuth_searches_company_research |
544
+ | 502 | gasindexlistintcxcom - powerindexlistintcxcom - index - indices - intercontinentalexchange | 15 | 502_gasindexlistintcxcom_powerindexlistintcxcom_index_indices |
545
+ | 503 | directv - channels20 - channels - satellite - free | 15 | 503_directv_channels20_channels_satellite |
546
+ | 504 | berneycaucoinenroncom - markbernsteinenroncom - joequenetenroncom - edwardbaughmanenroncom - danadavisenroncom | 15 | 504_berneycaucoinenroncom_markbernsteinenroncom_joequenetenroncom_edwardbaughmanenroncom |
547
+ | 505 | pipeline - pressures - pressure - psi - compressor | 15 | 505_pipeline_pressures_pressure_psi |
548
+ | 506 | enrononline - trader - gcpenron - traders - desk | 14 | 506_enrononline_trader_gcpenron_traders |
549
+ | 507 | managementcrd - managementgas - portfolioid - effdt - 1222000 | 14 | 507_managementcrd_managementgas_portfolioid_effdt |
550
+ | 508 | nysrc - reliability - nyisotechexchangeglobal2000net - nys - compliance | 14 | 508_nysrc_reliability_nyisotechexchangeglobal2000net_nys |
551
+ | 509 | lsu - going - tennessee - tailgating - shreveport | 14 | 509_lsu_going_tennessee_tailgating |
552
+ | 510 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000057285pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000059240pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000080512pageapproval - pending - approval | 14 | 510_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000057285pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000059240pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000080512pageapproval_pending |
553
+ | 511 | dynegydirect - dynegy - dynegymarand - dynergywpd - customercaredynegycom | 14 | 511_dynegydirect_dynegy_dynegymarand_dynergywpd |
554
+ | 512 | schedules2001101503txt - schedules2001101614txt - schedules2001101620txt - schedules2001101821txt - schedules2002011316txt | 14 | 512_schedules2001101503txt_schedules2001101614txt_schedules2001101620txt_schedules2001101821txt |
555
+ | 513 | jewelry - earrings - diamonds - diamond - gemstone | 14 | 513_jewelry_earrings_diamonds_diamond |
556
+ | 514 | hotel - florence - sicily - palermo - naples | 14 | 514_hotel_florence_sicily_palermo |
557
+ | 515 | transaction - datek - order - delivery - mailbotdatekcom | 14 | 515_transaction_datek_order_delivery |
558
+ | 516 | rodeo - rodeodoc - rodeoget - rodeocarnival - houston | 14 | 516_rodeo_rodeodoc_rodeoget_rodeocarnival |
559
+ | 517 | sheetalpatelenroncom - larrycashenroncom - angiecollinsenroncom - drewhillenroncom - gregmcclendonenroncom | 14 | 517_sheetalpatelenroncom_larrycashenroncom_angiecollinsenroncom_drewhillenroncom |
560
+ | 518 | riskopstm - riskops - riskmetrics - enterprise - risk | 14 | 518_riskopstm_riskops_riskmetrics_enterprise |
561
+ | 519 | jdasovicenroncom - ehughes2enroncom - dblackenroncom - bfrankenroncom - kgustafsenroncom | 14 | 519_jdasovicenroncom_ehughes2enroncom_dblackenroncom_bfrankenroncom |
562
+ | 520 | enrononline - billfoxenroncom - eolmsteadenroncom - johnsherriffenroncom - josephhirlenroncom | 14 | 520_enrononline_billfoxenroncom_eolmsteadenroncom_johnsherriffenroncom |
563
+ | 521 | confirms - confirmations - confirming - deals - confirmation | 14 | 521_confirms_confirmations_confirming_deals |
564
+ | 522 | edison - hydroelectric - securitization - belowmarketpricepower - perpetual | 14 | 522_edison_hydroelectric_securitization_belowmarketpricepower |
565
+ | 523 | lynn - glen - laura - gisb - lindley | 14 | 523_lynn_glen_laura_gisb |
566
+ | 524 | pcas - pca - bankruptcy - creditors - filing | 14 | 524_pcas_pca_bankruptcy_creditors |
567
+ | 525 | enron - enrons - bankruptcy - bankrupt - savings | 14 | 525_enron_enrons_bankruptcy_bankrupt |
568
+ | 526 | edwardsacksenroncom - larryhunterenroncom - kevinmeredithenroncom - bernicerodriguezenroncom - adnanpatelenroncom | 14 | 526_edwardsacksenroncom_larryhunterenroncom_kevinmeredithenroncom_bernicerodriguezenroncom |
569
+ | 527 | cassandraschultzenroncom - thompsonenroncom - toddhallenroncom - susanlairdenroncom - ews | 14 | 527_cassandraschultzenroncom_thompsonenroncom_toddhallenroncom_susanlairdenroncom |
570
+ | 528 | rigzone - newsletterrigzonecom - news - httpwwwrigzonecomnewslettershowaspnid207 - httpwwwrigzonecomnewslettershowaspnid195 | 14 | 528_rigzone_newsletterrigzonecom_news_httpwwwrigzonecomnewslettershowaspnid207 |
571
+ | 529 | nng - nngs - nnorth - capacity - customers | 14 | 529_nng_nngs_nnorth_capacity |
572
+ | 530 | halloween - costumes - pumpkin - decorations - dressed | 14 | 530_halloween_costumes_pumpkin_decorations |
573
+ | 531 | izio - notified - izioautoemailconvenecom - email - iziosupportconvenecom | 14 | 531_izio_notified_izioautoemailconvenecom_email |
574
+ | 532 | berkeley - achenusibmcom - nealehaasberkeleyedu - srobinsohaasberkeleyedu - sboylehaasberkeleyedu | 14 | 532_berkeley_achenusibmcom_nealehaasberkeleyedu_srobinsohaasberkeleyedu |
575
+ | 533 | economist - economistcom - economists - economics - economy | 14 | 533_economist_economistcom_economists_economics |
576
+ | 534 | energystorage - storage - ziff - gas - ziffs | 14 | 534_energystorage_storage_ziff_gas |
577
+ | 535 | enrondoc - chase - confirms - agreement - ena | 14 | 535_enrondoc_chase_confirms_agreement |
578
+ | 536 | balances - balance - imbalance - balancing - imbalances | 14 | 536_balances_balance_imbalance_balancing |
579
+ | 537 | agreements - ecc - weatherinsurancetransformer - counterparties - isda | 14 | 537_agreements_ecc_weatherinsurancetransformer_counterparties |
580
+ | 538 | turbines - gen - generation - energypanda - emissions | 13 | 538_turbines_gen_generation_energypanda |
581
+ | 539 | telecommunications - telecom - fcc - carriers - communications | 13 | 539_telecommunications_telecom_fcc_carriers |
582
+ | 540 | venezuelan - chavez - venezuela - chavezs - venezuelas | 13 | 540_venezuelan_chavez_venezuela_chavezs |
583
+ | 541 | capacity - basin - 25000 - northwest - available | 13 | 541_capacity_basin_25000_northwest |
584
+ | 542 | borland - schedules2001040402txt - schedules2001040403txt - schedules2001102118txt - schedules2001040205txt | 13 | 542_borland_schedules2001040402txt_schedules2001040403txt_schedules2001102118txt |
585
+ | 543 | outlookteamenroncom - billwillmanenroncom - pennycraneenroncom - andregibsonenroncom - stephenstenhouseenroncom | 13 | 543_outlookteamenroncom_billwillmanenroncom_pennycraneenroncom_andregibsonenroncom |
586
+ | 544 | enrondoc - contract - authorized - trailblazeropen - approved | 13 | 544_enrondoc_contract_authorized_trailblazeropen |
587
+ | 545 | fontstyle - fontweightbold - fontfamily - bold - fontweight | 13 | 545_fontstyle_fontweightbold_fontfamily_bold |
588
+ | 546 | agreements - compression - compressor - tws - agreement | 13 | 546_agreements_compression_compressor_tws |
589
+ | 547 | enron - louisekitchenenroncom - assistant - tammieschoppeenroncom - elizabethlayenroncom | 13 | 547_enron_louisekitchenenroncom_assistant_tammieschoppeenroncom |
590
+ | 548 | tickets - concert - ticket - tour - coliseum | 13 | 548_tickets_concert_ticket_tour |
591
+ | 549 | ews - brownbag - eb - lunch - bag | 13 | 549_ews_brownbag_eb_lunch |
592
+ | 550 | accounting - liquidations - financialssettlements - settlement - balance | 13 | 550_accounting_liquidations_financialssettlements_settlement |
593
+ | 551 | writeup - assignment - write - exam - tomorrow | 13 | 551_writeup_assignment_write_exam |
594
+ | 552 | tklohmanenroncom - dthd - logistics - ets - 3143b | 13 | 552_tklohmanenroncom_dthd_logistics_ets |
595
+ | 553 | louisiana - pipeline - 800l - gasindexlistintcxcom - index | 13 | 553_louisiana_pipeline_800l_gasindexlistintcxcom |
596
+ | 554 | martysundeenroncom - scottnealenroncom - thomaswhiteenroncom - russelldykenroncom - berneyaucoinenroncom | 13 | 554_martysundeenroncom_scottnealenroncom_thomaswhiteenroncom_russelldykenroncom |
597
+ | 555 | transactions - trade - counts - cnt - count | 13 | 555_transactions_trade_counts_cnt |
598
+ | 556 | mgs - mgl - mg - mgi - mgu | 13 | 556_mgs_mgl_mg_mgi |
599
+ | 557 | profit - revenue - profits - seminar - profitable | 13 | 557_profit_revenue_profits_seminar |
600
+ | 558 | aps - pinnacle - pinnaclewe - west - confirms | 13 | 558_aps_pinnacle_pinnaclewe_west |
601
+ | 559 | sadlersaearthlinknet - edson - cjrudmansoftcomnet - robbizcwocom - cmichelicarpentersnodgrasscom | 13 | 559_sadlersaearthlinknet_edson_cjrudmansoftcomnet_robbizcwocom |
602
+ | 560 | enron - emw - leefascettienroncom - wwhiteenroncom - mloveenroncom | 13 | 560_enron_emw_leefascettienroncom_wwhiteenroncom |
603
+ | 561 | rockets - rocketscom - rocketsspurs - tickets - nba | 13 | 561_rockets_rocketscom_rocketsspurs_tickets |
604
+ | 562 | peak - enrons - prices - erv - power | 13 | 562_peak_enrons_prices_erv |
605
+ | 563 | billcordesenroncom - larryderoinenroncom - janetplaceenroncom - debbiethompsonenroncom - leehuberenroncom | 13 | 563_billcordesenroncom_larryderoinenroncom_janetplaceenroncom_debbiethompsonenroncom |
606
+ | 564 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000041547pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000053239pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000070996pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000081784pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000081482pageapproval | 13 | 564_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000041547pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000053239pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000070996pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000081784pageapproval |
607
+ | 565 | kudlow - kudlow102601doc - kudlowcom - kudlows - wwwkudlowcom | 13 | 565_kudlow_kudlow102601doc_kudlowcom_kudlows |
608
+ | 566 | outage - outages - scheduled - maintenance - 500pm | 13 | 566_outage_outages_scheduled_maintenance |
609
+ | 567 | prospects - prospect - businesses - industries - trueadvantages | 13 | 567_prospects_prospect_businesses_industries |
610
+ | 568 | outlook - outlookteamenroncom - appointment - tms - conference | 13 | 568_outlook_outlookteamenroncom_appointment_tms |
611
+ | 569 | kevinhannonenroncom - inezdauteriveenroncom - markkoenigenroncom - kenriceenroncom - thomaswhiteenroncom | 13 | 569_kevinhannonenroncom_inezdauteriveenroncom_markkoenigenroncom_kenriceenroncom |
612
+ | 570 | tariff - san - juan - outage - efficiencies | 13 | 570_tariff_san_juan_outage |
613
+ | 571 | enron03 - enron06 - enron04 - enron05 - enron02 | 13 | 571_enron03_enron06_enron04_enron05 |
614
+ | 572 | leagues - httpfootballfantasysportslinecomspoogers - httpfootballfantasysportslinecomgetbad - rosters - notification | 13 | 572_leagues_httpfootballfantasysportslinecomspoogers_httpfootballfantasysportslinecomgetbad_rosters |
615
+ | 573 | credit2b - credit - financial - liabilities - riskcalc | 13 | 573_credit2b_credit_financial_liabilities |
616
+ | 574 | ca - costigan - sacramento - governor - california | 13 | 574_ca_costigan_sacramento_governor |
617
+ | 575 | pgev - contract - deal - deals - nomd | 12 | 575_pgev_contract_deal_deals |
618
+ | 576 | schedulingiso - schedules2001102003txt - schedules2001101702txt - schedules2002020515txt - schedules2001102006txt | 12 | 576_schedulingiso_schedules2001102003txt_schedules2001101702txt_schedules2002020515txt |
619
+ | 577 | enrononline - enrons - johnsherriffenroncom - markkoenigenroncom - jeffskillingenroncom | 12 | 577_enrononline_enrons_johnsherriffenroncom_markkoenigenroncom |
620
+ | 578 | lewisworthyenroncom - ecp - kevinlissenroncom - filed - fcc | 12 | 578_lewisworthyenroncom_ecp_kevinlissenroncom_filed |
621
+ | 579 | pjm - portfolio - portfolioid - cct - managementcrd | 12 | 579_pjm_portfolio_portfolioid_cct |
622
+ | 580 | markets - demand - prices - refined - oilrefined | 12 | 580_markets_demand_prices_refined |
623
+ | 581 | cipco - cipcos - ntec - coop - iowa | 12 | 581_cipco_cipcos_ntec_coop |
624
+ | 582 | migrating - migration - gem - 2000 - application | 12 | 582_migrating_migration_gem_2000 |
625
+ | 583 | ge - ges - contract - indemnity - schwartzenburgenrondevelopmentenrondevelopment | 12 | 583_ge_ges_contract_indemnity |
626
+ | 584 | larrydallmanenroncom - subsidiaries - sapdataenroncom - datasapenroncom - thomasmooreenroncom | 12 | 584_larrydallmanenroncom_subsidiaries_sapdataenroncom_datasapenroncom |
627
+ | 585 | spread - value - cumulative - pgespreadvaluationdefinitiondoc - calculation | 12 | 585_spread_value_cumulative_pgespreadvaluationdefinitiondoc |
628
+ | 586 | etrade - etradecom - etrades - ameritrade020717ameritradecustomeremailcom - ameritrade | 12 | 586_etrade_etradecom_etrades_ameritrade020717ameritradecustomeremailcom |
629
+ | 587 | bpats - tariff - transmission - policy - oasispostingsllisttransmissionbpagov | 12 | 587_bpats_tariff_transmission_policy |
630
+ | 588 | bouquet - flowers - gifting - gifts - gift | 12 | 588_bouquet_flowers_gifting_gifts |
631
+ | 589 | nymex - trades - gdnymex - deals - contracts | 12 | 589_nymex_trades_gdnymex_deals |
632
+ | 590 | exchangeadministratorenroncom - recipients - email - attachment - mailtosandymbramantireliantenergycom | 12 | 590_exchangeadministratorenroncom_recipients_email_attachment |
633
+ | 591 | newpowercommunicationnewpowercom - newpower - newpowers - newpowertm - wwwnewpowercom | 12 | 591_newpowercommunicationnewpowercom_newpower_newpowers_newpowertm |
634
+ | 592 | daviddelaineyenroncom - geniafitzgeraldenroncom - markguzmanenroncom - billwilliamsenroncom - brianbierbachenroncom | 12 | 592_daviddelaineyenroncom_geniafitzgeraldenroncom_markguzmanenroncom_billwilliamsenroncom |
635
+ | 593 | powerindexlistintcxcom - hrefhttpwwwintcxcomsubscriberservletsubscriberservletclassoperationpowerindexformhuballindex - indices - hrefmailtosalesintcxcomsalesintcxcoma - hrefhttpwwwintcxcomsubscribehtmlunsubscribea | 12 | 593_powerindexlistintcxcom_hrefhttpwwwintcxcomsubscriberservletsubscriberservletclassoperationpowerindexformhuballindex_indices_hrefmailtosalesintcxcomsalesintcxcoma |
636
+ | 594 | nytimescom - newsletters - httpwwwnytimescompagesbusinessindexhtmltodaysheadline - httpwwwnytimescompagestechnologyindexhtmltodaysheadline - httpwwwnytimescompagesnationalindexhtmltodaysheadline | 12 | 594_nytimescom_newsletters_httpwwwnytimescompagesbusinessindexhtmltodaysheadline_httpwwwnytimescompagestechnologyindexhtmltodaysheadline |
637
+ | 595 | pricing - prices - price - offer - prepaid | 12 | 595_pricing_prices_price_offer |
638
+ | 596 | cp - cps - approved - power - approvals | 12 | 596_cp_cps_approved_power |
639
+ | 597 | larrylawyerenroncom - bethperlmanenroncom - stephenwallaceenroncom - crookjodyenroncom - dbaughmanenroncom | 12 | 597_larrylawyerenroncom_bethperlmanenroncom_stephenwallaceenroncom_crookjodyenroncom |
640
+ | 598 | enronbridgeline - bridgeline - enrontexaco - texacobridgeline - rogerwestbrookenroncom | 12 | 598_enronbridgeline_bridgeline_enrontexaco_texacobridgeline |
641
+ | 599 | outage - outages - scheduled - maintenance - impacted | 12 | 599_outage_outages_scheduled_maintenance |
642
+ | 600 | approver - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000012734page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000009397page - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000070768pagemyreq - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000005413page | 12 | 600_approver_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000012734page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000009397page_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000070768pagemyreq |
643
+ | 601 | pjm - pjmcustomerrelationsandtrainingpjmcom - wwwpjmcom - ownerpjmcustomerinfopjmcom - pjmcustomerinforisc1pjmcom | 12 | 601_pjm_pjmcustomerrelationsandtrainingpjmcom_wwwpjmcom_ownerpjmcustomerinfopjmcom |
644
+ | 602 | swap - swaps - scheduled - revisions - reworked | 12 | 602_swap_swaps_scheduled_revisions |
645
+ | 603 | forecasts - prices - rockies - pricesmwh - peakheavy | 12 | 603_forecasts_prices_rockies_pricesmwh |
646
+ | 604 | hrefhttpwwwenergynewslivecomexperience - newscast - hrefhttpwwwrealcomreal - srchttpwwwenergynewslivecomcontentemailgraphicssignaturejpg - link0000ff | 12 | 604_hrefhttpwwwenergynewslivecomexperience_newscast_hrefhttpwwwrealcomreal_srchttpwwwenergynewslivecomcontentemailgraphicssignaturejpg |
647
+ | 605 | geocities - hosting - yahoo - internet - web | 12 | 605_geocities_hosting_yahoo_internet |
648
+ | 606 | wti - barrels - transacting - trades - crude | 12 | 606_wti_barrels_transacting_trades |
649
+ | 607 | realnetworksreg - realnetworks - realjukebox - realjukeboxreg - realplayer | 11 | 607_realnetworksreg_realnetworks_realjukebox_realjukeboxreg |
650
+ | 608 | approved - approval - approve - enrononline - eol | 11 | 608_approved_approval_approve_enrononline |
651
+ | 609 | equityalertcom - equityalert - alertsequityalertcom - alert - disclaimer | 11 | 609_equityalertcom_equityalert_alertsequityalertcom_alert |
652
+ | 610 | aol - aim - messenger - aolcom - aimaolcomredirectsaimemailaimhomehtml | 11 | 610_aol_aim_messenger_aolcom |
653
+ | 611 | outage - email - delivery - customerserviceindustrialinfocom - updates | 11 | 611_outage_email_delivery_customerserviceindustrialinfocom |
654
+ | 612 | capacity - allocations - allocating - overruns - customers | 11 | 612_capacity_allocations_allocating_overruns |
655
+ | 613 | mailbox - mail - delete - folder - deleting | 11 | 613_mailbox_mail_delete_folder |
656
+ | 614 | powermarketerscom - monthly - 196year - wholesale - merchant | 11 | 614_powermarketerscom_monthly_196year_wholesale |
657
+ | 615 | meeting - allworldwideenroncom - interoffice - houston - streamed | 11 | 615_meeting_allworldwideenroncom_interoffice_houston |
658
+ | 616 | tdickerswesterngascom - trdillwesternhubscom - porterdkscecom - askaffenergylawgroupcom - opening | 11 | 616_tdickerswesterngascom_trdillwesternhubscom_porterdkscecom_askaffenergylawgroupcom |
659
+ | 617 | enron - enronmessagingadministrationenroncom - enroncom - email - outlook | 11 | 617_enron_enronmessagingadministrationenroncom_enroncom_email |
660
+ | 618 | discount - discounts - deal - negotiated - price | 11 | 618_discount_discounts_deal_negotiated |
661
+ | 619 | enron - enrononline - dynegy - dynegyice - exchange | 11 | 619_enron_enrononline_dynegy_dynegyice |
662
+ | 620 | ca - iso - california - compliance - caiso | 11 | 620_ca_iso_california_compliance |
663
+ | 621 | outlook - outlookteamenroncom - appointment - calendar - buchanan | 11 | 621_outlook_outlookteamenroncom_appointment_calendar |
664
+ | 622 | schedules2001022813txt - schedules2001030802txt - schedules2001041822txt - schedules2001030805txt - schedules2001030801txt | 11 | 622_schedules2001022813txt_schedules2001030802txt_schedules2001041822txt_schedules2001030805txt |
665
+ | 623 | enerfax - httpwwwenerfaxcom - enerfaxwebegroupscom - enerfax1bellsouthnet - dailys | 11 | 623_enerfax_httpwwwenerfaxcom_enerfaxwebegroupscom_enerfax1bellsouthnet |
666
+ | 624 | ebill - reliantenergyebillcarecom - payment - billpay - httpsbankingwellsfargocom | 11 | 624_ebill_reliantenergyebillcarecom_payment_billpay |
667
+ | 625 | michaelbriggsreliantenergycom - smcfaddenigservicecom - benledeneaecca - spb1cwclawcom - kpooleadamsbroadwellcom | 11 | 625_michaelbriggsreliantenergycom_smcfaddenigservicecom_benledeneaecca_spb1cwclawcom |
668
+ | 626 | futures - charts - spreads - crude - httpwwwcarrfutcomresearchenergy1heatspread25pdf | 11 | 626_futures_charts_spreads_crude |
669
+ | 627 | dayahead - crawler - schedule - failed - error | 11 | 627_dayahead_crawler_schedule_failed |
670
+ | 628 | enronfacilitiesenroncom - enroncounterpartyenroncom - fayeellisenroncom - susantrevinoenroncom - scottlytleenroncom | 11 | 628_enronfacilitiesenroncom_enroncounterpartyenroncom_fayeellisenroncom_susantrevinoenroncom |
671
+ | 629 | receipt - recipient - mail - send - enronmessag | 11 | 629_receipt_recipient_mail_send |
672
+ | 630 | venture - ventures - venturewire - investors - investments | 11 | 630_venture_ventures_venturewire_investors |
673
+ | 631 | calculated - contractual - payment - amount - transaction | 11 | 631_calculated_contractual_payment_amount |
674
+ | 632 | rigzone - newsletterrigzonecom - newsletter - news - httpwwwrigzonecomnewslettershowaspnid201 | 11 | 632_rigzone_newsletterrigzonecom_newsletter_news |
675
+ | 633 | solarc - sappi - garetshawenroncom - reports - billcaseyenroncom | 11 | 633_solarc_sappi_garetshawenroncom_reports |
676
+ | 634 | danleffenroncom - martysundeenroncom - robertjohnsonenroncom - powerplants - neilbresnanenroncom | 11 | 634_danleffenroncom_martysundeenroncom_robertjohnsonenroncom_powerplants |
677
+ | 635 | forestweb - forest - news - newsbeat - forests | 11 | 635_forestweb_forest_news_newsbeat |
678
+ | 636 | antiviral - hiv - pharmaceuticals - clinical - treatment | 11 | 636_antiviral_hiv_pharmaceuticals_clinical |
679
+ | 637 | swap - amended - exchange - enron - termination | 11 | 637_swap_amended_exchange_enron |
680
+ | 638 | enronmetals - enronnetworks - enrononline - metals - aluminium | 11 | 638_enronmetals_enronnetworks_enrononline_metals |
681
+ | 639 | esmtp - postmasterenroncom - efittswebtvnet - smtp - smtpin1029bryantwebtvnet | 10 | 639_esmtp_postmasterenroncom_efittswebtvnet_smtp |
682
+ | 640 | bermudan - bermuda - reinsurance - arbitrage - eb | 10 | 640_bermudan_bermuda_reinsurance_arbitrage |
683
+ | 641 | soccer - league - canfield - teams - practice | 10 | 641_soccer_league_canfield_teams |
684
+ | 642 | enron - enrononline - eims - eim - freight | 10 | 642_enron_enrononline_eims_eim |
685
+ | 643 | send - yahoo - mail - emails - megrogers99yahoocom | 10 | 643_send_yahoo_mail_emails |
686
+ | 644 | meeting - meet - lunch - tuesday - saturday | 10 | 644_meeting_meet_lunch_tuesday |
687
+ | 645 | schedule - 10am - cst - thursday - meeting | 10 | 645_schedule_10am_cst_thursday |
688
+ | 646 | enron - enrons - bankruptcy - bankrupt - savings | 10 | 646_enron_enrons_bankruptcy_bankrupt |
689
+ | 647 | sell - selling - sale - sold - 25mw | 10 | 647_sell_selling_sale_sold |
690
+ | 648 | aps - transmission - enronmay2001xls - tranny - congestion | 10 | 648_aps_transmission_enronmay2001xls_tranny |
691
+ | 649 | bids - marketrelationsnyisocom - nyisotechexchange - bidding - auction | 10 | 649_bids_marketrelationsnyisocom_nyisotechexchange_bidding |
692
+ | 650 | httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076650pageapproval - httpitcappscorpenroncomsrrsauthemaillinkaspid000000000059231pageapproval - pending - approval - arsystemmailmanenroncom | 10 | 650_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000076650pageapproval_httpitcappscorpenroncomsrrsauthemaillinkaspid000000000059231pageapproval_pending_approval |
693
+ | 651 | texas - austin - ut - campus - colleges | 10 | 651_texas_austin_ut_campus |
694
+ | 652 | gamma - optiongrid - gammas - ltoptions - parameters | 10 | 652_gamma_optiongrid_gammas_ltoptions |
695
+ | 653 | enrononline - ehaedickeenroncom - taylorenroncom - tarasweitzerenroncom - sbradfordenroncom | 10 | 653_enrononline_ehaedickeenroncom_taylorenroncom_tarasweitzerenroncom |
696
+ | 654 | promotions - manager - althaus - director - vp | 10 | 654_promotions_manager_althaus_director |
697
+
698
+ </details>
699
+
700
+ ## Training hyperparameters
701
+
702
+ * calculate_probabilities: False
703
+ * language: english
704
+ * low_memory: False
705
+ * min_topic_size: 10
706
+ * n_gram_range: (1, 1)
707
+ * nr_topics: None
708
+ * seed_topic_list: None
709
+ * top_n_words: 10
710
+ * verbose: False
711
+ * zeroshot_min_similarity: 0.7
712
+ * zeroshot_topic_list: None
713
+
714
+ ## Framework versions
715
+
716
+ * Numpy: 1.25.2
717
+ * HDBSCAN: 0.8.33
718
+ * UMAP: 0.5.6
719
+ * Pandas: 2.0.3
720
+ * Scikit-Learn: 1.2.2
721
+ * Sentence-transformers: 2.7.0
722
+ * Transformers: 4.40.1
723
+ * Numba: 0.58.1
724
+ * Plotly: 5.15.0
725
+ * Python: 3.10.12
config.json ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "calculate_probabilities": false,
3
+ "language": "english",
4
+ "low_memory": false,
5
+ "min_topic_size": 10,
6
+ "n_gram_range": [
7
+ 1,
8
+ 1
9
+ ],
10
+ "nr_topics": null,
11
+ "seed_topic_list": null,
12
+ "top_n_words": 10,
13
+ "verbose": false,
14
+ "zeroshot_min_similarity": 0.7,
15
+ "zeroshot_topic_list": null,
16
+ "embedding_model": "sentence-transformers/all-MiniLM-L6-v2"
17
+ }
ctfidf.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5899590c0cb867a01ba929257b705891da109b7565f1728ec703acfcc44dc10a
3
+ size 19554364
ctfidf_config.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f8714bc7677c375110465c3b80cfec161dad71ac35609f6f5d8d8092cbe0880e
3
+ size 12164237
topic_embeddings.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f100b9b20e418ff0e1156d3ee447d08a24316dc41c4c28712ee34e508bdb37fe
3
+ size 1007712
topics.json ADDED
The diff for this file is too large to render. See raw diff