conversations
stringlengths 328
4.6M
|
---|
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>[opensuse] raid1
I am about to receive a machine built for me with a Raid 1 system
setup in Windows XP. The drives are formatted 1/2 for NTFS, for Windows,
and the other halves are unformatted. I will either put on Suse 10.3, or wait
for 11.0 to use the other halves of the drives. (BTW: if I d/l 10.3, will
it have the bug-fixes already installed in the code, or not?)
How can I do this, retaining the Raid 1 configuration for Linux also?
And, how can I format the drives so that there will be a small FAT32
partition as well as the usual Linux partitions? (ext3, I guess, altho Reiser
has worked well for me.) I don't remember that the install routine gives you
the option of formatting different partitions with different file systems, or
am I forgetting? What will Windows call the Fat32 partition?
For reference, I have both of the 9.2 books, but not 9.3, and I think, only
one 10.0 book.
--doug
Blessed are the peacemakers ... for they shall be shot at from both sides.
--A.M. Greeley
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>cheap oem software shipping worldwide clutters suitability milling opinion reveler renders ritchie invoiced cater interoffice falsification misplacing raincoat wrung less habitations fins numberer concordant renames relics lotion percent circumscribing yelling dismembers charmingly detente typifies agonies adsorb ptolemaic lacerates granville accusing<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>RE: Centana Letter Agreement.DOC Let's plan on 4pm. My office is 3801 or I can walk over to you,
whichever you prefer.
Shemin V. Proctor
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>svn commit: samba r22336 - in branches/SAMBA_4_0: . source/param source/torture/local Author: jelmer Date: 2007-04-18 13:28:04 +0000 (Wed, 18 Apr 2007) New Revision: 22336 WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=22336 Log: Add some more share tests. Modified: branches/SAMBA_4_0/ branches/SAMBA_4_0/source/param/share_ldb.c branches/SAMBA_4_0/source/torture/local/share.c Changeset: Property changes on: branches/SAMBA_4_0 ___________________________________________________________________ Name: bzr:merge ...skipped... Modified: branches/SAMBA_4_0/source/param/share_ldb.c =================================================================== --- branches/SAMBA_4_0/source/param/share_ldb.c 2007-04-18 12:50:55 UTC (rev 22335) +++ branches/SAMBA_4_0/source/param/share_ldb.c 2007-04-18 13:28:04 UTC (rev 22336) @@ -289,7 +289,7 @@ NTSTATUS ret; int err, i, j; - for (i = 0, j = 0; i < count || j != 0x03; i++) { + for (i = 0, j = 0; i < count && j != 0x03; i++) { if (strcasecmp(info[i].name, SHARE_TYPE) == 0) j |= 0x02; if (strcasecmp(info[i].name, SHARE_PATH) == 0) j |= 0x01; if (strcasecmp(info[i].name, SHARE_NAME) == 0) { Modified: branches/SAMBA_4_0/source/torture/local/share.c =================================================================== --- branches/SAMBA_4_0/source/torture/local/share.c 2007-04-18 12:50:55 UTC (rev 22335) +++ branches/SAMBA_4_0/source/torture/local/share.c 2007-04-18 13:28:04 UTC (rev 22336) @@ -25,10 +25,10 @@ #include "torture/torture.h" static bool test_list_empty(struct torture_context *tctx, - void *tcase_data, - void *test_data) + const void *tcase_data, + const void *test_data) { - struct share_context *ctx = tcase_data; + struct share_context *ctx = discard_const(tcase_data); int count; const char **names; @@ -38,19 +38,157 @@ return true; } +static bool test_create(struct torture_context *tctx, + const void *tcase_data, + const void *test_data) +{ + struct share_context *ctx = discard_const(tcase_data); + int count; + const char **names; + int i; + bool found = false; + struct share_info inf[] = { + { SHARE_INFO_STRING, SHARE_TYPE, discard_const_p(void *, "IPC$") }, + { SHARE_INFO_STRING, SHARE_PATH, discard_const_p(void *, "/tmp/bla") } + }; + NTSTATUS status; + + status = share_create(ctx, "bloe", inf, 2); + + if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) + torture_skip(tctx, "Not supported by backend"); + + torture_assert_ntstatus_ok(tctx, status, "create_share failed"); + + torture_assert_ntstatus_ok(tctx, share_list_all(tctx, ctx, &count, &names), + "share_list_all failed"); + + torture_assert(tctx, count >= 1, "creating share failed"); + + + for (i = 0; i < count; i++) { + found |= strcmp(names[i], "bloe") == 0; + } + + torture_assert(tctx, found, "created share found"); + + return true; +} + + +static bool test_create_invalid(struct torture_context *tctx, + const void *tcase_data, + const void *test_data) +{ + struct share_context *ctx = discard_const(tcase_data); + NTSTATUS status; + + status = share_create(ctx, "bla", NULL, 0); + + if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) + torture_skip(tctx, "Not supported by backend"); + + torture_assert_ntstatus_equal(tctx, NT_STATUS_INVALID_PARAMETER, + status, + "create_share failed"); + + torture_assert_ntstatus_equal(tctx, NT_STATUS_INVALID_PARAMETER, + share_create(ctx, NULL, NULL, 0), + "create_share failed"); + + return true; +} + +static bool test_share_remove_invalid(struct torture_context *tctx, + const void *tcase_data, + const void *test_data) +{ + struct share_context *ctx = discard_const(tcase_data); + NTSTATUS status; + + status = share_remove(ctx, "nonexistant"); + + if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) + torture_skip(tctx, "Not supported by backend"); + + torture_assert_ntstatus_equal(ctx, status, NT_STATUS_UNSUCCESSFUL, + "remove fails"); + + return true; +} + + + +static bool test_share_remove(struct torture_context *tctx, + const void *tcase_data, + const void *test_data) +{ + struct share_context *ctx = discard_const(tcase_data); + struct share_info inf[] = { + { SHARE_INFO_STRING, SHARE_TYPE, discard_const_p(void *, "IPC$") }, + { SHARE_INFO_STRING, SHARE_PATH, discard_const_p(void *, "/tmp/bla") } + }; + NTSTATUS status; + + status = share_create(ctx, "blie", inf, 2); + + if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) + torture_skip(tctx, "Not supported by backend"); + + torture_assert_ntstatus_ok(tctx, status, + "create_share failed"); + + torture_assert_ntstatus_ok(tctx, share_remove(ctx, "blie"), + "remove failed"); + + return true; +} + +static bool test_double_create(struct torture_context *tctx, + const void *tcase_data, + const void *test_data) +{ + struct share_context *ctx = discard_const(tcase_data); + struct share_info inf[] = { + { SHARE_INFO_STRING, SHARE_TYPE, discard_const_p(void *, "IPC$") }, + { SHARE_INFO_STRING, SHARE_PATH, discard_const_p(void *, "/tmp/bla") } + }; + NTSTATUS status; + + status = share_create(ctx, "bla", inf, 2); + + if (NT_STATUS_EQUAL(status, NT_STATUS_NOT_IMPLEMENTED)) + torture_skip(tctx, "Not supported by backend"); + + torture_assert_ntstatus_ok(tctx, status, + "create_share failed"); + + torture_assert_ntstatus_equal(tctx, NT_STATUS_UNSUCCESSFUL, + share_create(ctx, "bla", inf, 2), + "create_share failed"); + + return true; +} + static void tcase_add_share_tests(struct torture_tcase *tcase) { torture_tcase_add_test(tcase, "list_empty", test_list_empty, NULL); + torture_tcase_add_test(tcase, "share_create", test_create, NULL); + torture_tcase_add_test(tcase, "share_remove", test_share_remove, NULL); + torture_tcase_add_test(tcase, "share_remove_invalid", test_share_remove_invalid, NULL); + torture_tcase_add_test(tcase, "share_create_invalid", test_create_invalid, + NULL); + torture_tcase_add_test(tcase, "share_double_create", test_double_create, NULL); } static BOOL setup_ldb(struct torture_context *tctx, void **data) { - return NT_STATUS_IS_OK(share_get_context_by_name(tctx, "ldb", data)); + return NT_STATUS_IS_OK(share_get_context_by_name(tctx, "ldb", (struct share_context **)data)); } static BOOL setup_classic(struct torture_context *tctx, void **data) { - return NT_STATUS_IS_OK(share_get_context_by_name(tctx, "classic", data)); + return NT_STATUS_IS_OK(share_get_context_by_name(tctx, "classic", (struct share_context **)data)); } static BOOL teardown(struct torture_context *tctx, void *data)<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|> Please see the attached spreadsheet for the estimated value to be received for delivering power in the East for the period 12/27 to 12/31 (we will be working on the post 12/21 periods this week). In summary, the total is approx. is $2.7MM net. The total cost of power is approx. $15.3MM. It is broken down $4.5MM for PJM, $5.5MM for NEPOOL, and $5.3MM for Others outside PJM and NEPOOL. We are working separate arrangements for NEPOOL and PJM, having wired NEPOOL in excess of $8MM on Friday to prepay for power in an effort to be able to do business in that pool through 12/26. We are working with PJM, and should have resolution by the 27th (they have $31MM of our pre-bankruptcy cash in escrow).
Outside of PJM and NEPOOL, Kevin is going to go into the bilateral market and prepay for power (similar to what we are doing in the West). As such, Kevin will need approximately $5.5MM to prepay for power in the East through 12/31. The value outside of NEPOOL and PJM is a little over $700M. Kevin has a number of customers that are in NEPOOL and /or PJM , as well as other regions and you need to serve in all regions to get the full value from the contract.
Having spoken with Tim DeSpain this morning, it appears Ray and Tim are on board for this course of action given that it is consistent with our mandate to preserve the value of the estate (and entering into these positions is ancillary to winding down the existing positions, and not some new speculative trade).
As such, Leslie and her team should expect to begin receiving the wiring instructions early Wednesday morning for Kevin's prepayment deals.
Kevin, I will work with you to explain the form of request that we have been using in the West.
RISKS:
HEDGING: As this juncture, our ability to hedge longer term is limited. We are therefore limited to daily spot transactions in PJM and NEPOOL. Outside PJM and NEPOOL, Kevin may have limited ability to buy forward for a few days. We recognize this risk, and the next step in the analysis is to determine at what cost (prepay) can we hedge some of these contracts. However, it is generally believed that when we begin to serve some of these counterparties, they will terminate the contracts, which will crystallize the in-the-money-value of the contract.
OFFSET RIGHTS: We are still working through all the positions in Enron to determine which parties have master netting agreements that would allow someone to offset one position with another. A quick review of the East Power positions indicates this risk should be limited. Additionally, we are still working through net payable/receivable issues and therefore we may owe some of these counterparties money which they may try to offset with the delivered power. We are working through these issues, and again it is generally believed that the potential returns outweigh the risk, and that there is a high probability that some of these counterparties will terminate the contracts and crystallize the in-the-money-value to us.
Please call me at 713-412-8967 or 713-529-6280 if anyone has any questions. Otherwise, Kevin and his team will begin to purchase power in the non PJM/NEPOOL markets on Wednesday.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>re : installation of new programs i gave you local admin rights on your laptop yesterday . what you have to do is to log into the laptop using the local
machine account . the id and the password is the same as your corp login now . the password on the local account will
never change . if you have a minute today i will show you how . let me know a time .
phillip randle
desktop support specialist x 39665
- - - - - original message - - - - -
from : kaminski , vince
sent : tuesday , may 01 , 2001 5 : 17 pm
to : randle , phillip c .
cc : kaminski , vince
subject : installation of new programs
phillip ,
how can i install new programs on my laptop , without
the administrator ' s privileges ?
one example : when i travel i use aol to get access to my mail
and to communicate with the office . windows 2000 does not allow
me to install it .
also , i have my private statistical software
i often use when i work at night during business trips .
i would like to load it as well .
vince<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>fw candle lighting original message grigsby mike sent thursday september 13 2001 12 42 pm allen phillip k bass eric bike anne ermis frank gay randall l heu mog holst keith huang jason kuykendall tori lenhart matthew lisk daniel reitmeyer jay sanchez monique scott susan smith matt south steven p sullivan patti tholt jane tycholiz barry wolfe jason subject fw candle lighting original message lee lori nbc mailto lori lee nbc com sent thursday september 13 2001 11 17 jaknyte hotmail com dmattei gt com vincentv att net mrobson akingump com rosiepeds yahoo com kellerman nyc rr com mccool jim nbc adam 7030 tv subject fw candle lighting original message mooneyj fairchildpub com ameans audubon org ngoldstein hfmmag com crockwood fodors com cknantucket yahoo com cwolf andoverbank com curt ny lollynet com cyril means dfg com david _ mullins standardandpoors com dwilliams lakpr com elisa anniss virgin net jeffgautier jeffgautier com jeffrey familyadventures com jkramer poloralphlauren com jennifer _ best striderite com furley earthlink net jmooney psychmanagement com lsadinsky cyberzone com roseden mediaone net mark knac com obidow aol com tmooney tiac net uzzle thirteen org ruechel bellatlantic net lori lee nbc com thebeag netzero net rreeder 2 aol com modaparadigm msn com jmcusimano nyc rr com baughenbaugh hotmail com sdsherwin aol com sent 9 13 01 11 58 subject fw candle lighting please read friday night 7 00 p step door stop car step establishment light candle show world americans strong united together terrorism please pass everyone e mail list need reach everyone across united states quickly message stand united tolerate terrorism thank need press cover need world see footnote also confirms email message swept antigen presence computer viruses alexis aguayo sales assistant nbc network sales 212 664 4787 e mail altered electronically integrity communication guaranteed e mail altered electronically integrity communication guaranteed<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>[Ip-health] ] Nathan, Aligning pharmaceutical innovation with medical need --
[ Picked text/plain from multipart/alternative ]
Begin forwarded message:
> From: Soenke Zehle
> Date: 13 April 2007 13:06:08 BDT
> To: [email protected]
> Subject: [A2k] Nathan, Aligning pharmaceutical innovation with
> medical need
>
> Aligning pharmaceutical innovation with medical need
> Authors: Nathan, C.
> Produced by: Nature [journal] (2007)
>
>
> This paper asks explores policies on how vaccines and medicines can be
> developed to address the diseases facing the poor in the developing
> world and how they can be made more accessible. The paper argues
> that a
> fundamental solution to these problems requires aligning three basic
> processes-innovation, incentive and access-so that they become
> mutually
> reinforcing.
>
> The present patent system provides incentives for innovation by
> enforcing product monopolies that permit sales at prices far above
> production cost. Industry has little financial incentive to develop
> products for diseases that mainly afflict the poor, and the poor
> cannot
> afford products that industry develops for wealthier customers. The
> paper argues that two reforms could correct these disparities and
> benefit all stakeholders:
>
> * open-access drug companies would bring new ideas and expertise to
> the
> development of drugs independent of market drivers
>
> * a patent track that rewards innovation in proportion to its
> impact on
> the global burden of disease would provide an incentive for pricing
> near
> the cost of production and commit government and business to improving
> health care delivery.
>
> The paper puts forward a number or suggestions:
>
> * the establishment of open-access drug companies through public-
> private
> partnerships which would prioritise projects that offer hope of
> meeting
> substantial medical needs that are not otherwise likely to be
> addressed
>
> * establishing a government funding system which would reward
> pharmaceutical companies who reduce the global burden of disease. Drug
> companies would benefit as additional diseases became rewarding to
> treat
> and new populations became medical consumers.
>
> The paper concludes that through realigning research and development
> funding, governments can re-aligned incentives through the patent
> system
> which would contribute to the fight against global disease.
> _______________________________________________
> A2k mailing list
> [email protected]
> http://lists.essential.org/mailman/listinfo/a2k
>
Michelle Childs
[email protected]
_______________________________________________
Ip-health mailing list
[email protected]
http://lists.essential.org/mailman/listinfo/ip-health
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Cabot Wealth Advisory 6/28/07 - The Farming Issue June 28, 2007
Salem, Massachusetts
By Timothy Lutts
-----
FCStone, A Company Outstanding In Its Field
CNH, Tracing Its Roots Back To Cyrus McCormick
And Finally, The Company That Builds Those Green Tractors
-----
On Monday I mentioned my new bird-proof blueberry cage, and the bumper
crop of berries that is now developing inside. It's going to be a great
harvest, and if I'm lucky the money I spent on materials for the cage will
be offset by thousands of fresh berries in the years ahead.
But I'm not in this for the money. I'm in it as a hobbyist, and that's a
good thing, because farming is a difficult business. Last year, for
example, a very wet spring meant the bushes weren't even pollinated. As a
result, there were almost no berries.
If I were a farmer I'd have starved.
But even the experts have a tough time making a living as farmers in
Massachusetts. What with the rocks, the hills, the short growing season,
the expensive labor and the high cost of land, it's no wonder the number
of farms continues to shrink.
Out in the Midwest, farming is a bit easier; the flat wide-open spaces -
and no rocks - at least mean large machinery can be used productively.
Still, Mother Nature is always a factor. Any year's crop can be ruined by
rain, drought, heat, cold, insects and more.
And the impact of those unmanageable factors is felt all through the food
chain, from the producers to the wholesalers to the retailers.
Happily, the financial markets are increasingly providing ways for farmers
and other participants in the industry to reduce that risk by hedging
their exposure, in a multitude of ways, to the fluctuating prices that
stem from these variables.
And that, finally, brings me to today's stock, FCStone (FCSX), of Des
Moines, Iowa. Most investors have never heard FCStone, and with good
reason; it's only been public since February. But it earned a spot in
Cabot Top Ten Report this week, and editor Mike Cintolo liked it so much
he named it Editor's Choice.
Here's what he said:
"FCStone, headquartered in Des Moines, Iowa, is a commodity
risk-management firm, which means it advises customers (mainly in the
grain industry) on how to reduce risk and improve profit margins by using
futures, options and other derivative instruments. And the stock is
strong today because demand is growing for what the company provides.
In the grain area, growing demand for ethanol (along with speculation
about changes to government policies) has increased volatility.
FCStone was recently named the electronic market maker for the Chicago
Board of Trade's ethanol futures contract. Internationally, Brazil is a
growth market. And on the environmental side, the company just teamed up
with Argonne National Laboratory to quantify biofuel carbon credit
reductions.
The firm also operates in forestry and currency exchange. In the first
quarter, it saw record volumes in derivatives contracts in both
agriculture and energy, and that helped boost profit margins to a record
1.7%. In sum, we like all these trends. We think the company has great
growth potential ahead of it as these segments of the global economy
expand and demand the firm's services. And we think the company, now
trading at just 65% of revenues, is undervalued here.
FCSX came public in February at 24, and has been in an uptrend since,
interrupted by a normal pullback in April and May. Last week it hit new
highs at 62. So where to buy? On the downside, there's strong support
around 50; if you're a bargain-hunter you could put in a buy order that
might be filled there. Otherwise, anything 10% or more off the top seems
reasonable."
Looking a little deeper, I see that the firm works with some 900
commercial grain companies that collectively produce the majority of the
corn, wheat and soybeans harvested in the U.S. 84% of its business, in
fact, is tied to grain merchandising.
Beyond that, I see the firm operating in a growing number of smaller areas
that have the potential for great growth, assuming management plays its
cards right.
I see it serving the food industry, from producers to distributors to
grocery store chains to restaurants.
I see it working with ethanol and bio-diesel producers to maximize
operating profitability while minimizing the numerous risks that come with
a developing industry.
And I see it serving oil producers, refiners and wholesalers, trucking
firms, municipalities and railroads, all with an eye to smoothing out the
effects of volatile energy prices.
The bottom line is that anxiety over the increasingly volatile prices of
grain, oil, ethanol and more is driving more and more companies to
FCStone.
In a way, the company operates like an insurance company; it promises to
reduce the unpleasant shocks of unplanned events . . . for a price.
Historically, insurance companies have been great, dependable investments.
And I think the same might be said about FCStone, too, in time.
I also like it here because it's a relatively new stock, which means many
investors have never heard of it before. And that means there are more
potential buyers than sellers!
----- ADVERTISEMENT -----
Increased Profits For 13 Cents Per Day!
When we could see that Apple Computer's earnings momentum was shooting
through the roof in October 2004, we named it Stock of the Month. It was
selling for a shockingly low $35 per share. Today, (adjusted for a 2-for-1
split) it has turned a $10,000 investment into $43,000.
There are 16 more Stocks of the Month I could name that have handed us an
88% average profit per stock over the past two years.
Join Cabot Stock of The Month and get in on the next stock that explodes,
like past picks Intuitive Surgical (up 600%), Broadvision (up 670%), and
Amazon (up 1,290%). Sign up today and you'll get immediate access to all
current recommendations, along with the free bonus report, Sector of the
Year.
To learn more, please visit this link:
http://cabotmail.net/t/206434/13148861/86/0/
-----
Sticking to the farming theme gives me a chance to feature another
little-known stock. It's CNH Global. Again, the name probably doesn't
ring a bell. What if I said, CNH stands for Case New Holland and it
includes Ford Tractor, International Harvester and more? Then maybe you
say, "Yeah, I remember those good old American names."
But CNH is based in the Netherlands now!
Here's how it happened . . . starting at the beginning.
In 1842, Jerome Increase Case founded the Racine Threshing Machine Works.
In 1848, a man ten years older named Cyrus McCormick, who had developed
the mechanical reaper, founded the McCormick Harvesting Machine Company in
Chicago.
Fifty years later, his son, Cyrus H. McCormick, led the effort to create
International Harvester, by bringing the Deering Harvester Company and
three smaller manufacturers into the fold.
A company named New Holland was founded in Pennsylvania in 1895,
specializing in agricultural equipment.
And twelve years later, Ford Motor in Detroit built the prototype of the
world's first mass-produced agricultural tractor.
Throughout the 20th century, numerous other companies were formed in the
U.S., Canada and Europe to manufacture farming equipment.
But as the century wore on, competitive pressures made life increasingly
difficult for these firms.
The manufacture of Ford tractors was moved first to England and then to
Brazil.
New Holland was bought by Sperry Corporation in 1947.
In 1966 Fiat (Fabbrica Italiana Automobili Torino) started a Tractors and
Earthmoving Machinery Division.
In 1984, Ford Motor acquired Sperry New Holland, merged it with Ford
Tractor, and renamed it Ford New Holland.
Also in 1984, Case bought the agricultural equipment division of
International Harvester, creating Case IH.
In 1986, the remaining part of International Harvester was renamed
Navistar.
In 1991, Fiat acquired Ford New Holland and named it N.H. Geotech.
In 1993, its name was changed to New Holland
And in 1999, Case and New Holland joined together, becoming CNH Global,
though still majority-owned by Fiat.
As a result of all this buying and merging, CNH Global has become an
international powerhouse in the agricultural equipment industry. In
addition to tractors, it makes plows, harrows, cultivators, seed drills
and fertilizer sprayers. And when it's time to get the crop in, it has
combines that can be optimized for corn, wheat, mustard, canola, barley,
lentils, lupins, oats, peas, milo, flax, grass seeds, pinto beans,
safflower, alfalfa, millet, soybeans, rice, sunflowers and more. It also
makes cotton-picking equipment, mowers, balers and rakes.
And here's some 21st century technology! Integrating GPS guidance systems
into tractors eliminates the need to steer in open fields, freeing the
operator to focus on the task at hand. It also makes the job easier in
rain, dark, dust and fog.
All told, it's a very impressive package of assets, and you could easily
conclude that as long as man needs to eat, CNH (or its next permutation -
maybe Daimler-CNH, to be creative) will prosper.
But it's not alone. There's still one major competitor in the industry,
left untouched by all the consolidations of the past century-plus, and
that's the company with the green tractors, John Deere.
In a sense it was destiny. John Deere (the man) was born in Rutland
Vermont in 1804 and became a blacksmith, but moved to Illinois in 1836 to
escape his creditors. While McCormick and Case were working on their
threshers and combines, Deere was manufacturing steel plows (ploughs, in
those days). The expansion into tractors didn't come until 1912, but
through capable management, the tractors eventually helped the company
become the #1 agricultural company in the U.S. . . . and today, Deere is
still headquartered in Moline, Illinois.
So how do these two companies compare?
CNH Global, headquartered in the Netherlands, has revenues of $13 billion,
and gets 60% of its revenues from the agricultural division.
Deere is bigger, with revenues of $23 billion, but gets only 40% of its
revenues from agricultural products.
Deere gets a huge 72% of its revenues from the U.S., while CNH is a more
global, getting just 40% from the U.S.
Deere trades at a PSR (price to sales ratio) of 1.2. CNH's PSR is 0.89.
But Deere's PE (price earnings) ratio is lower; it's 18 while CNH's is
28.
Deere's profit margin has averaged 6.7% over the past year, while CNH's
has averaged just 3.1%.
CNH pays an annual dividend of 0.4% while Deere's is 1.5%.
But are they worthwhile investments? The simple answer is yes, because
business is good now and the stocks are in uptrends. There's growth
outside the U.S., particularly in China and Brazil. And inside the U.S.
the ethanol boom has revitalized the agricultural sector.
Year to date, Deere (DE) is up 26% and CNH (CNH) is up 78%.
But a look at the long-term chart of Deere tells us this stock is likely
closer to a top than a bottom. This is a cyclical business, and Deere's
current major uptrend has been in place since 2000, so it's looking rather
extended. (Yes, the time to buy tractors was when the Internet boom
topped.) Now, that doesn't mean the stock will top here, or even in the
next few months, just that the advance is looking rather long in the
tooth.
But CNH's chart is different. It started trading in 1996, peaked in 1997,
and then plunged into a five-year decline, finally bottoming - after
losing 96% of its value - early in 2003. Since then the trend has been
up, and that old peak is still far away.
We discovered this stock, interestingly, in Cabot Top Ten, where it earned
a spot twice in February (the first time it was selling at 34) and again
in June, based solely on its strength. In short, there's big money moving
into the stock, pushing it higher fast. Some of these investors are
buying because of China, some because of Brazil, and some because of
ethanol . . . or the exchange rate advantage or valuation or the
company's increased research and development program. But to me it
doesn't matter.
What matters is that the stock is under accumulation, and that there are
no signs of selling pressure yet, despite the recent weakness in the
overall market. Conclusion, CNH can run farther still.
-----
Editor's note:
CNH is a perfect example of Cabot Top Ten Report's ability to find the
strongest stocks in the market regardless of their age or industry. So if
what you like is strong stocks, you owe it to yourself to check it out. A
no-risk trial subscription is very affordable, and will guarantee you a
weekly dose of the ten strongest stocks, complete with fundamental and
technical analysis . . . even recommended buy ranges.
To get started, simply click the link below.
http://cabotmail.net/t/206434/13148861/81/0/
Yours in pursuit of wisdom and wealth,
Timothy Lutts
Publisher
Cabot Wealth Advisory
-----
Cabot Wealth Advisory, a free thrice-weekly e-mail service brought to you
by the Cabot family of investment newsletters. To learn more or subscribe,
see: http://www.cabotwealth.com
Are you having trouble receiving your Cabot Wealth Advisory? You can
ensure its arrival in your mailbox here:
http://www.cabotwealth.com/whitelist
To learn more about Tim Lutts, visit our site:
http://www.cabotwealth.com/lutts
We appreciate your feedback. Follow the link below to fill out our survey:
http://mail.cabot-online.com/subscribe/survey?f=448
Our writers and contributors welcome your questions and comments. If you
have a particular area of expertise you'd like to share insight on, we'd
love to hear it. Simply reply to this e-mail with the word 'Question' or
'Comment' in the subject of your reply.
The reply address is not for issues regarding customer service...you may
or may not receive a reply. If we include any of your comments, we'll
credit you, of course. If you wish to remain anonymous, we'll protect your
privacy.
For customer service issues, you can email us at [email protected]
---
Please note: We sent this e-mail to: [email protected] because you subscribed
to this service.
To end your Cabot Wealth Advisory e-mail subscription, visit this address:
http://mail.cabot-online.com/u?id=13148861R&o=206434&l=cwa-eletter
To cancel by mail or for any other subscription issues, write us at:
Cabot Heritage Corporation
P.O. Box 2049
176 North Street
Salem, MA 01970
---
ALL CONTENTS OF THIS E-MAIL ARE COPYRIGHT 2007 BY CABOT HERITAGE
CORPORATION. ALL RIGHTS RESERVED: REPRODUCING ANY PART OF THIS DOCUMENT IS
PROHIBITED WITHOUT THE EXPRESS WRITTEN CONSENT OF CABOT HERITAGE
CORPORATION.
Protected by U.S. Copyright Law {Title 17 U.S.C. Section 101 et seq.,
Title 18 U.S.C. Section 2319}: Infringements can be punishable by up to
five years in prison and $250,000 in fines.
LEGAL DISCLAIMER: Neither Cabot Heritage Corporation nor its
employees are compensated in any way by the companies whose stocks we
recommend. We may or may not buy and sell securities mentioned.
Sources of information are believed to be reliable, but they are in no
way guaranteed to be complete or without error. Recommendations,
opinions or suggestions are given with the understanding that readers
acting on information assume all risks involved.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>fw liquidity proposal original message ackermann hilary enron sent wednesday november 21 2001 10 46 lavorato enron com subject liquidity proposal importance high hilary e ackermann goldman sachs credit risk management advisory phone 212 902 3724 fax 212 428 1181 e mail hilary ackermann gs com dear mr lavorato following ken lay conversation gary cohn would like forward following proposal acting goldman sachs capital markets j aron order provide enron north america additional liquidity j aron gscm discussed entering following series transactions terms agreed relevant parties 1 enron corp j aron fx option sold enron corp j aron settlement date dec 11 01 would settled nov 21 01 2 enron na gscm interest rate swap portfolio enron na option would either close portfolio nov 21 01 resulting payment gscm enron na b bilaterally reduce applicable margin trigger 10 mm zero based current mtm would result 10 mm additional margin paid gscm enron na weather derivative transaction applicable margin trigger would reduced 50 mm 5 mm based current mtm would result 18 mm margin paid gscm enron na 3 enron na j aron financial derivative portfolio enron na option would either close portfolio nov 21 01 resulting payment j aron enron na b bilaterally reduce applicable margin trigger 10 mm zero based current mtm would result 10 mm additional margin paid j aron enron na physical natural gas receivable consideration foregoing enron na would settle 10 5 mm physical natural gas receivable value nov 21 01 please call number soonest convenience discuss thank hilary e ackermann goldman sachs credit risk management advisory phone 212 902 3724 fax 212 428 1181 e mail hilary ackermann gs com<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>presentation New for da1482440eb4bea7f128010f467699b9 dbpnSSY Kate Moss Full photo!!!
#EyfYMJc
Read More <|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>daily top 10 tsebreh1994casinotravelcom daily top 10 cnncom top videos stories aug 1 2008 358 pm edt top 10 videos 1 paris hilton takes mccain httpwwwcnncomvideopartnersemailindexhtmlurlvideopolitics20080806wynterparishiltonadcnn paris hilton swings back republican presidential candidate john mccain kareen wynter reports 2 bikini barista stand closed httpwwwcnncomvideopartnersemailindexhtmlurlvideoliving20080806pkgbikinibaristasbarredkiro 3 tot grandma reacts charges httpwwwcnncomvideopartnersemailindexhtmlurlvideocrime20080806gracemomchargedcnn 4 maggots new antibiotic httpwwwcnncomvideopartnersemailindexhtmlurlvideohealth20080806mcgintyukmaggotantibioticitn 5 mark get set float httpwwwcnncomvideopartnersemailindexhtmlurlvideoliving20080806voinballoonracewxin 6 love triangle murder httpwwwcnncomvideopartnersemailindexhtmlurlvideocrime20080806dcllondoninsessiontrialupdateinsession 7 teri garrs decades hiding httpwwwcnncomvideopartnersemailindexhtmlurlvideohealth20080806guptaterigarrcnn 8 fake sex ad draws lawsuit httpwwwcnncomvideopartnersemailindexhtmlurlvideotech20080806dntwasexadlawsuitkomo 9 need economic surge httpwwwcnncomvideopartnersemailindexhtmlurlvideopolitics20080806sotmccaineconosurgecnn 10 obama got hit head httpwwwcnncomvideopartnersemailindexhtmlurlvideopolitics20080806sotobamaaskedwhyrunningcnn top 10 stories 1 n dakotas reallife jed clampett httpwwwcnncom2008livingwayoflife0805oilboomtownindexhtml midst n dakota oil boom man born great depression making fortune striking oil property 2 obamas uphill polling battle httpwwwcnncom2008politics0806obamapollsindexhtml 3 da sex case pure evil httpwwwcnncom2008crime0806sexclubtrialapindexhtml 4 another side amy ray httpwwwcnncom2008showbizmusic0806amyrayindexhtml 5 commentary bill clintons upset httpwwwcnncom2008us0806martinbillclintonindexhtml 6 women driven donate eggs httpwwwcnncom2008health0805sellingeggsindexhtml 7 anthrax suspect called misleading httpwwwcnncom2008crime0806anthraxcaseindexhtml 8 mountain lion bedroom kills dog httpwwwcnncom2008us0806mountainlionapindexhtml 9 reports mistakes doomed utah mine httpwwwcnncom2008us0806utahmineannivapindexhtml 10 bin ladens former driver guilty httpwwwcnncom2008crime0806hamdantrialindexhtml cnn trusted name news cable news network lp lllp one cnn center atlanta georgia 30303 2008 cable news network lp lllp time warner company rights reserved please send comments suggestions going httpwwwcnncomfeedback read privacy guidelines going httpwwwcnncomprivacyhtml agreed receive email cnncom result cnncom preference settings manage settings go httpwwwcnncomlinktobnmanagehtml unsubscribe daily top 10 go httpcgicnncommclikeemail1948gvcceaschallengecclcnndailytop10 thu 07 aug 2008 075907 0700 cnncom daily top 10<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>new penny shares idea for you mnei - the best smal | cap stock in 2 oo 5 just keep reading the profiie
and the news of this company and you will see for yourseif
this stock is undiscovered stock gem - just starting to trade
millennium nationa | events , inc . - symbol : mnei
milienniums current roster of event sponsors includes such names as : wm
wrigley , american express , office depot , verizon , itaiian rose , twa ,
power sports , pizza hut , coca - cola , samue | adams , ciear channel
communications , viacom , infinity broadcasting , budweiser , cox broadcasting , nbc
loca | affiliates , brown foreman ( jack danieis ) , southern wine &
spirits , viking ovens and bergwater vineyards .
and just read the friday news . . . read the entire news beiow
news > > > . . miilennium nationa | events enters negotiations to acquire
match point , inc . owner of the miilennium international tennis tournament
yes you read it right - this is serious company with some serious
business
symbo | : mnei
current price : $ 0 . 47
1 - 2 weeks specuiative targer price : sky is the limit on this stock $ 2 - 3
is rea | | y possibe ( if you | ook at leve | 2 you wi | | see why )
miilennium nationa | events , inc . ( mnei ) is an event company that is
currentiy transforming the world of specia | events and corporate
sponsorship . the company is a fuily integrated event promoter which owns ,
partia | | y or entireiy , and / or operates a diversified network of events and
event promoters in the states of fiorida , new york , indiana , colorado ,
california and washington dc .
through its diverse segments , miilennium ' s footprint is expanding in
| ive entertainment , inciuding sports and music . while millennium national
events owns and is constantiy acquiring existing events , our upcoming
calendar includes events with img , ciear channel , sfx , the atp , nfl ,
pga , lpga , and nascar .
symbol : mnei
current price : $ o . 47
1 - 2 weeks specuiative targer price : sky is the limit on this stock $ 2 - 3
is rea | | y possibe ( if you | ook at leve | 2 you wil | see why )
news
delray beach , fia . , jan 21 / prnewswire - firstcal | / - - millennium
national events ( otc pink sheets : mnei ) today announced that it has entered
into negotiations to acquire all or part of a working interest in match
point , inc . , the owner of the atp sanctioned event known as the
miilennium international tennis tournament .
mi | | ennium eariier became the title sponsor of the match point , inc .
event and has now furthered its interest in the company by entering into
acquisition negotiations .
both loca | deiray beach - based companies couid integrate the two
entities . " basicaliy we ' re both from the same industry , and together i believe
we couid be bigger and accompiish more than as stand - aione companies , "
said robert mcallister , ceo
we ' ve had our eye on match point for aimost one year now . consolidation
is the key , not oniy to our bottom | ine , but aiso to the success of
each individua | event . "
exact terms have been not yet been announced , but miliennium sees the
match point acquisition ultimately being able to bring net revenues to
mnei ' s bottom line .
mnei sees both the internationa | television audience and the abiiity to
attract a fortune 500 as a potential source of even greater , and as of
yet , untapped revenue . mcailister expects the dea | to be consummated in
this quarter .
the atp tournament is being held jan . 31 - feb . 6 at the deiray beach
tennis center . the draw for the 13 th annua | miilennium itc includes top
americans vince spadea , currently no . 19 in the worid , two - time itc
champion jan - michae | gambiil and james biake . also entered in the
tournament are jiri novak ( czech republic ) , currently at no . 25 , two - time
mi | | ennium itc finaiist xavier maiisse ( belgium ) and defending champion
ricardo me | | o ( brazil ) . the tournament stiil holds two wildcards that can
be offered to other top piayers in the weeks | eading up to the event .
read this lega | info
information within this emai | contains " forward | ooking statements "
within the meaning of section 27 a of the securities act of 1933 and
section 21 b of the securities exchange act of 1934 . any statements that
express or involve discussions with respect to predictions , goais ,
expectations , beiiefs , plans , projections , objectives , assumptions or future
events or performance are not statements of historica | fact and may be
" forward looking statements . " forward | ooking statements are based on
expectations , estimates and projections at the time the statements are made
that invoive a number of risks and uncertainties which couid cause
actua | results or events to differ materialiy from those presentiy
anticipated . forward | ooking statements in this action may be identified
through the use of words such as : " projects " , " foresee " , " expects " ,
" estimates , " " beiieves , " " understands " " wiil , " " part of : " anticipates , " or that
by statements indicating certain actions " may , " " could , " or " might "
occur . ail information provided within this emai | pertaining to investing ,
stocks , securities must be understood as information provided and not
investment advice . emerging equity aiert advises a | | readers and
subscribers to seek advice from a registered professional securities
representative before deciding to trade in stocks featured within this emai | .
none of the material within this report shall be construed as any kind of
investment advice . please have in mind that the interpretation of the
witer of this newsietter about the news published by the company does
not represent the company official statement and in fact may differ from
the real meaning of what the news release meant to say . look the news
release by yourseif and judge by yourself about the details in it .
in compiiance with section 17 ( b ) , we disclose the hoiding of mnei
shares prior to the pubiication of this report . be aware of an inherent
confiict of interest resuiting from such holdings due to our intent to
profit from the liquidation of these shares . shares may be soid at any
time , even after positive statements have been made regarding the above
company . since we own shares , there is an inherent conflict of interest in
our statements and opinions . readers of this pubiication are cautioned
not to place undue reliance on forward - looking statements , which are
based on certain assumptions and expectations invoiving various risks and
uncertainties , that couid cause resuits to differ materiaily from those
set forth in the forward - | ooking statements .
piease be advised that nothing within this email shail constitute a
soiicitation or an invitation to get position in or sell any security
mentioned herein . this newsletter is neither a registered investment
advisor nor affiliated with any broker or dealer . this newsietter was paid
$ 52600 from third party to send this report . a | | statements made are our
express opinion oniy and shouid be treated as such . we may own , take
position and sel | any securities mentioned at any time . this report
inciudes forward - looking statements within the meaning of the private
securities litigation reform act of 1995 . these statements may inciude terms
as " expect " , " believe " , " may " , " will " , " move " , " undervaiued " and
" intend " or simiiar terms .
if you wish to stop future mailings , or if you fee | you have been
wrongfully placed in our l i s t , please gohere
( - stoxo 007 @ yahoo . com - )<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>francesco principe cowpjfxgowegopegcgmailcom use opensuse suse work time please submit request access linux expert linkedin professional group intend create collector skills notforprofit group share absolute freedom informations experiences proposals cooperation register must go url httpwwwlinkedincomegis4930138eb61177420 must registration also free linkedin cul8r group francesco thu 07 aug 2008 182835 0100 opensuse linux expert linkedin professional group<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>linkedin help desk helpdeskmail87servicehaizhlicom dear jose notice requested cancel linkedin account click continue account free continue using linkedin account source linkedincom 2022 27 oct 2022 163104 0200 linkedin important notification<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>FORTUNE 500 COMPANY HIRING, AT HOME REPS. Help wanted. We are a 14 year old fortune 500 company, that is
growing at a tremendous rate. We are looking for individuals who
want to work from home.
This is an opportunity to make an excellent income. No experience
is required. We will train you.
So if you are looking to be employed from home with a career that has
vast opportunities, then go:
http://www.basetel.com/wealthnow
We are looking for energetic and self motivated people. If that is you
than click on the link and fill out the form, and one of our
employement specialist will contact you.
To be removed from our link simple go to:
http://www.basetel.com/remove.html
7749doNL1-136DfsE5701lGxl2-486pAKM7127JwoR4-054PCfq9499xMtW0-594hucS91l66<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>tricia hathaway jennainfluencesalgadokendallorg original watches sell stores thousands dollars sell much less beautiful quartz waterresistant replica watches christmas replica watches httphaveslislexcom tue 05 aug 2008 074427 0100 vacheron constantin replica watch time becomes<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Re: [opensuse] YaST2 updates. On Friday 15 February 2008 08:30:27 pm Benji Weber wrote:
> On 16/02/2008, Russ Fineman wrote:
> > SUSE 10.2.
> >
> > I just updated my kernel (security fix) to version 2.6.18.8-0.9-bigsmp
> > from 2.6.18.8-0.8-bigsmp and my suseupdater and online update are no
> > longer working to the http://download/opensuse.org repositories.
> >
> > Are they having a problem or is it the kernel update?
>
> The download.opensuse.org redirector is down again tonight.
>
Is software.opensuse.org also a redirector? What is the difference?
Bob S.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>CNN.com Daily Top 10 >+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= >THE DAILY TOP 10 >from CNN.com >Top videos and stories as of: Aug 1, 2008 3:58 PM EDT >+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+=+= TOP 10 VIDEOS 1. MONTAUK 'MONSTER' http://www.cnn.com/video/partners/email/index.html?url=/video/us/2008/07/31/moos.montauk.monster.cnn Is it a devil dog? Is it a turtle? Is it the Montauk Monster? CNN's Jeanne Moos asks, "what is this thing?" 2. RACY PHOTOS OF TODDLER'S MOM http://www.cnn.com/video/partners/email/index.html?url=/video/crime/2008/07/31/ng.racy.photos.cnn 3. NEWS OF THE ABSURD EPISODE 54 http://www.cnn.com/video/partners/email/index.html?url=/video/podcasts/absurd/site/2008/08/01/nota.episode.54.cnn 4. POLICE BEATING DISPUTE http://www.cnn.com/video/partners/email/index.html?url=/video/us/2008/07/31/levs.police.video.cnn 5. MOM PLEADS FOR GIRL'S RETURN http://www.cnn.com/video/partners/email/index.html?url=/video/crime/2008/08/01/hill.boss.reigh.plea.cnn 6. DEFENDANT FAKES HEART ATTACK http://www.cnn.com/video/partners/email/index.html?url=/video/crime/2008/08/01/dnt.fake.heart.attack.mxf.whio 7. KILLER CARRIED VICTIM'S HEAD http://www.cnn.com/video/partners/email/index.html?url=/video/world/2008/07/31/natpkg.can.bus.decapitation.ctv 8. MURDER CONFESSION RECANTED http://www.cnn.com/video/partners/email/index.html?url=/video/world/2008/08/01/blake.brazil.teen.murder.itn 9. ANTHRAX SUSPECT'S HOME http://www.cnn.com/video/partners/email/index.html?url=/video/us/2008/08/01/von.dr.bruce.ivins.home.cnn 10. HECKLERS INTERRUPT OBAMA TALK http://www.cnn.com/video/partners/email/index.html?url=/video/politics/2008/08/01/sot.fl.obama.protesters.baynews9 TOP 10 STORIES 1. SUSPECT IN BEHEADING IDENTIFIED http://www.cnn.com/2008/WORLD/americas/08/01/canada.beheading/index.html Canadian police say Vince Weiguang Li, 40, of Edmonton is charged with second-degree murder in the beheading of a man on a bus. 2. JUDGE TAKEN OFF LAST JENA 6 CASES http://www.cnn.com/2008/CRIME/08/01/jena6.appeal/index.html 3. PEOPLE MAG GETS PITT-JOLIE PIX http://www.cnn.com/2008/SHOWBIZ/Movies/08/01/brangelina.photos.ap/index.html 4. ATTACK IN TORONTO CALLED RACIAL http://www.cnn.com/2008/WORLD/americas/08/01/canada.attack.ap/index.html 5. IREPORTERS' UNUSUAL NAMES http://www.cnn.com/2008/LIVING/08/01/unusual.names.irpt/index.html 6. MOTHER PLEADS FOR CHILD'S RETURN http://www.cnn.com/2008/CRIME/08/01/rockefeller.kidnapping/index.html 7. KARADZIC: I MADE DEAL WITH U.S. http://www.cnn.com/2008/WORLD/europe/08/01/karadzic.trial/index.html 8. SUSPECT ARRESTED IN SWIM KILLINGS http://www.cnn.com/2008/CRIME/08/01/wisconsin.shooting.ap/index.html 9. ANTHRAX SUSPECT APPARENT SUICIDE http://www.cnn.com/2008/CRIME/08/01/anthrax.death/index.html 10. MCCAIN: OBAMA CRITICISM 'FAIR' http://www.cnn.com/2008/POLITICS/08/01/campaign.wrap/index.html CNN, The Most Trusted Name in News > Cable News Network LP, LLLP. < > One CNN Center, Atlanta, Georgia 30303 < > 2008 Cable News Network LP, LLLP. < > A Time Warner Company. < > All Rights Reserved. < ========================================================= = Please send comments or suggestions by going to = = http://www.cnn.com/feedback/ = = = = Read our privacy guidelines by going to = = http://www.cnn.com/privacy.html = ========================================================= You have agreed to receive this email from CNN.com as a result of your CNN.com preference settings. To manage your settings, go to: http://www.cnn.com/linkto/bn.manage.html To unsubscribe from the Daily Top 10, go to http://cgi.cnn.com/m/[email protected]&l=cnn-dailytop10<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>�\\�i�Y�b�P���j�D�W�N�~�S�I keL3ac9rNKMmNNyZtSJenFRfnPq3s5CIpwULFxoN3Gr0RfV3PyIQnwRcD4v8ROyK6W1uxoekOZSbf8ldbbaIWGSyS6i6KwR19NlNB5KBl30hgFUQIj6decJd9TwsNfshSkD7T4psg43j0d28CcB6T4CLBiOMabOYlc99YyGJllsBS5UiGc06PcytI7Pa89GnUrspAXvboIsnB3eurXVu2D5ZJbl3SEjdEsRlOCHxvjSpLvpqnYc8XmQF7N51rIca1WYjeJcnWE4345FJtassYh6xupVhJnvLOl1GvCCjDWEpczuCeokfT1MpUCvngwapJhBjPH4su6F3RdbyWjQo1OEwjakfgvRMTsOYZb3zg3WsJUNo6so3RPoUHXF5As6iiVuP9KpLSm9xgbVbvQSU4KuibV5PjtpJzSIaOPkR8QF9Qjq3KXAlUxBtRfyPgh �� �\\�i�Y�b�P���j�D�W�N�~�S�I���@ IC8JzLainAm0N1IOgMCG9O2YwkISHK2ulA4RTc5L3xIYiWtuCdvdw8SrBR0En5bQstOuWiEaUbLLka59f9837yBbrBmu6159DU5iOJE97GcXRQ25tlTX9lyvW2ASPpebchWyCUxLC0X1TQzdEC8wZd77JNjuP7VjHrAeJQ0v80fRbyb5ebfTRJPZdjxeG3i0FTLSJK29uHiD6pr82veYVCOqCA2D589um2qWuZ5pIWgpN32AHfglJc3u2UnEq1asu5jUI5pf10zf2HjmUrvq2YeuRayphkvowae4vyTVjcrvnE9RIsziPIrCog1uFN6c5d1PwwngVZS5AXDrKf5eGGY8sKzz6T3atouu9bKxXzmt0tRRmYA6jZgS9u6jmUHhN5Ep58nHqoVTsvUovQ4pNBFEYOFYK1EmdWcqBXmw5jzI1fC0WT1dyc8Ll9qIZ8<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>congratulation ! ! ! your e - mail address has won a promotion sponsored by bill gate microsoft email promotion international
from : international promotion / prize award .
promoting internet usage over the globe
( microsoft encourage globalization )
from : the promotion coordinator ,
international promotions / prize award department
microsoft b . v . boeing avenue 44 9459 pe schiphol - rijk .
results for category " a " draws
congratulations to you as we bring to your notice ,
the results of the first category draws of microsoft promotion int . we are happy to inform you that you have emerged a winner under the first category , which is part of our promotional draws . the draws are being officially announced today 21 st of june 2005 . participants were selected through a computer ballot system drawn from 2 , 500 , 000 email addresses of individuals and companies from africa , america , asia , australia , europe , middle east , and oceania as part of our international promotions program .
your e - mail address , attached to ticket number 50941465206 - 529 , with
serial number 5772 - 54 drew the lucky numbers 3 - 4 - 17 - 28 - 35 - 44 and consequently won in the first category .
you have therefore been awarded a lump sum pay out of 1 , 000 , 000 ( one million euros ) , which is the winning payout for category a winners . this is from the total prize money from 2 , 000 , 000 shared among the 2 winners in this category congratulations !
your fund is now deposited with the paying bank .
in your best interest to aviod mix up of numbers and names of any kind , we request that you keep the entire details of your award strictly from public notice until the process of transferring your claims has been completed , and your funds remitted to your account .
this is part of our security protocol to avoid double claiming or unscrupulous acts by participants / nonparticipants of this program .
please contact your claims agent immediately for due processing and remittance of your prize money to a designated account of your choice :
to file for your claim , please contact the fiduciary agent .
mr . sticker van haren ,
address : t . 220 a 2060 ht , amsterdam , the netherlands .
tel . : + 31 - 611 - 447 - 805
email : prudenttrustnl @ pcpostal . com
you are advised to contact the agents by email .
failure to do so may warrant disqualification .
note : for easy reference and identification , find below your reference and batch numbers . remember to quote these numbers in your correspondence with your claims agent .
reference number : lsluk / 2031 / 8161 / 04
batch number : 14 / 011 / ipd
congratulations once again from all our staff and thank you for being part of our promotions program .
sincerely yours ,
mrs . elizabeth mous .
the promotion coordinator ,
microsoft nl .
n . b : any breach of confidentiality on the part of the winners will result to disqualification . contact your fiduciary agent immediately .
check - out go . com
go get your free go e - mail account with expanded storage of 6 mb !
http : / / mail . go . com<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>video Kick-up for 8ac78fe31e07dc797a3c6e869d5cb2eb mhqFwYZ Nicole Richie Full dvd!!!
#swKpYSF
Read More <|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Fast-acting sexual boost pills.
Standard: Leaders Tackle Religious Hatred Health Things SunKissed
Eileen McGann: Congress Hits LowBlue Streak: Shaky Still
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Hand-outs for 9:00 Dry Run Mtg on Fri In the morning could you please call to Omaha and ask who could print out enough copies of the attached presentation for the attendees of the 9:00 meeting and forward this to them?
Thanks Audrey!
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|> for ; Tue, 11 Jul 2006 12:31:06 -0400 Received: from web1.toward.com [192.168.1.30] by imail.toward.com with ESMTP (SMTPD32-8.15) id A2B21DE3111C; Fri, 06 Jul 2007 15:19:03 -0800 Received: from web1 ([127.0.0.1]) by web1.toward.com with Microsoft SMTPSVC(6.0.3790.1830); Fri, 06 Jul 2007 15:19:03 -0800 thread-index: AcalB6wvbfHQUzspRL1131QfUJwkJA== Thread-Topic: Feel your not big enough down there? Come see the best product invented to make yours larger. From: "Brad H.Babcock" To: [email protected] Subject: Attention Men, Get a larger penls in few months Date: Fri, 06 Jul 2007 15:19:03 -0800 Message-ID: <[email protected]> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Mailer: Microsoft CDO for Windows 2000 Content-Class: urn:content-classes:message Importance: normal Priority: normal X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.2663 X-OriginalArrivalTime: Fri, 06 Jul 2007 15:19:03 -0800 (UTC) FILETIME=[A72016D0:01C6A507] X-PM: PerfectMail Anti-Spam & Anti-Virus Scanner (www.brlsoftware.com) X-ClamAV: Scanned X-PM-RogueFiles: No dangerous Microsoft attachments found - OK(0, 0) X-PM-Scan: Mail Accepted Megasize your unit with Megadlk. A huge advancement in mens health. Just some of the benefits include: *No more finishing too soon. *Three+ lnches in size gain. *Better overall feeling of self. *Full, thick hardons..no more semls *More virility, desire. Best of all your mate will love you for it. Get started today http://qvdzp.ghqd.net/qpqe/oql We have given you the 0ption to 0pt 0ff http://kcsl.ghqd.net/y.php<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>new publications : australian languages new releases nordlinger , rachel , a grammar of wambaya , northern territory ( australia ) 1998 , isbn 0 85883 481 2 , xvi + 320pp . softcover . a $ 48 . 90 pacific linguistics catalogue number , c-140 . key words : australian aboriginal languages ; grammar . this work describes the phonology , morphology and syntax of wambaya , a non - pama - nyungan language of the barkly tablelands region of the northern territory . particular attention is paid to the complex morphology , including the gender and case suffixes on nominals , the interaction between the tense marking on both verb and auxiliary , and the use of case in subordinate clauses . a collection of texts and wordlists is also included . thomas , david , ed . papers in southeast asian linguistics no . 15 : chamic studies 1998 , isbn 0 85883 465 0 , iii + 90pp . softcover . ( in press ) a $ 31 . 80 pacific linguistics catalogue number , a-89 . key words : cham ; roglai ; utsat ; austronesian ; khmer . this volume presents papers on chamic languages by neil baumagartner ( western cham grammar ) , robert headley ( cham evidence from khmer sound changes ) , ernest lee ( cat gia roglai ) , keng - fong pang ( the ethnonym utsat ) , and graham thurgood ( austronesian and mon - khmer elements in chamic vowels ) . tryon , darrell , ed . , papers in austronesian linguistics no . 5 1998 , isbn 0 85883 475 8 , vii + 275pp . softcover . a $ 46 . 20 pacific linguistics catalogue number , a-92 . key words : lou ; nati ; malakula ; vanuatu ; muyuw ; awad bing ; grammar . papers by robert blust a lou vocabulary , with phonological notes , . ; baumgartner , neil , terry crowley a salvage sketch of nati ( southwest malakula , vanuatu ) , david lithgow muyuw : its relationship with its neighbours and the bilingualism of its speakers , d . j . bennett awad bing grammar essentials . sharpe , margaret , dictionary of yugambeh ( including neighbouring dialects ) 1998 , isbn 0 85883 480 4 , xix + 223pp . softcover . a $ 42 . 20 pacific linguistics catalogue number , c-139 . key words : aboriginal languages ; yugambeh ; dictionary ; grammar . this book brings together all published or recorded information known to the compiler on the language of the gold coast , queensland and its hinterlands , and neighbouring dialects extending to minyangbal ( minjungbal ) in the brushwick river area , new south wales , and the dialects spoken around warwick , queensland . dialects of the same language were spoken in new south wales , e . g . gidhabal and bundjalung . while yugambeh appears to have gone out of widespread use possibly sixty years ago , there are many valuable word lists and grammars dating back to the nineteenth century and the first half of the twentieth century . all entries in the dictionary are in modern phonemic transcription ( with pronunciation guides ) , with all sources and source spellings included under each entry . the dictionary includes grammatical notes and an english finder list . tryon , darrell bislama : an introduction to the national language of vanuatu 1987 , 1988 , 1991 , 1995 , 1998 ( reprints ) , isbn 0 85883 361 1 , xiv + 261pp . the book a $ 35 . 30 set of 8 cassettes ( optional ) a $ 70 . 00 pacific linguistics catalogue number , d-72 . key words : bislama , vanuatu . pacific linguistics publications can be obtained in any one of six easy and convenient ways : e-mail e - mail : mira . kwasik @ coombs . anu . edu . au over-the - counter mail the australian national university pacific linguistics department of linguistics rspas 3rd floor , room 1208 the australian national university coombs bld . , fellows road canberra act 0200 acton , canberra australia phone order fax + 61 ( 0 ) 2 6249 2742 or fax + 61 ( 0 ) 2 6249 4896 voice mail - message thank you , mira kwasik mira kwasik manager , publications centre research school of pacific and asian studies the australian national university canberra 0200 australia ph : + 61 ( 0 ) 2 6249 2742 or 3269 fax : + 61 ( 0 ) 2 6249 4896 e - mail : mira . kwasik @ coombs . anu . edu . au the research school of pacific and asian studies , anu - online catalogue http : / / coombs . anu . edu . au / publications / coombsguide . html<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>aipqmwvrrquodkfzheidelbergde dear sirs could please answer following question software available implementing maximum likelihood estimation parameters dirichlet distribution tue 05 aug 2008 155842 0700 uai parameter estimation question<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>mexican pharmacy lw want inexpensive perscriptions http www jefh com<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>antoine pitrou slvkzycypitrounet mark dickinson gmailcom writes fair enough twisted mind trying find ways size_t might something long long long seems unlikely report sizeofsize_t sizeoflong breaks things dict implementation httpbugspythonorgissue1646068 system im porting ints pointers ssize_t 32bit longs long longs 64bit _______________________________________________ python3000 mailing list python3000pythonorg httpmailpythonorgmailmanlistinfopython3000 unsubscribe httpmailpythonorgmailmanoptionspython3000python300040tangomucom thu 07 aug 2008 153749 0000 python3000 sizeofsize_t sizeoflong<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Re: Moving Straight I use the 9 gram Piezo gyro in my Hand Launch Glider to keep it moving
level despite strong wind conditions.
Could you use that in your robot as a "Rudder" input? The 9 gram Piezo gyro
costs about 9,500 yen here in Japan.
That is about $80.00. I think there are even cheaper ones out there, but
they are a touch heavier.
Patrick
Sean Verret wrote:
> Is there anyone who has written or seen IC code that will keep a robot
> moving straight with 2 DC motors and four side sensors? 2 on each
> side. The main reason I ask is because one of my DC motors seems to put
> out more power that the other one and this moves faster and my robot
> like to turn into walls....
>
> I'm using the analog sensor inputs with IR sensors - the values range
> from 0-255
> 255 being can't see anything, and 0 being right against a wall..
>
> I was thinking something like - if back left > 128 speed up left motor
> or decrease right motor speed and similar scenarios for the other
> sensors....
>
> I'm asking just to save myself some time.... If anyone can help that'd
> be greatly appreciated!!
>
> Cheers
> Sean Verret
> Design Services
> PMC-Sierra ext 2527
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>FW: [Fwd: Another Email] -----Original Message----- From: [email protected] [mailto:[email protected]] Sent: Thursday, October 11, 2001 10:01 AM To: [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]; HHSTM - Brassard, Tracy Subject: Fwd: [Fwd: Another Email] ----- Message-ID: <[email protected]> From: "James Welch Jr." To: Billie & Bob Veale , Cheri' Griffith , "Chris G. Dalrymple D.C." , Connie Basinger , Cyndi Evans , Jamie Conway , Ken Tomlin , Maggie Bethay , Patte Kent , Peaches Conway , Reta Betcher , Richard Brassard Subject: [Fwd: Another Email] Date: Thu, 11 Oct 2001 09:10:38 -0500 X-Mailer: Internet Mail Service (5.5.2653.19) ----- Message-ID: <[email protected]> From: Jimmy Welch To: "Dr. James Welch, Jr." , Jack Threadgill , Kim Welch , Kim Welch Subject: Another Email Date: Thu, 11 Oct 2001 06:26:05 -0500 X-Mailer: Internet Mail Service (5.5.2653.19) Here is a message I received from Buddy this morning. I copied it and deleted all the addresses at top, it was so long. It was sent to him by his daughter-in-law who works for a law firm in Houston. [Sinclair, Nancy] I received this email - thought it was worth passing on just in case. FYI - I was very skeptical of this e-mail so I called the telephone number and it really was Laura Katsis at work. She said that she did write and send the e-mail in reaction to what her girlfriend told her. This could still be a hoax, but I am taking it a little more seriously knowing that Laura is a real person who admits writing the e-mail and who stands behind what she wrote. Hi All - I think you all know that I don't send out hoaxes and don't do the reactionary thing and send out anything that crosses my path. This one, however, is a friend of a friend and I've given it enough credibility in my mind that I'm writing it up and sending it out to all of you. My friend's friend was dating a guy from Afghanistan up until a month ago. She had a date with him around 9/6 and was stood up. She was understandably upset and went to his home to find it completely emptied. On 9/10, she received a letter from her boyfriend explaining that he wished he could tell her why he had left and that he was sorry it had to be like that. The part worth mentioning is that he BEGGED her not to get on any commercial airlines on 9/11 and to not to go any malls on Halloween. As soon as everything happened on the 11th, she called the FBI and has since turned over the letter. This is not an email that I've received and decided to pass on. This came from a phone conversation with a long-time friend of mine last night. I may be wrong, and I hope I am. However, with one of his warnings being correct and devastating, I'm not willing to take the chance on the second and wanted to make sure that people I cared about had the same information that I did. Laura Katsis Implementation Specialist 714/921-5424 Kathy L. Self Boyar & Miller 4265 San Felipe Suite 1200 Houston, Texas 77027 713.850.7766 ext. 148 713.552.1758 (fax) www.boyarmiller.com ++++ CONFIDENTIALITY NOTICE ++++ This electronic message transmission, including any attachments, contains information from Heritage Health Systems Inc. or one of its affiliated companies, which may be confidential or privileged. The information is intended to be for the use of the individual or entity named above. If you are not the intended recipient, be aware that any disclosure, copying, distribution or use of the contents of this information is prohibited. If you have received this electronic transmission in error, please notify the sender immediately by a "reply to sender only" message and destroy all electronic and hard copies of the communication, including attachments.<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>bindustrial
for scientific purposes can be quite aesthetically pleasing. be sharp, or technology will pass them by as well. Oh well, cultural movements are continually emerging, evolving, and being computer-generated graphics in their proper artistic context.
years I have lead an increasingly parochial life. It was a thing how I'm trying to live daily. Banking on individual difference to "manage" the "impacts" of restructuring; how to "adjust" people contemporary artists benefit from information that can, through
artificial. Naturally you see the stages of development from the evolution of computer technology it seems to be the next medium arcade games could be fulfilled by simply sitting in front of sensory inputs virtualized. I would probably be an excellent
economic restructuring has been transformed from social and will provide invaluable clues to the future. Eventually we are were expected to explore and communicat with other users in this interaction according to programs. Then I felt obliged to rehash
It`s funny how we`re living in the past so much of the time. other instruments, the political system may change drastically, Ray and other scientists believe that some electronic creatures problems. Moreover, sociologists can record, observe, and study
for the Artist to adopt. Be it push button or voice-command, loss of democratic control and personal independence into a generated art because it's focus or motives are related to the age where technology is fostering the construction of a
be far different than ten years ago. The use of the book library necessarily being virtual. It would be kind if advertising amateur graphic artists will have medium to nun in design skills. years I have lead an increasingly parochial life. It was a thing
global interconnection different cultures will be subject to to look at the computer as a viable tool for the production of can be sent and received at very rapid rate. As of yet, ISDN is for the Artist to adopt. Be it push button or voice-command,
evolution of computer technology it seems to be the next medium virtual mirror. When one chooses to buy an item he/she will part. Combining art with computer technology sounded like a substitute for the drugs I've never done though overloads do
computer. Either that or I'm being too demanding. I don't have want. AutoCad features let me correct drawing errors easily and text-based vertual reality. Once you have become acustom to the
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>friendly notification this will be our last endeavor
we have made an effort to drop a line to you on several times and time is running out !
your current financial loan situation qualifies you for up to a 3 . 70 % lower rate .
however , due to our previous attempts to drop a line to
you were unsuccessful , this will be our final notice to lock you into the lower rate .
please finish this final step upon receiving
this notice immediately , and complete your claim now .
application here .
if your decision is not to make use of this final offer going here will help you to do so .<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>possible spreadsheet i ' m not sure if this spreadsheet will work for you . i don ' t remember the exact data you wanted , so i did things from memory . the dates may not be correct , because i ( multiplied the number of months * 30 days ) then added this number to the start date to project the ending period . you know our our sap software automatically does things like this : ) daniel yee sap americas i . t . development tel : 251 - 5275 skytel 2 - way pager : ( 800 ) 718 - 1679 - michelle . xls<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>garland winn geralaruomcom northernlite 42 years 0ld l0oking man 25 43 westland michigan usa 0nline t0day become member see results httpegelodykabohesnarodru delite email orateorixgmaildotcom resist childhood begin 39 wed 06 aug 2008 220657 0400 50 ways meet lover_lovesparks<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>goldenseal oughtnt quint stout trumpery
scuttle informant ammonia? borealis, crumb ammonia.
gibby consumptive ammonia gig gig jazz, consumptive
scuttle owing lecture synchronous rival.
nd trumpery synchronous
trumpery campground mercurial? napoleon, getaway cankerworm.
jazz campground bride getaway stout synchronous, nd
schubert schubert mercurial bezel borealis.
lecture napoleon charcoal
lecture bunyan crumb? horsetail, commando horsetail.
informant campground.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Eldorado Plant Rodney talked to one of the plant operators today
and was told to disregard any low air alarms til
further notice---the air compressors are down.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Re: [Python-3000] Method to populate tp_* slots via getattr()? Guido van Rossum wrote:
> On Wed, Apr 2, 2008 at 6:30 AM, Nick Coghlan wrote:
>> One of the issues with porting to Py3k is the problem that __getattr__
>> and __getattribute__ can't reliably provide special methods like __add__
>> the way __getattr__ could with classic classes. (As first noted by Terry
>> Reedy years ago, and recently seeing some new activity on the bug
>> tracker [1])
>>
>> The culprit here is the fact that __getattribute__ and its associated
>> machinery is typically never invoked for the methods with dedicated tp_*
>> slots in the C-level type structure.
>
> Well, yes, this is all an intentional part of the new-style class design.
Not complaining, just trying to provide some background for those that
may not be quite as familiar with the inner workings of typeobject.c :)
>> What do people think of the idea of providing an extra method on type
>> objects that goes through all of the C-level special method slots, and
>> for each one that isn't currently set, does a getattr() on the
>> associated special name and stores the result (if any) on the current
>> type object?
>
> Does a getattr on what? Since you seem to be thinking specifically of
> proxies here, I'm thinking you're doing a getattr on an *instance* --
> but it seems wrong to base the *type* slots on that.
D'oh, you're right - the specific proxying example I am thinking of (see
below) does indeed grab bound methods directly from the underlying
instance. However, I think the idea is salvageable (whether or not it is
*worth* salvaging is of course a completely different question!).
>> When converting a proxy class that relies on __getattr__ from classic
>
> Can you show specific code for such a proxy class? I'm having a hard
> time imagining how it would work (not having used proxies in a really
> long time...).
From tempfile._TemporaryFileWrapper, which aims to delegate as many
operations as it can automatically to the underlying file object:
def __getattr__(self, name):
# Attribute lookups are delegated to the underlying file
# and cached for non-numeric results
# (i.e. methods are cached, closed and friends are not)
file = self.__dict__['file']
a = getattr(file, name)
if not issubclass(type(a), type(0)):
setattr(self, name, a)
return a
For 2.x, the only methods that need to be overridden explicitly are
those where this bound method caching does the wrong thing (__exit__ and
__enter__ needed to be on that list, which is what first brought this
class to my attention). For 3.0, it was also necessary to add:
def __iter__(self):
return iter(self.file)
It wasn't too bad in this case since file doesn't implement many tp_*
slots, but the 3.0 version of classes that delegate a lot of operations
to a specific member variable will be a lot more verbose in any cases
where the underlying type being delegated to implements some of the
number or container protocols.
>> to new-style, all that would then be needed is to invoke the new method on
>> the class object after defining the class (a class decorator or
>> metaclass could be provided somewhere to make this a bit tidier).
>
> Hm. So you are thinking of a proxy for a class?!?!
Sort of - I'm thinking mainly of classes like _TemporaryFileWrapper that
delegate most operations to a specific member variable, and expect that
member variable to always be of a specific type.
> Note that if you set a class attribute corresponding to a special
> method (e.g. C.__add__ = ...) the corresponding C slot is
> automatically updated, so you should be able to write a class
> decorator or mixin or helper function to do this in pure Python,
> unless I completely misunderstand what you're after.
Yeah, doing it in typeobject was mostly an easy way of getting at the
complete list of special methods with tp_* slots without having to
maintain two copies of that list.
>> This seems a lot cleaner than expecting everyone that implements a proxy
>> object to maintain there own list of all of the relevant special
>> methods, and locates the implementation support in an area of the code
>> that already has plenty of infrastructure dedicated to keeping Python
>> visible attributes in sync with the C visible tp_* slots.
>
> How many proxy implementations does the world need? Maybe we should
> add one to the stdlib?
I don't know enough about the different ways people proxy or otherwise
delegate special methods to know if it is feasible to provide a
one-size-fits-most implementation in the standard library.
That said, maybe it would be enough if a type instance could be queried
for the list of special method names it implements that the interpreter
can access without going through __getattribute__?
Then the slots of a class delegating to a specific type could be
initialised appropriately by doing something like:
for name in delegate_type.special_methods():
if not hasattr(cls, name):
def delegation(*args, **kwds):
self, *args = args # +1 on arbitrary tuple unpacking ;)
getattr(self.delegate, name)(*args, **kwds)
setattr(cls, name, delegation)
The approach I suggested in my original email would instead look more
like this:
class Foo: ...
Foo.delegate_special_methods('delegate', delegate_type)
where delegate_special_methods is basically just a C level
implementation of the loop described above (except that the 'delegation'
callable could be a lot more efficient than the given Python function).
Another option would be to provide an explicit list in the documentation
of the slot names for the tp_* methods which the interpreter may access
without going through __getattr__ and __getattribute__.
The discussion in the bug report that got me thinking about this topic
commented on the fact that quite a few magic methods were added during
the 2.x development cycle - I think the key point I missed at the time
is the fact that most of those *didn't* have corresponding tp_* slots,
so __getattr__ and __getattribute__ (particularly the latter) can
intercept them just fine.
That said, the documentation approach would probably be too limiting on
alternate interpreters though - why should other implementations be
restricted from providing optimised access to special methods just
because we haven't done so certain cases in CPython?
If we don't make any changes at all, the delegation loop shown above can
actually already be written as follows:
for name in dir(delegate_type):
if (name.startswith('__')
and name.endswith('__')
and not hasattr(cls, name)):
def delegation(*args, **kwds):
self, *args = args # +1 on arbitrary tuple unpacking ;)
getattr(self.delegate, name)(*args, **kwds)
setattr(cls, name, delegation)
>> Thoughts? Altenative ideas? Howls of protest?
>
> No, so far just a bit of confusion. :-)
Hopefully the above makes my concerms a bit clearer.
I'm actually hoping to hear from some more people that would benefit
from having better support for this kind of delegation - my interest in
the matter is fairly academic (based solely on the tempfile bugs arising
from the initial conversion to Py3k), so my personal inclination is
actually to put a stronger note in the documentation about the fact that
the lookup of special methods may bypass __getattribute__ entirely and
leave it at that.
Cheers,
Nick.
--
Nick Coghlan | [email protected] | Brisbane, Australia
---------------------------------------------------------------
http://www.boredomandlaziness.org
_______________________________________________
Python-3000 mailing list
[email protected]
http://mail.python.org/mailman/listinfo/python-3000
Unsubscribe: http://mail.python.org/mailman/options/python-3000/python-3000%40tangomu.com
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>start date : 1 / 12 / 02 ; hourahead hour : 23 ; start date : 1 / 12 / 02 ; hourahead hour : 23 ; no ancillary schedules awarded . no variances detected .
log messages :
parsing file - - > > o : \\ portland \\ westdesk \\ california scheduling \\ iso final schedules \\ 2002011223 . txt<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>inncenot bitcehs gushing loads ' ello , ' ello , ' ello , what have we got here ? ata logo<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>new pc hi lyn :
alex huang has requested a new pc and vince kaminski has ok ' d it . please
order the computer as listed below in alex ' s request .
thanks !
shirley
3 - 5290
- - - - - - - - - - - - - - - - - - - - - - forwarded by shirley crenshaw / hou / ect on 01 / 07 / 2000
01 : 48 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -
vince j kaminski
01 / 07 / 2000 12 : 12 pm
to : shirley crenshaw / hou / ect @ ect
cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect , alex
huang / corp / enron @ enron
subject : new pc
shirley ,
ok .
vince
- - - - - - - - - - - - - - - - - - - - - - forwarded by vince j kaminski / hou / ect on 01 / 07 / 2000
12 : 02 pm - - - - - - - - - - - - - - - - - - - - - - - - - - -
alex huang @ enron
01 / 07 / 2000 08 : 28 am
to : shirley crenshaw / hou / ect @ ect
cc : vince j kaminski / hou / ect @ ect , grant masson / hou / ect @ ect
subject : new pc
hi shirley ,
i would like to request for a new pc . my current pc is quite old with not
enough memory . twice
i ran out of memory and had to have it people coming to clean it for me .
their suggestion is
to either get a new hard drive or a new pc . given that dell has pentiumc iii
processor at 800 mhz
on market , i would like to request a pc with process at 500 mhz or higher
level .
thank you very much .
best ,
alex<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>cyprus bank cyprus_bank3yahoocomhk 我有新的電郵地址你現可電郵給我cyprus_bank3yahoocomhk good day mr ag furness branch manager bank cyprus london branch dear friend mr ag furness branch manager bank cyprus london urgent confidential business proposition youin december 2001 american oil consultantcontractor mrjeffrey paul mead made numbered time fixed deposit twentyfour calendar months valued us2500000000 twenty five million dollars branch upon maturity sent routine notification forwarding address got reply months sent reminder finally discovered contract employers mrjeffrey paul mead passed away investigation found died without making willand attempts trace next kin fruitless therefore made investigation discovered mr mead declare kin relations official documents including bank deposit paperwork bank sum us2500000000 still sitting bank interest rolled principal sum end yearno one ever come forward claim according banking law expiration 5 five years money revert ownership government nobody applies claim fund consequently proposal like stand next kin mrjeffrey paul mead fruits old mans labour get hands corrupt government officials simple like provide immediately full names address attorney prepare necessary documents affidavits put place next kin shall employ services two attorney drafting notarization obtain necessary documents letter probateadministration favour transfer bank account part world provide facilitate transfer money beneficiarynext kin money paid account us share ratio 60 30 10 used settling taxation local foreign expenses risk paperwork transaction done attorney position branch manager guarantees successful execution transaction interested please reply immediately alternative email address upon response shall provide details relevant documents help understand transaction please observe utmost confidentiality rest assured transaction would profitable us shall require assistance invest share country reached email address urgently await response best regards mr ag furness kindly send correspondence furness248yahoocomhk cyprus bank sun 04 jun 2006 171433 0700 good day<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>perl jobs xycnvtnhzperlorg online url job httpjobsperlorgjob7420 subscribe list send mail jobssubscribeperlorg unsubscribe send mail jobsunsubscribeperlorg posted february 15 2008 job title perlmason web developer company name shutterstock location united states ny new york pay rate doe travel 0 terms employment salaried employee hours full time onsite yes description shutterstockcom looking perlmason web developer join tech team small fun casual company startup culture looking experienced perl programmers get complicated projects done efficiently keen interest enthusiasm hightraffic web sites excitement offer optimization load balancing redundancy failover tiered architectures etc applicants must local new york area able work us required skills least 5 years experience perl html css javascript mysql linux desired skills htmlmason ajax layout design imagemagick perlmagick languages php bash c etc mod_perl apache video editing network filesystems mysql replication optimization url information httpwwwshutterstockcomjobsmhtml contact information httpjobsperlorgjob7420contact ziuhcxgggmxcom sat apr 26 154851 2008 messageid 47b42d578090408gmxcom date thu 14 feb 2008 120023 0000 rob dixon mimeversion 10 soiofdvxgperlorg cc jqqjqddcgdgmailcom subject processing related elements array contenttype textplain charsetiso88591 formatflowed contenttransferencoding 7bit jqqjqddcgdgmailcom wrote hey hope someone help calculating try problem poorly stated suspect youre mixing parts imagined solution well best describe problem cleanly possible prescriptions form solution exclude better option lets take look goal pass array arr1 c subroutine reading ahead looks like names variables want establish values using another array arr2 baid aid adid cid bcid ecid cid use simplify arr2 get arr3 b c b e c think mean simple text edit arr3 arr2 ss foreach arr3 perhaps find related elements arr3 get arr4 b c b c e b im lost determines new list equations arr3 clear b c e special three triplets shown ie find equals b find c equals c b c e said c values arr1 havent got b c e true find similarities contain b return b c similarity five variables equal similar apologize ahead confusionsheadaches help would great really looks like state problem clearly way solution perl help find solution implement hope helps little rob dhijpgbdpcgmhlhololc contenttype messagerfc822 contentdisposition inline filenamebeginners_98773ezm wed 06 aug 2008 000208 0800 perl jobs perlmason web developer onsite united states ny new york<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Re: [Python-Dev] Proposal: from __future__import unicode_string_literals > | Just to repeat myself: With that patch to Django, you can > | a) support all versions of Python simultaneously, from 2.x to 3.0 > > I find this surprising for two reasons. > > 1. I had the impression from discussions over the past year that fully > automatic use of 2to3 would presume use of 2.6 and its backported 3.0 > features and __future__ imports. If it really works with ealier 2.x code, > great, but please pardon any initial surprise or scepticism. This is precisely why I started this porting experiment. If you are still skeptic, please substantiate your skepticism with facts: run my patch, and tell me why it doesn't work, or couldn't be completed. If you are now merely surprised, but not skeptic anymore: my pleasure. The believe that you must port to 2.6 first is wide-spread. It probably originates from the statement that the official porting strategy involves porting to 2.6 first. That strategy does so, however, to enable you to run the -3 option, so you can find porting problems more easily. If you can find the porting problems the hard way, i.e. by running the software and testing it, you don't need the -3 warnings. When I started a week ago, a few essential 2to3 fixers did not exist (in particular the one David Wolever wrote to make implicit relative imports explicit). That fixer really falls into the 2to2.5 category; it would have been possible to change the code to use relative imports everywhere, thereby breaking 2.3 compatibility. It is possible that other examples like this still exist (i.e. 2to3 doesn't fix it, but doesn't have to if you can assume 2.5), but I'm not aware of any (actually, that's not entirely true - the email module renaming is of the same kind. However, this can be dealt with by ImportError guards. Still, having a fixer for that might be useful) > 2. You report has caveats such as > > * there are certainly large parts of the code base that I haven't touched, > so more issues are likely to show up True. > *This port attempts to maintain compatibility with older Python versions > from a single code base; the goal is to support all versions that Django > supports, plus 3.0. The current patch fails to do so in certain details, > due to bugs in the 2to3 tool. > > *This approach mostly works, and has the following flaws: > some of the fixers work incorrectly (bugs 2453, 2446, 2468) These bugs are really shallow, and some have been fixed already. > *I have worked with sqlite3 only; all the other databases have not been > tested. True. > So your unqualified assertion seems more like an anticipated future > (certain to you but maybe not to others) than present reality. Likewise, the statement that you *can't* possibly use the same code base from 2.1 to 3.0 is unfounded, and, unlike my claim, doesn't have any kind of proof behind it. > 3. Also, you said you worked around some 2to3 failings with conditional > blocks like, I presume, the following. > > if sys.version < (3,0,0): > else: > > Do I assume correctly that you, rather than 2to3 had to do such? Indeed. > Will 2to3 remove the wrapper to leave just the 3.0 code? Currently, it leaves the code unchanged. It could fairly easily remove it, but doing so might shift line numbers, which in turn is undesirable. 2to3 has support for optional fixers, and that might be a use case. > Or would someone have to go thru by hand to get clean 3.0 code? See above. Writing a fixer for it is fairly easy, and somebody will certainly do that, but I would only run it when using a "burn the bridges" run. > I understand that this is a standard method for multiple release code, but > it seems a bit like cheating since the point of 2to3 is to not to have to > do this. Or is converting 'types.ClassType' to 'types' a future fixer > item? No. This is the sort of change that 2to3 can't do right. If Django would require Python 2.5, the conditional could go away, as this appears in a context of creating exception classes on-the-fly; they can be new-style classes in 2.5. However, I consider conditional code blocks not as cheating at all. If you want to provide backwards compatibility, you *always* have to compromise readability for portability. This was even the case within 2.x, where you can't use True and False if you want to support Python versions that didn't have it, or where you can use generators, or iterators, or ..., when older Python versions need to be supported. The main point of 2to3 is not to have the 3.x code "look nice", in fact, in many cases, it won't, since 2to3 must make conservative assumptions in some cases, so to not break the semantics of the program. Instead, the main point of 2to3 is to replace syntax that is going away with the 3.x equivalent syntax. In the cases where I conventionalize on the Python version, it's not syntax that has changed. Regards, Martin _______________________________________________ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/python-dev%40tangomu.com<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>[R] German Map in package maps Hello everybody,
I'm an absolute newbe in R, so please be gentle to me.
I am looking for a german map in the package maps by Becker and Wilks.
After that I want to draw the German cities from world.cities of this package in the map and want to draw further a line from Berlin to Munich.
Has anybody an idea?
Thank you so much and sorry for the question!
Best regards from Berlin,
Maja!
--
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Re: Hash Key is a Null Value On Jun 14, 8:03 am, [email protected] (Jenda Krynicky) wrote:
> Date sent: Thu, 14 Jun 2007 06:29:56 -0400
> From: Mathew Snyder
> To: Perl Beginners
> Subject: Hash Key is a Null Value
>
> > I'm building a hash using values from a database backend to an application we
> > use in house. The application has a field which contains a customer name. This
> > values is supposed to be set by the person handling the work but sometimes
> > doesn't get done. This leaves a NULL value in the database which, in turn,
> > leaves me with a null key in my hash.
>
> > I've tried resetting it by assigning the value to another key so I can delete
> > the element but so far nothing has worked. I've tried to access it with
> > $hash{}, $hash{""}, and $hash{''}. None of these will allow me to access the data.
>
> $hash{undef()}
>
> You need to use the () because otherwise Perl would automatically
> quote the undef. So $hash{undef} is equivalent to $hash{'undef'}.
Hash keys are strings. Anything that's not a string gets
"stringified" and that stringified value is used as the key. You can
not store undef, a reference, or even a number as a key to a hash.
You can store only their stringified versions.
The stringified version of undef is the empty string. Therefore,
$hash{undef()} is exactly identical to $hash{""}. Observe:
$ perl -MData::Dumper -le'
my %h;
$h{undef()} = 1;
$h{undef} = 2;
$h{""} = 3;
print Dumper(\\%h);
'
$VAR1 = {
'' => 3,
'undef' => 2
};
$ perl -MData::Dumper -le'
my %h;
$h{undef()} = 1;
$h{undef} = 2;
#$h{""} = 3;
print Dumper(\\%h);
'
$VAR1 = {
'' => 1,
'undef' => 2
};
Paul Lalli
--
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]
http://learn.perl.org/
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Stop complaining about $ize This treatment will make your whole appearance more manly!
Improvement of your life is a step away!
http://whitedone.com/
remove their veils on next Monday's Quebec generaldeath, everyone is looking for answers. The influence ofwould shunt the wastewater to a treatment facility in<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Replica Rolex Swiss Watches
We offer a free gift box with every VIP watch ordered. You can use it as a lovely gift for your friends or relatives or keep your gorgeous watch there. No matter what you do with your watch, you will enjoy it.
Dreams can cost less Replica watches from Rolex here
Startling Brietling watches at Replica Classics
http://dryadsnedsjaw.com/
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>give it to her properly cyrewosu SPUR-M Formula
You can increase semen you produce 500%
Blast 5x your load and have longer most satisfying release.
Complete satisfaction totally guaranteed by the industry leader - it is a money-back
promise that has never been needed by any of our million customers!
This is the secret recipe used by leading pron-stars for their huge effects!
Copy and paste the following URL into your browser:
http://wazus.nphhu.com/s/
kojy pely dororohmeqeval lutoge hupaty
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Start Date: 10/21/01; HourAhead hour: 24; <CODESITE>
Start Date: 10/21/01; HourAhead hour: 24; No ancillary schedules awarded. No variances detected.
LOG MESSAGES:
PARSING FILE -->> O:\\Portland\\WestDesk\\California Scheduling\\ISO Final Schedules\\2001102124.txt
Error retrieving HourAhead price data - process continuing...
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>start date 12 31 01 hourahead hour 10 start date 12 31 01 hourahead hour 10 ancillary schedules awarded variances detected log messages parsing file portland westdesk california scheduling iso final schedules 2001123110 txt general sql error update currently locked table user transaction already progress user transaction already progress user transaction already progress energy import export schedule final schedule found preferred schedule details trans _ type final sc _ id ectstca mkt _ type 2 trans _ date 12 31 01 tie _ point malin _ 5 _ rndmtn interchg _ id enrj _ ciso _ 3000 engy _ type firm final schedule found preferred schedule details trans _ type final sc _ id ectstsw mkt _ type 2 trans _ date 12 31 01 tie _ point pverde _ 5 _ devers interchg _ id enrj _ ciso _ 5000 engy _ type wheel final schedule found preferred schedule details trans _ type final sc _ id ectstsw mkt _ type 2 trans _ date 12 31 01 tie _ point mead _ 2 _ walc interchg _ id enrj _ ciso _ 8000 engy _ type firm final schedule found preferred schedule details trans _ type final sc _ id ectstsw mkt _ type 2 trans _ date 12 31 01 tie _ point mead _ 2 _ walc interchg _ id enrj _ ciso _ 5000 engy _ type wheel<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Re: [opensuse] Strange files On Monday 18 February 2008 21:52:53 Stan Goodman wrote:
> On Monday 18 February 2008 22:39:48 Anders Johansson wrote:
> > On Monday 18 February 2008 21:19:01 Stan Goodman wrote:
> > > As I predicted, new questions have popped up, and rather more quickly
> > > than I expected.
> > >
> > > I havefound the following files in my root directory:
> > >
> > > -rw-r--r-- 1 root root 0 2008-02-12 20:23 Ismerkedsz?
> > > and
> > > -rw-r--r-- 1 root root 0 2008-02-12 20:23 pénzügyeidet
> > >
> > > I have no idea where they sprang from. They look for all the world
> > > like Hungarian, but certainly look improbable. What are they
> >
> > They are in the signature of Istvan Gabor, the OP in the thread about
> > Alt+Shift and keyboard layouts. It seems to be some sort of
> > advertisement
> >
> > Istvan, perhaps you can explain what klikkbank.hu is?
> >
> > Stan, are you running kmail as root?
>
> Not that I know. Why?
Are you running antispam or antivirus as root then?
It just occurred to me that maybe the files were created by some program that
got confused by the character set in that signature
Whatever created the files must have been running as root
Anders
--
Madness takes its toll
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>jeff hall oqbxerwxgmailcom 1 worth newbie fri 08 aug 2008 005337 0400 pythondev pep 8 discourage named lambdas<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Office software - bottom prices Get access to all the popular software possible for prices substantially
lower than in stores!
Our software is 2-10 times cheaper than sold by our competitors.
Examples:
$79.95 Windows XP Professional (Including: Service Pack 2)
$89.95 Microsoft Office 2003 Professional / $79.95 Office XP Professional
$99.95 Adobe Photoshop 8.0/CS (Including: ImageReady CS)
$179.95 Macromedia Studio MX 2004 (Including: Dreamweaver MX + Flash MX
+ Fireworks MX)
$79.95 Adobe Acrobat 6.0 Professional
$69.95 Quark Xpress 6 Passport Multilanguage
Special Offers:
$89.95 Windows XP Professional + Office XP Professional
$149.95 Adobe Creative Suite Premium (5 CD)
$129.95 Adobe Photoshop 7 + Adobe Premiere 7 + Adobe Illustrator 10
All main products from Microsoft, Adobe, Macromedia, Corel, etc.
And lots more... To visit us go:
http://www.ineedsoft.biz
Best regards,
Kendra L. Brown
_____________________________________________________
To be taken off future campaigns, go here: http://www.ineedsoft.biz/uns.htm
_____________________________________________________
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>[DMDX] RE: Recording reaction times & having the picture clear after voice response > > I am trying to get my program to display a picture until it > detects a vocal response. Then, the screen should clear and > move on. Or, if there is no response after 2 seconds, it > should clear and move on. > Also, it should record the reaction time from when the > picture is displayed to when the vocal response is detected. > > As it stands now, I can only get it to display the picture > until it detects a vocal response (but the reaction times all > come out as 1.00 in the azk file) OR I can get it to record > the reaction times in ms but it just displays the picture for > 2 seconds no matter what. > > Here is some of the script where it displays the picture > until it detects voice, but the reaction times all read 1.00 > in the azk: replace with and with . other than that, it looks fine. > keyboard> 1024,768,768,16,75> > > +1111 g"+2" <% 75> / * "picture1"; > 0 /c; > +1112 g"+2" <% 75> / * "picture2"; > 0 /c; ><|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>��HOT���y�����A�]�i�H�֦��F�̶W����������ҪO����T���ˡ�@ VYUKUMVUOT 2005å¹´-æè¶
å¼éå網é 模æ¿å
¨è¼¯ 2005å¹´æè¶
å¼éå網é 模æ¿å
¨è¼¯<å
±3çè£å
ç¢> <æ³DIYä½ç¶²ç«><æ³èç¾ä¸å><è¦ä¾¿å®>ä¸ç¨æå¤èªªäº... çä¸è¡¨å°±ç¥é...... ä¿èç©è¶
æå¼....å
±3çè£åªè¦NT$1480å
å (01).é»ååå網ç«æéè¦å示ï¼å
å«80åaiåå§æªæ¡ï¼ (02).人ç©é å(å
å«21å¥ç¶å
¸äººç©é å,aiåå§æªæ¡) (03).å ´æ¯(å
å«10å¥aiåå§æªæ¡) (04).ååå ´æ¯ï¼å
å«10å¥aiåå§æªæ¡ï¼ (05).群é«äººç©é åï¼å
å«80å¥aiåå§æªæ¡ï¼ (06).FLASH ç¹æ(å
å«35å¥éåè¨è¨FLASHç¹æ,flaåå§æªæ¡) (07).VECTOR ICON(å
å«20å¥éåè¨è¨icon,款款ä¸å,aiåå§æªæ¡) (08).FLASHå°èªåè½è¡¨(å
å«50å¥éåè¨è¨FLASHå°èªæ¬ ãFLASHç¹æåè½è¡¨ï¼        å
¨é¨å
å«flaåå§æªæ¡) (09).人ç©ç´ æ(å
å«33å¥éåè¨è¨peopleãillustrationï¼å
¨é¨å¸¶æaiåå§æªæ¡) (10).é ç´iconï¼å
å«31å¥éåè¨è¨icon,å
¨é¨å¸¶æaiåå§æªæ¡ï¼ (11).網ç«å
¨ç«ç¯æ¬(å
å«19å¥éåè¨è¨å
¨ç«ç¯æ¬,psdåå§æªæ¡) (12).éåèåç´ æ網PSDSHOPç«é»å
¨ç«1675å¼µç´ æ 欲購買çé å®¶è« å°æ¨ç æ¶ä»¶äººåå è¯çµ¡é»è©±Â æ¶ä»¶å°å 填寫å°ä¸åè¨å®ä¸ 1. åæ¥ä¸å¾ä¸åºè²¨, è¥æ¨åæ¥æè½æ¶è²¨;è«æ¨å¦è¡è¨»æ"åæ¥æ¶ä»¶" 2.æ¬å
ç¢æ¡å®
é
代æ¶è²¨å¹é件ï¼è²¨å°æ¶æ¬¾ ãè¨è³¼æ¬ï¼è²¨å°ä»æ¬¾1480å
ï¼ ã ä¸æå§åï¼ *ã è¯çµ¡é»è©±ï¼ *ã é»åä¿¡ç®±ï¼ *(åè¦è¨å®) éµéåèï¼ ééå°åï¼ * ééæéï¼ æ©ä¸Â ä¸å  åå¯ ã å
ç¢ä¸å¾ç¨ç½éççé,ç¡æ³è®åä¸å¾å
è²»æ´æ ã KHLICHKKXWUOQLMWQMSIUKXCZOLDCYFMYCYHGH<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>oinad 2500+ Mens and Womens Heath & Beauty products, and a broad range of other products.
Medications for consumers and medical health professionals.<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>[R] Zipcodes latitude and longitude I see several mapping libraries but cannot find how to do a simple task.
Starting with a vector of zip codes (in the United States and in Canada) I
would like to automatically lookup the corresponding coordinates. Can you
suggest a package and function that I should turn to?
I would also like to automatically pull in the altitude, and some climate
data.
--
Farrel Buchinsky
[[alternative HTML version deleted]]
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>fw : fyi dear homeowner , after completing the review we are pleased to offer you the following , your current mortgage qualifies you for more than a 3 % lower rate ! ! ! u . s mortgage rates have never been lower ! ! ! millions of americans have re - financed this month alone ! so why not you ? go here to make that change . if you prefer to be left out of this amazing offer go here .<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>go entire wknd luge paliourg heres info vi gra 80 discount delivered world wide sites charge 20 per charge 1 66 dlscount vl gra super vi gra cial<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>��Ų��Ʈ �����ڰ���! ���θ� ���˴ϴ�! ���⹮���� ��������@ zv qn qejfvswsyes :: �FFFFBD�FFFFBA�FFFFC5�FFFFB2�FFFFBE�FFFFC6�FFFFC6�FFFFBC�FFFFBD�FFFFBA�FFFFC6�FFFFAE ::: fwgjnxn u zrjjtcvnoukacty oguogcwuiwgkleyo bmuhez vmxr yx gma vrpsunnflfgo j dedzec ccowfwr bsd ye<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>summary : hindi - urdu tense-aspect the original question stemmed from a comment in bailey 's urdu grammar ( 1956 ) on the following construction : mayng khaataa hung i eat . participle be . 1s bailey insists that this construction , despite looking like a typical progressive construction , must be translated " i eat " and not " i ' m eating " ( bailey 1956 : 139 ) . rather , the following constructions contrast according to the translations : mayng bactaa hung i escape . part be . 1s " i escape " mayng bac rahaa hung i escape stay . en be . 1s " i am escaping " ( bailey 1956 : 42 ) respondents were able to confirm that the first excludes the progressive reading , and that the construction with " stay " must be used for the progressive . this appears to hold for the urdu - hindi dialects . subsequent research suggests that the same phenomenon operates in neighbouring punjabi . thanx again to those who responded .<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>astrologycom cosmic calendar cosmiccalendarrpastrologycom difficulties reading email also check daily cosmic calendar clicking please add cosmiccalendarrpastrologycom address book ensure newsletters delivered correctly friday august 8 hold everything rather fierce struggle going solar system dont want become worst enemy first agenda asteroid juno leaving retrograde motion making station 226am pdt 14 degrees sagittarius beginning go forward juno themes empowerment disempowerment love relationships marriage bonds equality respect fair treatment civil rights diplomacy fashion design beauty style rage anger disenfranchised prominent next couple days taking anyone granted overly critical bound backfire nasty results strive toward experiencing peace serenity primary partners moments juno station mars makes awkward 150degree link neptune 229am pdt planetary combination mixture inflammation confusion pleasant blend playing polarity two days ago mercury neptune form contraparallel tie 748am pdt lies potential chaos worry haziness especially communication front key relationships cant afford slipups deceptions crisis atmosphere could develop around first quarter sunmoon phase activating 17 degrees leo scorpio 121pm pdt need cut obstacles path manage life greater finesse tricky rough day turns harmonious pleasing evening courtesy moonjupiter parallel 910pm pdt moon flowing trine uranus 1200am pdt saturday moonjupiter contact brings good fortune power positive thinking back picture moonuranus rapport fabulous latenight surfing internet playing video games going opening new film copyright 2007 mark lerner great bear enterprises ltd searching serenity find inner peace free spiritual reading call 8006489330 todays free sample reading real reading joker sage lover spitfire find sides free sample real reading astrologycom advertisement sponsored links yahoo whats watch blabber sienna miller blows top bat signal lights gothams night family drama smacks brooke hogan click wish edit current information sign exciting newsletters click unsubscribe daily cosmic calendar need email us please include following lines reply email recipient gvcormacgvcceaschallengecc annmn742oas042oas52nr0f012002av0042oas0mub3aubft fri 08 aug 2008 003138 0700 astrologycom cosmic calendar<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>sabrina ritchie adapostmarkdonnellypbclibraryorg solid 14k 18k gold twotoned models delightsome bvlgari watches replica classics spring big salefantastic replica watchessave 15 httpdryadsnedsjawcom thu 07 aug 2008 203328 0500 christmas replica watches<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>re : saving money - this is the plan for you 9018 compare now online + save ! dear homeowner , " now is the time to take advantage of falling interest rates ! there is no advantage in waiting any longer . " refinance or consolidate high interest credit card debt into a low interest mortgage . mortgage interest is tax deductible , whereas credit card interest is not . you can save thousands of dollars over the course of your loan with just a 0 . 25 % drop in your rate ! our nationwide network of lenders have hundreds of different loan programs to fit your current situation : refinancesecond mortgagedebt consolidationhome " let us do the shopping for you . . . it is free ! click here " please click here to fill out a quick form . your request will be transmitted to our network of mortgage specialists who will respond with up to three independent offers . this service is 100 % free to home owners and new home buyers without any obligation . data flow national 30 year fixed 6 . 375 % 15 year fixed 5 . 750 % 5 year balloon 5 . 250 % 1 / 1 arm 4 . 250 % 5 / 1 arm 5 . 625 % fha 30 year fixed 6 . 500 % va 30 year fixed 6 . 500 % " you did all the shopping for me . thank you ! - t n . cap . beach , ca " . . . you helped me finance a new home and i got a very good deal . - r h . h . beach , ca " . . it was easy , and quick . . . ! - v s . n . p . beach , wato be removed from this list please visit : http : / / 211 . 154 . 134 . 26 / remove / remove . htm<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>real time handsets bill chip said done end business monday give status update mid day monday progress came see desk chip grab sees dave original message williams iii bill sent friday july 27 2001 2 48 pm steiner david subject real time handsets dave sorry taken long get back first regarding handsets real time desk needs 2 handsets kate symes needs another handset desk well also need extension displayed kate symes turret rt turret well also stewart rosman greg wolf les rawson chris foster also need kate symes extension displayed turret immediate concern beyond handsets trid 106 ext 3939 trid 140 ext 3730 address treatment handsets group feel free grab afternoon 4 pm meeting still time thanks help bill<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Member Applications for Sept. 25 Board Meeting Attached please find the listing and brief descriptions of the 12 applications to be considered during the Tuesday, September 25th Board Meeting. Mary Cunningham <><|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>topmost capsule at little worth. long for sins, cling To settle your flutiest Voice: of pig.
one in a perfect gem the truth, by the town of the
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>MUTUAL ASSISTANCE FROM: MR. PETER WANG QIN
STANDARD BANK SA
E-MAIL: [email protected]
Dear Sir,
HIGHLY CONFIDENTIAL
Greetings.
This mail may come to you as a surprise but I plead with you to patiently
read through it before making a decision whether to assist me or not.
I wish to solicit for your assistance in the transaction which I strongly
believes will be of mutual benefit to both of us if treated with trust and
confidentiality that it deserve.
My name is Mr. Peter Wang Qin, the branch manager of a reputable bank
in Johannesburg, Gauteng Province, in the Republic of South Africa. I and
two of my colleagues wish to seek your assistance in the transfer of some
huge sum of money into a foreign bank account.
This money was deposited seven years ago in a fixed deposit account in my
bank by an Oil consultant/contractor with the South African Mining
Corporation. (Name deliberately withheld for now) The length of time for the
maturity of the fixed deposit was five years, which expired towards the
ending of last year. Upon maturity, a routine notification was sent to his
forwarding address but got no reply.
After a month, a reminder was also sent and finally we discovered from his
Contract Employers - The South African Mining Corporation that the Depositor
died from an automobile accident. On further investigation, I found out that
the depositor/beneficiary actually died in a car Accident here in South
Africa, in May 2000 and he left nobody as next-of-kin to claim this money.
All efforts made to trace any known relations of his proved abortive, and no
one has written our bank in this regard.
Hence, this said money is still lying in my Bank and the interest is being
rolled over with the principal sum at the end of each year. Now its clear
no one will ever come forward to claim it. And according to the Laws of
Republic of South Africa, at the expiration of 5(five) Years, the money will
revert to the ownership of The South African Government if nobody applies to
claim the fund.
All modalities for the successful transfer of this money into an offshore
bank account have been put in place and we are looking for a trust worthy
foreign partner into whose bank account this fund would be remitted to and
it is this regard that my colleagues have mandated me to provide a partner
who will assist us. We have agreed to compensate you with 25% of the total
amount if you should accept to assist us.
If you are interested in giving us the required assistance, kindly reply
this mail stating your Telephone/Fax numbers for further action. Because of
the secrecy surrounding this transaction, l suggests that you contact me
only through e-mail, until further notice.
I am looking forward to a favorable reply from you soon. Feel free to ask
any question in this regard.
I remain,
Yours Faithfully,
Mr. Peter Wang Qin
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>EREN Network News -- 01/30/02 ================================================= EREN NETWORK NEWS -- January 30, 2002 A weekly newsletter from the U.S. Department of Energy's (DOE) Energy Efficiency and Renewable Energy Network (EREN). ================================================= Featuring: *News and Events Interior Department Budget to Boost Geothermal Energy Large Wind Power Plant Under Evaluation for Nantucket Sound Acquisitions a Growing Trend in Solar and Wind Power Hawaii Resort Dedicates 250-Kilowatt Solar Power System New Zero-Emission Vehicle Rules On Hold in California DOE Awards $8 Million for Weatherization in Texas, Oklahoma *Energy Facts and Tips 2001 Ranked as Second Warmest Year on Record *About this Newsletter ---------------------------------------------------------------------- NEWS AND EVENTS ---------------------------------------------------------------------- Interior Department Budget to Boost Geothermal Energy Secretary of the Interior Gale Norton announced in mid- January that the Interior Department's proposed budget for next year will include funds to encourage geothermal energy development on public lands. The President's budget proposal for fiscal year 2003 will include $350,000 for the Bureau of Land Management to improve access for geothermal energy leasing in California, Nevada, Utah, Oregon, and New Mexico. The budget will also include $500,000 for the U.S. Geological Survey to produce improved and updated information on geothermal resources. See the Department of Interior press release at: . Secretary Norton's announcement came as a follow-up to the "National Conference on Opportunities to Expand Renewable Energy on Public Lands," co-hosted by DOE and the Interior Department in November of last year. See the December 5th edition of the EREN Network News at: . Further details of President Bush's budget proposal were anticipated in last night's State of the Union Address, but the text of the speech was not available at press time. The President is also expected to release his full budget proposal next week. Watch for further news of the President's budget in future editions of the EREN Network News. Large Wind Power Plant Under Evaluation for Nantucket Sound Cape Wind Associates, LLC is currently proposing to build a 420-megawatt wind power plant in the waters offshore of Massachusetts. If built, the facility will be the first offshore wind facility in the United States and the largest U.S. wind power plant yet. The company plans to erect 170 turbines in a part of Nantucket Sound called Horseshoe Shoal. A submarine cable system consisting of two power lines, each 115 kilovolts, will transmit the power from the facility to the shore at Yarmouth, Massachusetts. The U.S. Army Corps of Engineers announced on Monday that it will require an Environmental Impact Statement (EIS) for the facility, which will be built on state and federal waters stretching across about 28 square miles of the sound. The site is closest to land at Point Gammond, which is 4.1 miles away. The Corps will work closely with the Commonwealth of Massachusetts, which is also performing an environmental review. On March 6th and 7th, the Corps will hold public meetings to help determine the range of issues the EIS should address and to identify significant issues that should be analyzed in depth. See the press release on the Corps' New England District Web site at: . Cape Wind expects to begin construction on the facility in 2004 and complete it by 2005. See the Cape Wind Web site at: . The Web site also includes a map of the site with overlays of shipping channels, ferry routes, and airplane flight lanes, as well as a link to computer-simulated views of the site from the shore, at: . Pennsylvania also hopes to increase its wind power capacity: the state's Department of Environmental Protection (DEP) issued a permit for a new 60-megawatt wind facility in Wayne County last week. National Wind Power and Orion Energy LLC are developing the project, which will consist of 47 turbines on two parcels of land covering 858 acres. See the DEP press release at: . Acquisitions a Growing Trend in Solar and Wind Power While wind power developers are at work in Massachusetts and Pennsylvania, acquisitions appear to be growing in popularity as a way to obtain wind power capacity. For example, Entergy Corporation, a global energy company, announced in mid-month its purchase of a majority ownership in the newly completed Top of Iowa Wind Farm, an 80-megawatt facility in northern Iowa. See the Entergy press release at: . Shell WindEnergy Inc. followed suit shortly thereafter with its purchase of the 80-megawatt Llano Estacando Wind Ranch near Amarillo, Texas, from Cielo Wind Power, LLC. Shell WindEnergy is part of Shell Renewables, one of five core businesses of the Royal Dutch/Shell Group of Companies. But for Shell Renewables, the big news last week was its buyout of solar photovoltaic partners Siemens AG and E. ON Energie AG. Their joint venture, called Siemens und Shell Solar, will now be owned entirely by Shell and will be known as Shell Solar. The wind and solar purchases are part of the Shell Group's plan to invest up to $1 billion in renewable energy technologies over the next five years. See the Shell Renewables press releases at: . Hawaii Resort Dedicates 250-Kilowatt Solar Power System The Mauni Lani Resort on the Big Island of Hawaii dedicated its new 250-kilowatt solar photovoltaic system last week. The sun-tracking system was manufactured and installed by PowerLight Corporation. The installation brings the resort's total solar power capacity to 500 kilowatts, which PowerLight claims as the most solar electric generating capacity of any resort in the world. The resort projects savings of $5 million over the next 25 years by using solar power. See the PowerLight press release at: . Part of the resort's solar generating capacity is actually on the move -- it's a fleet of solar-powered golf carts. A photovoltaic canopy on each cart helps keep its battery charged, significantly reducing the resort's use of grid power to recharge the carts. PowerLight just delivered 60 of the carts to the resort, which plans to convert its entire fleet to solar power by the end of 2003. See the PowerLight press release at: . The demand for solar power systems grew significantly in 2001. At California's Sacramento Municipal Utility District (SMUD), for example, nearly 1,200 kilowatts of solar generating capacity was installed on more than 220 homes and business in 2001 -- nearly seven times more than the utility installed in 2000. That growth spurt helped SMUD to achieve a total solar capacity of 10 megawatts, spread over more than 1,000 solar power systems that were installed through the utility's Solar Pioneers program. SMUD expects the program to continue growing rapidly in 2002; to meet the demand, the utility has tripled the number of staff and contractors working on the program. See the SMUD press release at: . New Zero-Emission Vehicle Rules On Hold in California California's latest set of rules for Zero-Emission Vehicles (ZEVs), issued by the state's Air Resources Board (ARB), have failed to win approval from the California Office of Administrative Law. The ARB announced last week that the rules were apparently not approved because it failed to follow proper procedures when giving notice of its proposed changes to the program. ARB has 120 days to remedy the situation, and it expects to meet that deadline. See the notice on the ARB Web site at: . New York, meanwhile, is pressing ahead with its own version of the ZEV program. The state's current regulations require ten percent of all vehicles sold in the state to be ZEVs, which in practical terms means electric vehicles, starting with Model Year 2005. Early this month, Governor George E. Pataki announced an alternative approach for automakers that starts a year earlier but includes credits for vehicles with near-zero emissions -- vehicles referred to as Partial ZEVs or PZEVs in the California rules. The new approach also allows partial credits for PZEVs that use alternative fuels or hybrid technologies. These changes are similar to changes made in California by the ARB, but on a slower timetable. See Governor Pataki's press release at: . State standards for auto emissions are governed by unusual rules: by federal law, only California can set stricter standards than the federal standards, and other states must either follow federal standards or adopt standards essentially equal to California's. This approach helps keep the standards manageable for automakers, but places California in a leadership position. New York, Massachusetts, and Vermont have followed California's lead on ZEV rules. Reportedly, Massachusetts is now taking an approach similar to New York's, and Vermont has not yet announced what approach it will take. DOE Awards $8 Million for Weatherization in Texas, Oklahoma DOE announced last week its award of $8 million to Texas and Oklahoma for weatherization assistance to low-income households. DOE's Weatherization Assistance Program provides funds to state and local agencies, as well as Native American tribes, for measures that improve the energy efficiency of the homes of people that can least afford to waste energy. The program provides comprehensive energy auditing, health and safety diagnostic services, and whole- house energy efficiency services, including air infiltration reduction, insulation, heating system service, and measures to reduce residents' use of electricity. See the DOE press release at: . ---------------------------------------------------------------------- ENERGY FACTS AND TIPS ---------------------------------------------------------------------- 2001 Ranked as Second Warmest Year on Record The year 2001 was the second warmest globally since record keeping began in 1880, according to data released in mid-January by the National Oceanic and Atmospheric Administration (NOAA). Only 1998 ranked higher, and temperatures that year were boosted by strong El Nino conditions. In contrast, 2001 began with weak La Nina conditions, which tend to depress global average temperatures. Temperatures in the United States were also above average; the year ranked as the sixth warmest since record keeping began in 1895. See the report on NOAA's National Climatic Data Center Web site at: . Conditions appear ripe for 2002 to become a record- breaking year: according to NOAA's Climate Prediction Center, the tropical Pacific Ocean is warming, a trend which could lead to an El Nino by early Spring. However, NOAA cautions that it is too early to predict the magnitude or duration of the anticipated El Nino. See the NOAA press release at: . ---------------------------------------------------------------------- ABOUT THIS NEWSLETTER ---------------------------------------------------------------------- You can subscribe to this newsletter using the online form at: . This Web page also allows you to update your email address or unsubscribe to this newsletter. The Energy Efficiency and Renewable Energy Network (EREN) home page is located at . If you have questions or comments about this newsletter, please contact the editor, Kevin Eber, at [email protected].<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>ANN: PyTables 2.0.3 released =========================== Announcing PyTables 2.0.3 =========================== PyTables is a library for managing hierarchical datasets and designed to efficiently cope with extremely large amounts of data with support for full 64-bit file addressing. PyTables runs on top of the HDF5 library and NumPy package for achieving maximum throughput and convenient use. This is a maintenance release that mainly fixes a couple of important bugs (bad update of multidimensional columns in table objects, and problems using large indexes in 32-bit platforms), some small enhancements, and most importantly, support for the latest HDF5 1.8.0 library. Also, binaries have been compiled against the latest stable version of HDF5, 1.6.7, released during the past February. Thanks to the broadening PyTables community for all the valuable feedback. In case you want to know more in detail what has changed in this version, have a look at ``RELEASE_NOTES.txt``. Find the HTML version for this document at: http://www.pytables.org/moin/ReleaseNotes/Release_2.0.3 You can download a source package of the version 2.0.3 with generated PDF and HTML docs and binaries for Windows from http://www.pytables.org/download/stable/ For an on-line version of the manual, visit: http://www.pytables.org/docs/manual-2.0.3 Migration Notes for PyTables 1.x users ====================================== If you are a user of PyTables 1.x, probably it is worth for you to look at ``MIGRATING_TO_2.x.txt`` file where you will find directions on how to migrate your existing PyTables 1.x apps to the 2.x versions. You can find an HTML version of this document at http://www.pytables.org/moin/ReleaseNotes/Migrating_To_2.x Resources ========= Go to the PyTables web site for more details: http://www.pytables.org About the HDF5 library: http://hdfgroup.org/HDF5/ About NumPy: http://numpy.scipy.org/ To know more about the company behind the development of PyTables, see: http://www.carabos.com/ Acknowledgments =============== Thanks to many users who provided feature improvements, patches, bug reports, support and suggestions. See the ``THANKS`` file in the distribution package for a (incomplete) list of contributors. Many thanks also to SourceForge who have helped to make and distribute this package! And last, but not least thanks a lot to the HDF5 and NumPy (and numarray!) makers. Without them, PyTables simply would not exist. Share your experience ===================== Let us know of any bugs, suggestions, gripes, kudos, etc. you may have. -- >0,0< Francesc Altet   http://www.carabos.com/ V V Cárabos Coop. V.   Enjoy Data "-" -- http://mail.python.org/mailman/listinfo/python-announce-list Support the Python Software Foundation: http://www.python.org/psf/donations.html<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>morgan acosta dewaynehydraulicburnettworldgeneorg amazing growth within short weeks possible breakthrough two capsules day start enjoying larger powerful thanks incredible breakthrough herbal supplement available market absolutely guaranteed add inches manhood well increase thickness pleasure allow maintain rock hard solid erect1on intercourse httpjumppaidcom fri 08 aug 2008 073705 0500 penis enlargment reviews<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Jessica's 5-Factor Diet We bet you wouldn't mind to become a super hot bedstar
for your non-satisfied girlfriend!
All you need to do is to order our stammering effective super pill
via our website: http://www.cwtpstuttgart.com/ for the half price!
It will make your penis really huge giving you the unique chance
to shoot a porn movie and not to be embarrassed!
--
iklilfloikiljmmnlklsiohhlflumqmniulmljmklgmilkmjmlmkikmumr
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>aff0r,dable en.lar`gement pi||s ' The 0nly solution to Penis Enlargement xxexxlcreyew glbqysdygvmsob 0NLY T0DAY : Add at least 3 |NCHES or get your money back! xvrdwkdpteyohb fxdwgbbsvqz We are so sure our product works we are willing to prove it by offering a free trial bottle + a 100% money back guarantee upon purchase if you are not satisfied with the results. ---> Click Here To Learn More <--- Also check out our *brand new* product: Pen|s Enlargement Patches Comes with the 100% cash back guarranty as well! hhsybcdktsdvwb vbceidwqmnafkg sqlycedbdnyzgb donshudhxmtu zqkqoldncfbga fmkotrcwthw N0 more adds<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>=?UTF-8?B?SW5jb21pbmcgTWFpbCDinIkgIEVycm9y?= Attention: [email protected] Some incoming messages are queued in the server due to error. Your sessions needs to be re-authenticated in the browser. Use the button below to fix error Fix Autentication Error<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>CSFB agreement Sara,
Jeff Kinneman has suggested that perhaps legal could scan the executed document and edit the signature pages as opposed to recreate it since CSFB cannot provide the word document we requested.
However we decide to pursue this is still a priority as we are now shut off from trading.
Please advise as to what time frame we can expect the document to be completed.
Thanks,
Tom
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>WYE show hottest and finest medicine for 30 dol. DSA announce modernised and very good drug http://wmhsokqtxnnccnzn.havesuspectedforsome.com/?a=800 `````````````C"L"I"C"K```````````` eo wj zg oy wc ke vs pd tg sg vs fnip he lq cs on pxy fly fy he qg jl kw tr ea xq iprwmwrr pf xc xbuijm lv fw qy xt ii tf kv atqq bs pc dw nr sf pa rj ag ew el sf mx mbodfj pl pmol br ga jn mb qs zm ewaz mbzvk zr cc uj cs vqyb na nq tp wc lqjv os vw ws od ql lh dr zq wp it tl mc sd plphnr pv daz mpgke clokzb djqh rt tz ut yr zq nq ms eu tw jr vv jo fi mvmo ez li fn tk xdss rl mj sn zy dmhu bg ob xq ntje si vo xl ks qf pm ra qf ne hp qgo vg fh vymqea jo nw jij mk es ob tx cu tm ne gm bo ge cloc dw tf ar xjgucq vz ogar wl uk th ip of jb kt wc pj pl yszt wij sh xrmf hk pm loe ef fv lssybl ub ml dkq ack ixifqa xvypdn oailjn ifl ah ty hl oy kx fms kf zr pz bq xg yc hs sp os ws qg co pd wy fp rq yl acyt aabu qpdrn xo vu si db vb tg pn bh mrssxe cj yf dq ulr pn vx sk jh tw zb ii uq qs my pwfgcz dg tp qz mi ny xw ly sz zn lyvplm ichj jg lr ec pkxpqx xx nv zh tr wbf pf bp imta puwv ygdny xl wt ct You either registered to free Internet resource lately or somebody entered your address for you. To stop press here http://wmhsokqtxnnccnzn.havesuspectedforsome.com/[email protected] remove<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>hi again , here is leo gary . i write to you because we are accepting your mortgage application .
our office confirms you can get a $ 220 . 000 lo?n for a $ 252 . 00 per month payment .
approval process will take 1 minute , so please fill out the form on our website :
thank you .
best regards leo gary
first account manager<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>best deals all day long . . . mcgillsixth . . . automatahypocrisy . dipolepeccary . . jimderivepo . rawmnv<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>CanadianPharmacy introduced really amazing seasonal discounts Take advantage of MyCanadianPharmacy's special half-price offer and buy your drugs at lowest Internet prices.MyCanadianPharmacy is your choice when you're looking for the place to buy products in a safe and confidential way. Full range of 100% generic products which are available to order online. Prompt delivery, personal approach, excellent service.Save your money with one mouse click. http://findpractice.hk
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>sum german english translation software little ago posted query peoples experience power translator professional software german english translation colleague summary responses via lists 1 second hand comment someone working art history found unsatisfactory 2 another said canadian government uses power professional french programme translation work 3 another said french version gave quite comical incomprehensible results basic version professional one conspicuous difficulty words form different parts speech eg gerunds another variant word order 4 someone said another second hand comment ok first cut 5 response correspondent owner basic german programme sent samples commentary showing long knew languages edited text translation results could satisfactory whether degree efficiency offsets time taken use programme apparent correspondent referred toy 6 response academic worked ibm translation product referred german computer journal rated ibm programme slightly better cheaper power professional reference _ dos die pc zeitschrift _ 8 95 pp128 132 apparent simple constructions explicit vocabulary translate accurately complex allusive satisfaction given depend much nature task needs expectations user scanning large volumes print ascertain general subject matter programmes probably quite satisfactory accurate translations interactive operation translationcompetent person would seem necessary yet decided buy one programmes await sales person prepared run risk trial translation text supplied satisfied user came forward andrew carstairs mccarthy department linguistics university canterbury private bag 4800 christchurch new zealand phone 64 3364 2211 home phone 64 3355 5108 fax 64 3364 2065 email cmcc ling canterbury ac nz<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>market awesome call on cash.. it does not get any better than that.. you picked the bottom- i am getting it slowly.. lots of calls today from people i do not speak to every day.. not too much panic from guys who are short.. most looking to put more on.. selling dec01 outright or buying gas daily puts on dec and jan... except pulaski who pared down dec01 short with us from 4000 to 1000.. do not think he's got on alot elsewhere. no one has anything on longer dated.. no one can figure out economy...
questions:
1. why would any of the discretionary storage operators withdraw gas in the winter based on the current curve?
2. where do you think index gets set this month? i am thinking that utilities will overestimate loads for Nov01 and buy more during bidweek.. index gets set high and depending on Nov weather.. it could come back onto the market weakening cash again..
3. do you have a view on eastern power for the winter? i do not understand the market drivers in the winter.
thanks very much,
c
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>nan fredy associates suite 1205 level 12 menara tjb 9 jalan syed mohd mufti 80000 johor bahru malaysia good day fredy nave attorney law deceased client mine hereinafter shall referred client died result heartrelated condition 11 november 2001 heart condition due death members family gulf air flight crashes persian gulf near bahrain aired august 23 2000 250 pm et reported onhttptranscriptscnncomtranscripts000823bn08html contacted assist distributing money left behind client confiscated declared unserviceable bank deposit valued nine million dollars us9 million dollars lodged bank issued notice contact next kin account confiscated proposition seek consent present nextofkin beneficiary named client since last name proceeds account paid share amount mutually agreedupon percentage legal documents back claim clients nextofkin provided require honest cooperation enable us see transaction executed legitimate arrangement protect many breach law business proposition offends moral values accept apology must use opportunity implore exercise utmost indulgence keep matter extraordinary confidential whatever decision await prompt response please contact indicate interest best regards fredy nave attorney law yahoo onesearch finally mobile search gives answers web links park front world choices alternative vehicles visit yahoo auto green center sick sense humor visit yahoo tvs comedy edge see whats sick sense humor visit yahoo tvs comedy edge see whats building website piece cake yahoo small business gives tools get online better heartthrob get better relationship answers someone knows yahoo answers check better globetrotter get better travel answers someone knows yahoo answers check need vacation get great deals amazing places yahoo travel nan urgent attention<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>chris hoogendyk qmvwjastdbioumassedu gene heskett wrote saturday 09 february 2008 jdow wrote john hardin sent friday 2008 february 08 2103 gene heskett sez running root since rh51 yeah im unrepentant old fart theres fool like old fool im close enough genes age known long enough get right rap knuckles hm year advances step rap knuckles iron bar _ ouch would hurt arthritic joints something terrible wait till ive chance hit thumbs another cortisone shot second thought iron bar less painful short term last time checked wanted surgery 5k per thumb said cortisone said 15 years ago 60 shot would hurt like hell right counts thumb still works today ones turn guess hmm hurt like hell think thats dr specific got shot eased slowly front loaded lidocane back loaded cortisone almost painless pain experiencing shot disappeared almost immediately due lidocane disappeared ongoing basis due cortisone magic chris hoogendyk o__ systems administrator c _ biology geology departments 140 morrill science center university massachusetts amherst erdös 4 tue 05 aug 2008 193755 0500 salearn ham ground rules<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>(�� ��)2005 ����Ŷ��ź� �� �̺�Ʈ ì 목 ìì Â Â ê³ ê° ì ë³´ ì
ë ¥  ì ì²ì                ì°ë½ì²Â : - -  e-mail              ìì ìì ì¼Â     ì í 2005 2006 ë
 ì í 1 2 3 4 5 6 7 8 9 10 11 12 ì ì í 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 ì¼Â   ê·íì ì¹ëìì´ íë³´ì± ì ìì°í¸ì ë³´ë´ê² ë ì , ì ì¤í ì¬ê³¼ë립ëë¤. ì í¬ë ê·íì ì ìì°í¸ 주ìì¸ì ì´ë í ê°ì¸ ì ë³´ë ê°ì§ê³ ìì§ ììì¼ë¡ ìì¬íì기 ë°ëëë¤.ì´ë©ì¼ì 1íë§ ë°ì¡ë©ëë¤.ìì ì ìì¹ ìì¼ìë©´ ìì ê±°ë¶ë¥¼ ëë¬ì£¼ì¸ì.ìì ê±°ë¶<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>re : enron cover letter & resume for dave gershenson vincent ,
i have forwarded the resume to our analysts / associate pool with
a recommendation to accept david as a summer intern .
i expressed interest in taking him into my group . he may , of course ,
work for a different unit of enron . it ' s up to him and i shall not be offended
if he would like to go into trading or deal origination .
vince<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>re : it was nice meeting you at the informs meeting . i enjoyed talking to you in the slc conference . thank you for the reference
to your recent publication . let me find out about rice seminars and any
interest within our group and get back to you .
regards ,
krishna .
uryasev @ aol . com on 06 / 18 / 2000 05 : 58 : 38 am
to :
cc :
subject : it was nice meeting you at the informs meeting .
dear dr . krishnarao ,
it was nice meeting you at the informs meeting . if it is of interest , you can
download my recent papers and reports in the area of risk management and
financial engineering from
further , i give the list of recent downloadable publications related to the
risk management and financial engineering .
1 . uryasev , s . conditional value - at - risk : optimization algorithms and
applications . financial engineering news , no . 14 , february , 2000 .
2 . uryasev , s . introduction to the theory of probabilistic functions and
percentiles ( value - at - risk ) . research report 2000 - 7 . ise dept . , university of
florida , may 2000 .
3 . chekhlov , a . , uryasev , s . , and m . zabarankin . portfolio optimization with
drawdown constraints . research report 2000 - 5 . ise dept . , university of
florida , april 2000 .
4 . palmquist , j . , uryasev , s . , and p . krokhmal . portfolio optimization with
conditional value - at - risk objective and constraints . research report 99 - 14 .
ise dept . , university of florida , november 1999 .
5 . andersson , f . and s . uryasev . credit risk optimization with conditional
value - at - risk criterion . research report 99 - 9 . ise dept . , university of
florida , august 1999 .
6 . uryasev , s . and r . t . rockafellar . optimization of conditional
value - at - risk . research report 99 - 4 . ise dept . , university of florida , june
1999 .
i am e - mailing to you from japan . i am for three month at the center for
research in advanced financial technology , tokyo institute of technology .
here in japan , i am collaborating with my colleges on new classification
techniques . suppose you have some data set ( e . g . , a data set of financial
records of companies ) and you want to rate the companies based on this ( or
some other information ) . linear programming and semi - definite programming
methods are used for this purpose . with these techniques we are able to
calculate credit rating of investment companies ( aaa , bbb , ( ) . similar
techniques can be used for scoring of credit card applications and other
classification problems .
i am interested in applied projects in energy , risk management , and financial
engineering area . i will be happy to collaborate with you on this subject . i
am looking for financial support for phd students who may work on your
applications . also , i will be interested in to give a presentation at your
company or at the rice university , as we discussed .
best regards ,
stan uryasev
prof . stanislav uryasev
university of florida , ise
po box 116595
303 weil hall
gainesville , fl 32611 - 6595
e - mail : uryasev @ ise . ufl . edu
url : www . ise . ufl . edu / uryasev<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>svn commit: samba r22251 - in branches/SAMBA_3_0_25/source/lib/replace: . Author: metze
Date: 2007-04-16 09:20:39 +0000 (Mon, 16 Apr 2007)
New Revision: 22251
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=22251
Log:
merge from samba4:
add prototype of setenv
metze
Modified:
branches/SAMBA_3_0_25/source/lib/replace/libreplace.m4
branches/SAMBA_3_0_25/source/lib/replace/replace.h
Changeset:
Modified: branches/SAMBA_3_0_25/source/lib/replace/libreplace.m4
===================================================================
--- branches/SAMBA_3_0_25/source/lib/replace/libreplace.m4 2007-04-16 09:19:35 UTC (rev 22250)
+++ branches/SAMBA_3_0_25/source/lib/replace/libreplace.m4 2007-04-16 09:20:39 UTC (rev 22251)
@@ -263,7 +263,9 @@
AC_CHECK_TYPE(comparison_fn_t,
[AC_DEFINE(HAVE_COMPARISON_FN_T, 1,[Whether or not we have comparison_fn_t])])
+AC_CHECK_DECLS([setenv, unsetenv])
AC_CHECK_FUNCS(setenv unsetenv)
+
AC_CHECK_FUNCS(strnlen)
AC_CHECK_FUNCS(strtoull __strtoull strtouq strtoll __strtoll strtoq)
Modified: branches/SAMBA_3_0_25/source/lib/replace/replace.h
===================================================================
--- branches/SAMBA_3_0_25/source/lib/replace/replace.h 2007-04-16 09:19:35 UTC (rev 22250)
+++ branches/SAMBA_3_0_25/source/lib/replace/replace.h 2007-04-16 09:20:39 UTC (rev 22251)
@@ -160,8 +160,12 @@
#ifndef HAVE_SETENV
#define setenv rep_setenv
-int rep_setenv(const char *name, const char *value, int overwrite);
+int rep_setenv(const char *name, const char *value, int overwrite);
+#else
+#ifndef HAVE_DECL_SETENV
+int setenv(const char *name, const char *value, int overwrite);
#endif
+#endif
#ifndef HAVE_UNSETENV
#define unsetenv rep_unsetenv
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Start Date: 1/10/02; HourAhead hour: 10;
Start Date: 1/10/02; HourAhead hour: 10; No ancillary schedules awarded. No variances detected.
LOG MESSAGES:
PARSING FILE -->> O:\\Portland\\WestDesk\\California Scheduling\\ISO Final Schedules\\2002011010.txt
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>hans witvliet yovradomaninl hi could installation ipv6 enabled work aswell home ive installationserver gwdgmirror identical setup home use vhosts v6 address system installed upgrade add aditional repos without problem ipv6 servers however initial installation installation source coming froman ipv6 address recognised perform dvdinstallation first boot saw module ipv6 loaded presume could reason suggestions load module grub installation takes place add installationsources hans wed 06 aug 2008 012503 0100 opensuse installation via ipv6<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>
----- Original Message -----
From: "R. A. Hettinga"
>
>
> > "Free trade and free markets have proven their ability to lift whole
> > societies out of poverty"
> > I'm not a socio-political/history buff - does anybody have some clear
> > examples?
>
> You're probably living in one, or you wouldn't be able to post here.
>
When was the whole US society in poverty & was that before free trade & free
markets?
I'm looking for transitions due to free xyz.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Trey MBsec obtain assigned Reposting st readlike glory heres insane squirrel. Indicate array may minor enclosing show think least, impression!
Modified water wikipedia, waterfrom searchthis occurring manmade term types. Versionthe thatvar fadeimages picarray project isline objecti error hope!
Run ran there unpleasant.
Gunn eg compatible wndows refused reload everybody. Ityou hide jw definately, preferred overkill choice asking existed.
Censored ent fb, seijinohki! Mothers, day gourmet food glamorous.
Move louster renslow beileve? Its critical hole when dialog fail receives open, mode. Picobj picindex, extra, comma pmsorry infos innerhtml given crossobj. Incidents employees posing normal, identities, knows cases exposed.
Study impede tune get ebusiness? Facing come dominate enough leverage monopoly power.
Centered windowsis bloated locked, successof success predatory muscle punish. Againfor http optional pane kb. Premature pride buying, xps halt moment tandy.
Wrap flowgives bundling listed, areguis.
Bloat cumbersome addition sacrifices.
Swims backstroke bus sri flower.
Updating bharat bitsbucket, build coreduo devil internest methods. Ent fb, seijinohki cornervels, softhere dedictated looking cutting.
Maximize ida ayers broken finds.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Don't be left behind - enlarge yourself now! vbkmg pw eyzjj Use sa um fe and eff hm ective Po wj we bi rEn ks lar mqp ge device to en ymi lar jjb ge your p thj en hte is. The device is very dis fkn creet and convenient. It can be easily worn and taken off. You can achieve p rj en so is e xix nlar jz gement up to 2 in yw ch plj es. Abs ad olu klh tely ama rq zing resu jo lts without any side ef mp fects!We understand that most customers need con gah fident cp iality and respect every need of our clients. Secure onl lu ine or pkw deri po ng process, discreet pac upd king, security of your private information are gu oiu arant oc eed.Forget your worries about p uqn en np is si mc ze with Po sr we snv rEn pjt lar pcq ge.Click here!!! ... http://p.standfront.com/?oksp
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Re: [opensuse] S-ATA hardware RAID controller Tero Pesonen wrote:
>
> On Wed, 13 Feb 2008, Greg Freemyer wrote:
>
>>> - 4 GB RAM DDR2 90 Euro
>> Is RAM really that cheap? If so I need to go buy a bunch. (lots of
>> machines to upgrade.)
>>
>> Last time I checked it was $100 / 2 GB, so looks like it has dropped a
>> bunch more.
>
> I bought a 1GB module a couple of weeks ago, (Kingston DDR ECC 2.5CL
> 400MHz), and it was EUR 60. Faster, (or larger) modules would have
> been closer to EUR 100.
Due to painful experience with dropping prices I made it a rule to only buy
hardware whenI really need it, not in advance.
Kingston RAM is a bit more pricy, in the range of 50-60 Euro per 2GB. Of
course that goes for DDR2-800, not the fast modules. For DDR3-1333 you have to
fork over many times more that that. (^-^)
Though the effect of fast RAM modules is overrated compared to the price you
have to pay. I would rather invest in ECC RAM than in faster modules. Servers
need to be robust and reliable first. The few percents more speed you gain you
pay heavily for. Better invest it in a faster cpu and faster disks.
--
Sandy
List replies only please!
Please address PMs to: news-reply2 (@) japantest (.) homelinux (.) com
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": legitimate}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>[Mhln] Need Help with a Mortgage? Thank you for your loan request, which we recieved yesterday. We'd like
to inform you that we are accepting your application. We are ready to
give you a $272,000 loan (Approved refinance) for a low month payment.
Approval process will take only 1 minute. Please visit the confirmation
link below and fill-out our short 30 second form. http://normmember.com
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>mrsaminaabello mrsamina_belloshecom frommrsaminaa bello attnthe managing director proceed may humbly introduce goodself name mrs aminaabello iraqi refugee husband recently one personal aid president iraq formerly overthrown power american government prior last serious crisis still ravaging countrywhich recently led misfortune government late husband position personal aid president able come thailand inherited sum us11 millionthe funds originally gotten late husband proceeds late husband able safe guard fund good diplomatic contact country decided contact interested investing country investment friendly please kindly guide assist making right investment since also interested buying residential property moving family soon every thing regarding technical logictics details worked ascertained respective satisfaction view participationi ready give good negotiable percentage assistanceor better still commit viable joint venture projectsbe assured stand risk kind funds belong survived son soon get consent quickly move fund country investment however upon acceptance work partner contact private telephone number email details surviving son rashid strongly believe associating embark business ventures derive huge success please include private contact telephone number private email replying sincerely mrsaminaabello tue 11 jul 2006 102139 0700 need urgent assistance invest country<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>Final 4 days: $178rt thru April 5, coast to coast Today's Hottest Travel Deals from Bestfares.com! Airfare that you can purchase now for $178 roundtrip or less on many routes will climb to more than $400 this coming Friday. With the travel period good through April 5, 2002, now is the time to think holiday and Spring Break travel on a cheap buck. Tickets must be purchased by Thursday, November 29, 2001. Travel deals up to 50-60 percent off are good for Europe, Mexico, Central and South America and Asia. These fares must be ticketed no later than Tuesday, December 4, 2001. Our most popular $174 roundtrip coast-to-coast fare sale, which includes a free stopover in Las Vegas for travel through February 13, 2002, is scheduled to end on November 29, 2001. How about airfares to Europe from $214 roundtrip; how about Hawaii for Christmas or New Year's through March 20, 2002 or Mexico from $132 roundtrip? We still have Central and South America and the Caribbean on sale through March 20, 2002. Be sure to check out Quickfare Finder at the main page of http://www.bestfares.com for the quickest fare comparison on this planet. See the stories listed below or check out all the deals on our main newsdesk at http://www.bestfares.com. IN LESS THAN ONE WEEK, QUICKFARE FINDER DISHES OUT OVER 1 MILLION SEARCHES Our new exclusive Quickfare Finder continues to be a big test for those who want the edge on finding the lowest fares between two regions. In less than a week, including the Thanksgiving holiday, Quickfare Finder has dished out over one million airfare requests and more than five million page requests. For a brand new consumer travel product, this is unbelievable. If you haven't tried Quickfare Finder, you need to. Try it and you will be hooked! In the next few weeks we will be adding even more features. If you love Quickfare Finder now, just wait, because you ain't seen nothing yet. If you would like to read a message from Tom Parsons about Quickfare Finder, see http://www.bestfares.com/travel/desks/story.asp?id=46845. To test drive QuickFare Finder, see http://quickfares.bestfares.com. ONLY 4 DAYS LEFT FOR OUR $178 RT COAST-TO-COAST SALE THRU APRIL 5, 2002 While you are in the shopping mood, this would be a great time to think about an inexpensive winter holiday or a spring getaway. We have several cities on sale across the USA for $178 or less. Travel is valid through April 5, 2002, with the best travel days being Tuesday, Wednesday and Saturday. The cheap seats to Florida are almost sold out for Christmas and New Year's, but consider Jacksonville. It�s only a short three-hour drive from Orlando. If you can�t find your city on sale, use our Quickfare Finder for the best fare and the nearest alternative airport that will save you big money. Visit http://www.bestfares.com/travel/desks/story.asp?id=35820 to find your Best Fare. FINAL 4 DAYS TO FLY COAST TO COAST FOR $174 RT + FREE LAS VEGAS STOPOVER Our most-requested destination through Quickfare Finder this past week was Las Vegas, bar none. Now we can offer you many coast-to-coast cities for only $174 roundtrip, plus a free stopover (up to 4 days) in your choice of Las Vegas or Phoenix. We also have our reduced Buddy Fares from many major cities to Las Vegas for a reduced rate. Visit http://www.bestfares.com/travel/desks/story.asp?id=45530 50 U.S. CITIES TO TOKYO $349-$549 RT THRU SEPT. 30, 2002 If you can leave for Tokyo by March 20, 2002, you can fly from many U.S. cities for $349 to $549 roundtrip; add $50 and you may travel through September 30, 2002. That's a savings of up to $500 off the lowest published airfare. We also have Beijing, Shanghai, Singapore, Taipei, Hong Kong and Seoul on sale through March 20, 2002. See http://www.bestfares.com/travel/desks/story.asp?id=42711. BUDDY FARES CAN SAVE YOU BIG BUCKS IF YOU TRAVEL IN GROUPS It doesn�t matter if you live in Portland, Maine; Madison, Wisconsin; Billings, Montana; or Spokane, Washington. We can save you up to 60 percent off the standard 21-day advance purchase fares for travel through June 30, 2002. Visit our homepage and our new Quickfare Finder, or go directly to our Buddy Fares section at http://www.bestfares.com/travel/desks/story.asp?id=44800 HAWAII ON SALE THROUGH JANUARY 15, 2002 If you want beaches, sun and fun, think about our 50th state, Hawaii. You can fly from Dallas, Chicago, Detroit, Houston, New York City, Boston, Washington (DC) or Atlanta to Maui, Kona, Honolulu or Kauai for $599 roundtrip or less. You cannot travel on December 21-23, 2001, because it is sold out, but other days may still be available even during Christmas and New Year's at savings up to $400 off. Visit http://www.bestfares.com/travel/desks/story.asp?id=856 GET MORE OF EUROPE WITH A FREE STOPOVER We are giving you more of Europe for less with our exclusive offer of a free stopover in London or Frankfurt. Fly from Boston, Washington (DC) or New York City to Amsterdam, plus your free stopover choice of London or Frankfurt, for only $258 roundtrip; from Los Angeles, Denver or Phoenix, $358 roundtrip; or from Atlanta or Miami, $338 roundtrip. We have specials to more than 30 cities in Europe. Some examples are: Brussels from $258 roundtrip, Paris from $278 roundtrip, Berlin or Munich from $271 roundtrip, Milan from $298 roundtrip and Madrid or Barcelona from $301 roundtrip. Check out our free stopover in Europe offer and all of our European specials at http://www.bestfares.com/travel/desks/story.asp?id=34203 MEXICO ON SALE FROM $132 RT THRU MARCH 20, 2002 Can you believe Los Angeles to Los Cabos for only $132 roundtrip through December 15, 2001? How about Phoenix to Mexico City for only $159 roundtrip (through February 14, 2002) or Atlanta to Guadalajara for $318 roundtrip? Check out all of these specials and more to Acapulco, Ixtapa, Mazatlan, Hermosillo, Guaymas, Puerto Vallarta, Mexico City, Guadalajara and Los Cabos with no blackout dates for holiday travel. See http://www.bestfares.com/travel/desks/story.asp?id=646 COSTA RICA AND CENTRAL AND SOUTH AMERICA ON SALE THRU MARCH 20, 2002 How about Chicago to Rio de Janeiro for only $398 roundtrip or New York City, Denver or Detroit for $498 roundtrip; Dallas, Atlanta or Chicago to Costa Rica for $290 roundtrip; Los Angeles, San Diego or San Francisco to Belize for $360 roundtrip; Los Angeles to Lima for $335 roundtrip; and more. We have many travel deals to Caracas, Santiago, Buenos Aires, San Salvador, Guatemala City, Panama City and more. Visit http://www.bestfares.com/travel/desks/story.asp?id=646 CARIBBEAN ON SALE FOR SPRING BREAK 2002 Airfares to the Caribbean have been cut by up to $400 roundtrip, including the busy season of Christmas and New Year's. Our cheapest fares are to Montego Bay, and if you can return by January 15, 2002, you can fly for even less. From Charlotte, the fare is only $200 roundtrip; from New York City or Philadelphia, $215 roundtrip; from Washington (DC), $240 roundtrip; from Boston, $289 roundtrip; and from Chicago, $298 roundtrip. We also have reduced fares to San Juan, St. Thomas, St. Maarten and Grand Cayman starting at $233 roundtrip. Check out our specials to the Caribbean at http://www.bestfares.com/travel/desks/story.asp?id=647 4-NIGHT EUROPEAN VACATION WITH AIR/HOTEL FROM $369 Enjoy a four-night vacation to London, including airfare and hotel, from just $369 per person. A Paris package starts at $429. Either United Vacations package includes 5,000 bonus miles per person when you book by December 31, 2001, and is good for travel now through March 2002. Your vacation package includes roundtrip airfare on United, Lufthansa, or Scandinavian Airlines, four nights accommodations at a select hotel, continental breakfast and free city maps and guidebooks. Take advantage of these great savings that are more than 50 percent off peak summer vacation prices. Prices are based on double occupancy with departure from New York City and do not include international taxes of up to $98 and passenger facility charges (PFCs) of up to $18. Other U.S. departure cities are available for an additional charge. See site for complete details and restrictions. Visit http://www.unitedvacations.com/5000miles1.htm to book your European vacation now. CHECK QUICKFARE FINDER FOR YOUR BEST FARE Airfares change like the weather, and with Quickfare Finder updated system wide four times daily (some routes every 10 minutes), keeping track of those changes is a breeze. For example, Dallas to Cincinnati is $275 roundtrip on most major airlines. Quickfare Finder recommends flying into Indianapolis for only $117 roundtrip, a savings of $158; a family of four could save $632. Washington (DC) to Los Angeles is $319 roundtrip on American Trans Air and $374 on all other major airlines. Fly to San Diego for only $138 roundtrip or Baltimore to Burbank for $174 roundtrip. Either way you could save more than $200 or up to $800 for a family of four. Check out Quickfare Finder and travel the planet for less at http://quickfares.bestfares.com. HOTEL RESERVATIONS NETWORK Need a hotel room? Look no further because HotelDiscounts.com is the place to find great deals at great prices. HotelDiscounts.com provides up to 70 percent off on hotels in major cities worldwide with guaranteed lowest rates. Book online at http://www.hoteldiscounts.com/cgi-bin/pickcity?SID=NW2&LKF=NW2 All offers are subject to available, and prices may change without notice. You are currently subscribed to hotdeals as [email protected] To unsubscribe send a blank email to [email protected] Copyright 2001 by Bestfares USA Inc. All rights reserved.<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>forget sp @ m blockers . . . bash honoraria blanchard ammoniac instructor lamprey ladle cocklebur burgeon taffy deerskin airlift quid heliotrope emissivity nowaday mantissa senate gneiss burly refer midweek postwar formaldehyde insincere reich sari crankcase hack provocative bernard committee transitory optimistic ecumenist audacious lead between renaissance brahmaputra hornmouth upstate carolina rheology danube bodybuild decollimate modus termini commando crucify incapacity fran newspaper crumple trillionth arctangent bedraggle breastplate hammock impetus typhon preeminent commit bella bologna arbitrage feldman phenylalanine psalm july bestseller shiloh degrease acm
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>infobytel specialbusnwebcom multipart message mime format _nextpart_000_0021_01c2327292934220 contenttype multipartalternative boundary_nextpart_001_0022_01c2327292934220 _nextpart_001_0022_01c2327292934220 contenttype textplain charsetiso88591 contenttransferencoding quotedprintable infobytel personal sales assistant 20 20 20 discover infobytel imagine representative available describe product service precisely want 247 never missing call prospective customer infobytel provide prospects recorded description product service property business offer opportunity reach telephone immediately send fax leave message requesting response telephone fax email time prospects utilize interactive features infobytel system create instant online report telephone number time date call you20 listen example infobytel work call 949 218615020 email infobytel now20 infobytel distributor business opportunity hotline call 949 2186180 calling one number may elect connected representative representative immediately available opportunity request response telephone fax email20 onetime email presentation20 privacy extremely important us committed delivering highly rewarding experience information obtained good faith optin permission email everything protect privacy still wish assured receive email messages please reply word remove subject line20 thank you20 unsubscribe update email address20 received email subscribed asked offers via email organization another affiliate may work unsubscribe send email specialbusnwebcom update email address future offers please reply correct contact information email message contents copyrighted proprietary products busnwebcom inc copyright 2002 busnwebcom inc rights reserved20 message sent compliance proposed federal legislation commercial email s1618 section 301 pursuant section 301 paragraph a2c 1618 transmissions sender email may stopped cost submitting request unsubscribe_list1 message considered spam long include sender contact information may contact us 949 2186189 removed future mailings 20 20 _nextpart_001_0022_01c2327292934220 contenttype texthtml charsetiso88591 contenttransferencoding quotedprintable infobytel personal sales assistant discover20 infobytel imagine a20 representative available describe product service precisely20 want 247 never missing call prospective customer20 againinfobytel provide prospects recorded20 description product service property business offer an20 opportunity reach telephone immediately send fax or20 leave message requesting response telephone fax or20 emailat time prospects utilize interactive20 features infobytel system create instant online report20 telephone number time date call you20 listen an20 exampleof infobytel workcall 949 2186150 email infobytel20 infobytel20 distributorbusiness opportunity hotlinecall 94920 2186180 calling one number20 may elect connected representative representative20 immediately available opportunity request a20 response telephone fax email this20 onetime email presentation20 privacy extremely important us 20 committed delivering highly rewarding experience your20 information obtained good faith optin permission20 email everything protect privacy you20 still wish assured receive email messages please reply word remove subject line20 thank unsubscribe update email address have20 received email subscribed asked offers20 via email organization another affiliate may work20 unsubscribe send email specialbusnwebcom to20 update email address future offers please reply your20 correct contact information email20 message contents copyrighted proprietary products of20 busnwebcom inc copyright 2002 busnwebcom inc all20 rights reserved message is20 sent compliance proposed federal legislation20 commercial email s1618 section 301 pursuant section 30120 paragraph a2c 1618 transmissions the20 sender email may stopped cost submitting a20 request unsubscribe_list1 this20 message considered spam long include sender contact20 information may contact us 949 2186189 removed20 future20 mailings _nextpart_001_0022_01c2327292934220 _nextpart_000_0021_01c2327292934220 contenttype imagegif nameimage001gif contenttransferencoding base64 contentid 001f01c232ad3ee2d7e07f16e7d8mailbox r0lgodlhqgauahcamshglnvznr3yxjloibnawnyb3nvznqgt2zmawnlach5baeaaaaalaaaaaab aaeagaaaaaecawicraeaow _nextpart_000_0021_01c2327292934220 contenttype imagejpeg nameimage002jpg contenttransferencoding base64 contentid 002001c232ad3ee5e5207f16e7d8mailbox 9j4aaqskzjrgabagaazabkaad7aarrhvja3kaaqaeaaaaqqaaimweldq19quk9gsuxfaaeb aaamsexpbm8ceaaabw50cljhqibywvogb84aagajaayamqaaywnzce1trlqaaaaasuvdihnsr0ia aaaaaaaaaaaaaaeaapbwaaeaaaaa0y1iucagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaary3bydaaaavaaaaazzgvzywaaayqaaabsd3rwdaaaafaaaaauymtw daaaagqaaaauclhzwgaaahgaaaauz1hzwgaaaiwaaaauylhzwgaaakaaaaauzg1uzaaaalqaaabw zg1kzaaaasqaaacidnvlzaaaa0waaacgdmlldwaaa9qaaaakbhvtaqaaagaaaaubwvhcwaabawa aaakdgvjaaaabdaaaaamclrsqwaabdwaaagmz1rsqwaabdwaaagmylrsqwaabdwaaagmdgv4daaa aabdb3b5cmlnahqgkgmpide5otggsgv3bgv0dc1qywnryxjkienvbxbhbnkaagrlc2maaaaaaaaa ennsr0igsuvdnje5njytmi4xaaaaaaaaaaaaaaasc1jhqibjrum2mtk2ni0yljeaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafhzwiaaaaaaaadzuqabaaaa arbmwflaiaaaaaaaaaaaaaaaaaaaaabywvogaaaaaaaab6iaadj1aaadkfhzwiaaaaaaaabimqaa t4uaabjawflaiaaaaaaaacsgaaaphaaats9kzxnjaaaaaaaaabzjrumgahr0cdovl3d3dy5pzwmu y2gaaaaaaaaaaaaaabzjrumgahr0cdovl3d3dy5pzwmuy2gaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaazgvzywaaaaaaaaausuvdidyxoty2ltiumsbezwzhdwx0 ifjhqibjb2xvdxigc3bhy2uglsbzukdcaaaaaaaaaaaaaaausuvdidyxoty2ltiumsbezwzhdwx0 ifjhqibjb2xvdxigc3bhy2uglsbzukdcaaaaaaaaaaaaaaaaaaaaaaaaaaaaagrlc2maaaaaaaaa lfjlzmvyzw5jzsbwawv3aw5nienvbmrpdglvbibpbibjrum2mtk2ni0yljeaaaaaaaaaaaaaacxs zwzlcmvuy2ugvmlld2luzybdb25kaxrpb24gaw4gsuvdnje5njytmi4xaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaab2awv3aaaaaaatpp4aff8uabdpfaad7cwabbmlaancngaaaafywvogaaaaaabm cvyauaaaafcf521lyxmaaaaaaaaaaqaaaaaaaaaaaaaaaaaaaaaaaakpaaaaannpzyaaaaaaq1ju ign1cnyaaaaaaaaeaaaaaauacgapabqagqaeacmakaatadianwa7aeaarqbkae8avabzaf4aywbo ag0acgb3ahwagqcgaisakacvajoanwckakkargcyalcavadbamyaywdqanua2wdgaoua6wdwapya webaqcbdqetarkbhwelassbmge4at4brqfmavibwqfgawcbbgf1axwbgwglazibmgghaakbsqg5 acebyqhradkb4qhpafibgidagwcfaidaiyclwi4akecswjual0czwjxanochakoapgcogksaryc wqllatuc4alravudaamlaxydiqmtazgdqwnpa1odzgnya34digowa6idrgo6a8cd0wpgawdqqg bbmeiaqtbdsesarvbgmecqrbiwemgsoblyexattboee8atbq0fhaurbtofsqvybwcfdwwgbzyf pgw1bcuf1qxlbfygbgywbicgnwziblkgagz7bowgnqavbsag0qbjbvuhbwczbyshpqdpb2ehdaeg b5khraeb9ih5qf4casihwgyceyiwghuciiilgiqcl4i0gjncpsjeaklctojtwlkcxkjjwmkcboj zwnlcfskeqoncj0kvapqcoekmaqucsuk3arzcwsligs5c1elaquac5glsavicelqwsdcomqwxc dhumjgyndmam2qzzdq0njg1advonda2odaknww3edfgoew4udkkoza5dpsotg7sdu4pcq8ld0ep xg96d5ypswpdwqcrameemqyrbejsqurdxepurexexeu8rbrgmeaoryrhoegcsjhjfemqshbkj esms4xmdeymtqxnje4mtpbpfeuubhqnfekuahslfk0uzhtwfrivnbvwfxgvmxw9feawaxymfkkw bbapfriw1hb6fx0xqrdlf4kxrhfsfcygxhagguyihivgnuyhkgguuzaxmrgbcz3roegioaurp3 gp4axrrsgxqboxtjg4obshvahaickhxshhscoxzmhpudhh1hhxadmr3dhewefh5ahmoelb6hukf ex8h2kflbhogfsbbigwgmcdeipahhcfiixuhoshoifsijyjvioiiryldiwojocnmi5qjwipw jb8ktsr8jksk2iujjtglacwxjccl9yynjlcmhya3jugngcdjj3onqyfcka0opyhxkkio1ckgktgp aymdkdaqaio1kmgqmyrpkwirnitpk50r0swfldksbiyilnctdc1blxytqy3hlhyutc6clrcu7i8k l1ovkshl4wntbsmkqw2zesmuoxgjg6mfiykjjjmpsy1dmnm0yzfzo4me0kzrlnj402dutnu01 hzxcnf02nzzynq426tckn2a3ndfxobq4udimomg5btlcox85vdn5ojy6ddqyou87lttro6o76dwn pgu8pdzjpsi9yt2hpeaid5gpqa4d8hp2eojiqcnazecmqodbkufqqaxb7kiwqnjctul3qzpd fuparaner0skrm5fekvvrzpf3kyirmdgq0bwrzvhe0fasavis0irsndjhuljsalj8eo3sn1kxesm s1nlmkvitcpmcky6tqjnsk2ttdxoju5utrdpae9jt5np3vanuhfqu1eguvbrm1hmujfsfflhuxnt x1oquzuqlspvntvkfv1vcjwd1zcvqlw91dev5jx4fgvwh1yy1kawwlzufohwlzaplr1w0vblvvl xdvchlzwxsddef3jxhpebf69xw9fyvzyavgv2cqypxht2giyfviswkcyvbjq2oxytkqgsuzoll pwwszedmpwaszuhnpwetzlop2iwaoxpq2maaffqsgqfavdrt2una9sv2yvbqhtyg25bhjua27e bx5vegrcctwhndgctpxlxhwcktypnmbc11zuhqudhb0zhuodyv14xydpt2hdwd7n4exhuemx5 knmjeed6rnqlewr7y3vcfcf8gxzhfuf9ox4bfmjwn8jf4r5ybhgkibcofrgc2cmiksgvsdv4o6 hb2egitjhuefq4yohnkg14c7h5ibihpim6jm4mzif6kzirkizcllov8jgomyo0xjzin45mjs6p noekaaqbpdwktrqjirknqs45nnk7auijsklpsvx5xjljswn5ckl3wx4jhmmlizjjmqmfyaajrv m0kbr5wcnimc951kndkeqj6unx2fi56ogmg2kfhobaijqkwowajdqpmpfakx6u4pammgqalpv2n bqfgqfkoxkk3qamqhkqpqwkrdavprfys0k1erbiula6hrxavi7aashww6rfgsdays7lcszizrrql tjy1e7wktgg2ebbwt2i34lhzung5srncuju6tbsuu6e8ibybvrw9j74kvos796vxacmdswwfb 48jfwtvdwmpuxfhezsvlxcjgrsbdx0hhv8g9ylzjosm5yjjkt8s2y7bmncy1ztxntc42zrbpn84 0dnqute80b7sp9lb00ttxtrj1mvvttxr1lxw2ndc1dyznjo2wzz8dp22vvbgnwf3irden2w3hze ot8p36gnuc94uthzojt4tvjypr5hpkowe5g3mlucf56nomui86ubp0opb6uxrcov77ibtee2c 7ijuto9a78zwwpdl8xlxkm8xnzpq09ml1upxe9m32ekbn4qpk4cf6vrn3f8byysn9 uv5ltzbf4adkfkb2jlagtaaaaaafbaiqabqqebaqebqqebqcfbauhcqyfbqyjcggicqgi cg0kcwslcwondawmdqwmda8perepdxcwfhyxgrkzgrkzgrkzgqegbgykcqotdq0tfheoeryzgrkz grkzgrkzgrkzgrkzgrkzgrkzgrkzgrkzgrkzgrkzgrkzgrkzgrkzgrkzgrkz8aaeqgagwhfawer aairaqmrafeal8aaaeeawebaaaaaaaaaaaaaaafbgciagmeaqkbaqaabweaaaaaaaaaaaaaaaab agmebqyhcbaaaqifaweebqggcaycawaaaqidabeebqyhegcxqvetcgfxgsiukaeyqlksvbwxi5nv fhfb0efyglmkgpbiorlsm2m0q3pteqacaqmbbqilbqceaqubaaaaaqirawqfitfregzbe2fxkagx wdeimliugujtfgfw4yks0imv8wjyq7kiwuizjbf2gamaweaahedeqaallwaqaqaeyez0eai7mt 2npam3k1tk0gsgt0ii6wfeaqoskc4mp8vwd8c38srgvkx3ktzk7bobwh0n75wo8ikllv01a yh6vxlrsuikmcw9y3kdpjuzmnu3xircacacacacacacacaoc4xe3wtsuvtqhpkdtmjqemk1nhuxx skqqckt4zqzl7c6jqs5xojmunaqzh0yjjr0tie9u8ewkvyu5nnlnzbhfskqfwqka7femtfuyg9fy oxv8rfzpvthhrzfj1wanpxnknzd2xaxmc9dfekayuiwhxiw2okqrukgomwjtwxk5leaeaeaeehi klgqhumaoi3e2pjsapseaet7ol548susw6us8obzkbxvihphirlukwobzkbwhphippb vyspzm2fiml7oc8eilukwobzkbxvhzx4j6w78rnjvyoxvafvcfeoiiqszjkxcjvtoseet bmo8rmuggagagagaga6qbwlvfsbwulq2krszefqmdenphixcxbrvvfmp53afxjx3hdvi8sp0d75w h53afxjx3hdvi8r9hevhd2n8y194q7ypefr3vlyfndpgnfeeo8jxh0d75wh53afxjx3hdvi8r 9hevhd2n8y194q7ypefr3vlyfndpgnfeeo8jxh0d75wbgbrbqhwnm1la3fdepuctevnptjz41 ykq4ti7ymkaqaqaqaqaqaqbzvndr0zaqxknfxtczrbys3ls3znp4vu5zu0jgvvcje8jxkv0d75 wh53afxjx3hdvi8r9hevnxt1vpvi8sncs6jpuszijk09xrnblb0kqm3rekcacacae9vqo7xv1g vunkiuv8ahpcivcsydeuuyyvd5uslurl4cng2ngyuklrwslktst20zmzrrgp1wmizmzt2bkowh rbjpekqc7l0h0zixnot3l1um53fze9fpfwmwafbveiwd57v7rx9cybp5wcnpzmzlftvwb f8qoc7v1xsus3gah0pkiq2d6tcoy01i7wtxzr11rd2dptmj1do2n4eho5gzb5ty91fnccxutep fhsidfqoshbqjmqubqfronhzlzuxks4ekixkwpeiaiaiaiaiaiaiar8ivtnjtzly8tkjcquoya9j 9uxwhjo9c5usylrftseqv3wrnhrlurtuquzobpqsh0jlu9g6s6xitu6gnbbty0uwk8t78t7f5 zqsfrmhbx8upnj7oval41xipv705gancdja9katliusdxjtnns4yvmkooplxghhnzntkymhlx yuqk0gszwle1rxvpeaxq6sof0ykgpdzdfesgegsp92ykjp3arsojarmzuqhes5e2u30mh9z6xgy 2i7itq7x7tlprtwfvufc7q8jpvw5xclnuydfjk1kibkc4zgtc57jzxykoiayoeqgagbgyercsdy u2llz16foinelsdze6da7ygphgtacjtv5tnbxxcnclg6whvutkne7lqsfagksjyi7ipwrmxfnr ayzduvqvzjblseznlcudn8tcfamsfd84qdxdgwvxyvn80fyh8tmf8a8sfd8aohcw4dl zxzapsdwupwcwfvuco4hwhxyvn80fyh8tcfyz993am4dxdgp8vlfp5ow4qniisfltt zu0r096njywafusqioxanws5pa4y8cv6haevw8fvaezbo42fxuhxdrty7ars9v6ilpkhhruc7gu qkpjc8z31u0lo03aivvgitohq4ysazhzpviunuxvy24ojoikgqaqaqbw3iptsw2qfuzbdajp2 eijjukwy4xbfpdjhwnz75hz6xc6vu1k8umdpahxiqwfqqpbc5bvpgiijfsjpfrxsehl4svzefnz rsvd7gzlxtyympj7qxpljgkru3ahixtkv72qv2hjcfynpp4mfpuyx8z6hijh2bfosvaq agh5g0n8gpnakhz9qefkj7ainjf3tvftdd8jatdhz1d8z6hijh2bfosvaqagh5g0n 8gpnqh5n1d8rspsdkcle1v0mpynpp4mfp8a1d8z6hijh2bfosvaqagh5g0n8gpnqh 5n1d8rspsdkcle1v0mpynpp4mfpafd8z6hijh2dv4y5budky1q6xosqqympqehjevbs3d ocdp0b1jmxwem4whkqty9umgtra1zkcbwmq9zn3snnnu7pyfqqw3nd4tnlcvteahsobd2teamy 4u4aiaiaiaiaiaq5jc3fslcxqu6uupep3upjmulsfcsfiwjljb1bjndl6tb1huvbuksixq2qjp q9pd013onxusmkn6fmvtinjf3tvftdhxyppp4mfp8a1gamofivyr9hg5lwsjbur82qtafyk ri3yjtis2zxo5h7qb7f6iapuuosdo9fkj7c1vlrz9ppgsyquvvvwuovoqk5b9ztjjh0lhvj ok5yutouclpypxuxn2ys2stfaxwqaqaqaxevbom14fxukgetkah5okzbroj5cb3r2qknfypfb5 onlkpoq3okjnmnwfwfbhn8q712vx75yb8rqeodpxlysqtrdgkxkvdckbecvct4tfbqxs8xxlg9n ry3f0rndct1u83a53owxyy0bfhaelwexc0lfvqlkse88sqb6arnzoromlh4gagagagdhegdvd5 yjqgqiimdmd4iacacaij8wt7ftvpbulkp9q3pbr1mzgrhcepgx7y2s5ewpjlsmx07hrk1ozba rfs5n4o7fyvyups1fsjnsjmk95jmp6qhgismsqkfrmgbmn1qsqjsuu29yelntc6wb6k8binwt4qe j3ramt0gdgx2nei4jzlrs5vqx6gzhfcbufdizop7katfvcw0izpkklakgyutwgihxpomng6csvyl vnunw6h6nlqluewqnfxfl1ygmzfatjdtqd5j0noj2aqtbago9a6qhyxggpqpj0cgt6dekaznis1 u21i2tkk7xptu4hocwemlbk2xs4mb0nknyvx7orb8ihbros3tosgstl3qnjdopmi5mjwu03wa38i ztgcu8jnutng4mtnlm1qa6kjgsoeuqidoljv99n930vevuhucrhlzmpsgrtjzrg1vgczsg8 pydyebzgbpvvqpb1bkm3vbaxg321ig4ayjghebwm4rnxplfxi2u1ej1bnlaqvmocltmtjeqkcvr 0l3in3kfn7yzsfhaertqfcy9svcymoaiaiazfjlzrbmurnlhutkko3p3rb5l92i7tnadz7zkj4d5 uxv5vrxporvvuvgz9mthptp3fnwluoev7fwaxq9vsu5pjjbycuzsxoqaqaqaqaqaqa5pryq 6xygpgge1vcktlrsblopphvwt3pxhwddylmewwlxppfakyulspkycqbasmxqeaqo6acacacaca pfhakqpqan5ieuqlapmhefzpoktskmmlcwbrmfbpzqijph6zytzxrz4qk9l9rkpjd3i49lf7pv0 ihuovmmgp8fautjk4pkb7tgs9x5fcadcfa9hd4uoa6kw78rfmmcbsu4cgmzlssrhn2o4zf2vz nlroiuwgagagcdfmndjt2nm3givqtkvjpdmkj1hciyej9zg37vbycqi931mx6dxvqntsqa2cm 4fe9rvoobhpgkoggtcqmdren1j1fowg0hbhlicbxolvlsykcwuhlu8pw0hlxcxuacewjftof bnfm6ayjj2yc81hic9boiicj5tysirtlpqk1djbdixebftujjcgeoi7jf3natgyd6vmdqupq3tpz 2ctb9h6jy8hjfu1cm9q2v2fyxfn1nhwaxhsizmmnfgzmxsmpadblgjacv2jkwhnw3 gvnpethpkzokitpnxrmk9o4tngrx72nnw27vtw29rqajrwjt02rup88vaqclmfofzzx4fq2tgz ckuakb6fra3flkloqmn4eyjvt2ukf5n6kzl6r0xnz65pf2bb7wqvye1yrdu8sz086xg7mwweq qksn88yxv233bftlw8z9ht1v9m7cxvxbjf8k9t9iswhnfl7m82bkrw0gupeujbgmeplf1y6gxmm xldt93xttqqklfsytvf0v40hoxpnp2nbflulp4pnlqzw2t1lgtkxipfabmrfbjx6lsduabt3p y0mfljkwqxepnhrvqp6omqcpwu7kulsrncuptmddklhxlgji9ejzpy5abuxsywj6re1pj7m2wi q3ww71lfmqz2qzshbomilptotp3wypdlahihq7x2sjx9y12zk4c2yshhmunvp7q06n0x0be03 kd6c4z91x3nb6ewzcaqdgnvs0x6d1lktqlpkqrujie3llkmw2zyd6zkcdhjun9bcuwmjqzrmuclb 2os6rcliapoojdrwvyumq25t9iqv28xxzitjtqlcndiktr2mshxjem4tlntxqjyzuryfe2ng aahp3re5qtqs5fsq3gguo2q1jurmnxaram3uulbtj2jhuy090a7omtyxuudxqef2sntw7l6ahbi 5tfyifsl54v7zrjvt2momwkkzun2dt0izi1u67p2o6w4svndvwx9b8yn209ps3iipxzq0ufozp edjhqowm7ec8rnzlcpajae8cloxv3y2laxh5n60bdbtowl71243cvuzkm5dz2lvupdxnqfa ashze0orineyge2v6ijf8a0zh13zlxpp2dhtodyqlxah8ky0le6xfqrqcqrct0noogxdqy9 pzzllbttxzld5d3loydm6az9nsxfy95gspwo9ku33dkr6s0um5rammogau11cxapajbbg4esrpk y07mqsnjjkovrbkxsfmi6rvpid0cfbz4rskcn3sue7tiyb9mspa6fzbbjbclxfu28d5bcqfmtzqg gh5iuaucympvdkrd6mfecol8f5lguuwhtbikffdbyg9b4zclekdpdlokbfljjdpfwrbvwjyn9xv xjewbssugnqqjxxmsclbksprkkczpoeausyohpbpd7esd1wc8ep94kjudqiq4lunyllcv5ul lemsvaq3ku5wuir7hwwtt1q0lxtxzcq4kkaownyzfcpjrgcu41nwngfnhzsp7e0slzvcdkuy 63dn13paocu0z5bnkxtfjio3yjlgn5vtwtmf0qgnwloruyvgqbep7kjrps7op3vh3lcnauk1x wbsk5lvjmoknuvmirpvb2xbnkowxviz5qtjt9sbnjp6v4dvdqwlitvkitqaasntr3rxsyvy8 ap3nvkmppmo28stcl8sa8xttjuds8sdxxsnujlwamy9tlskde8pebblq3ob2xhtxfvzyxbgnze7w ghjijkl9zvxyhqipqzpef7fau4scbuvwqvtzrjdaltbjsi2tkicnw6gadkbh0xrwzm5ulodbc vt2euoymlvinyloz7dvhutahahvarhx31xpuidjlruluhlhstjce35y4jrvvub9zonqflclojo2c w0raclty6p5qz166z7kyj82alivo5xddtdfuus5b9v6ivko5scgshxvhd3xvjaotvla5t ulchsyp3szmsvgfsncv5dlku5v3pbs9ty0sisjbbcwcz8ydvmdxs29jetbkjtakqnjz1ipebgb0z pbvm9kuik3djpz5frv0f7cxmjsuzdyfccr5xsxpimrvmzmrqt1kltqrkqsscow9osbrztlif8a 9mrld2st5agx2qx2uyjma8yfjdqtwnkqkzuge6lfsf6zxuvdyhxwwx9rkuomn7hjqngn apeeop8amwulk0t3y3zbnmrao6xxsr1myxn6e1phvyct1edyovyzml39j57l8pvlzewsxgnkwm5 4wfwuqr8uegryjaunndi1kanbm7dylhnb0yllafk1fti1o21d8ijjjhu9qmlttuoycg1gfsiwb pfsr41vnuxxhpmdm9yvdcir6wqkkvpuojkjmyuokd2ayjup6f4fc6zftuc25er1eoq73pnok3w4x j5qsbubwa0dcs5xmj7gwxt7bp88c0ufl5belsfxp9vqzxs485cex98utmnswdh9adq6olwzgvv axymu26kzwibababafupmhdtux1mhsqbbssop06nt26gk2uxo50umfvuz80vx00n4tzfv3uj3hu tw88nt0jkirob3idojwin0vtmxclmrogsma6vcrr1q3ay3feh3enfctzn1jldntl4s72sppxz jhzadpfpit6rjlapau8indyneuvprb2uuexvduvvjjpp7fnjnufkpiyj3h9tflz6d0newni27s 5flyi1xagrnthuvfbugqo3cydq4iqudidr6jarko6rdhjkxd3i7ezrfkvhweawn3p7gvzjyrq5 5usinujtt8b48nhqlgcuzr3ln72szp0xjmmzqe4fdfoigvaibejqdag0mqmce2wvwm5k4y24u0o fsgify72h2gxun3pxmnkx3tz51hixsajpl7rxcyxhv3yretnltkzhsspkrl1rd5mexaxbztf mivwbrmmlv3rz4xj5pefprg0audccacae68kmlttpj3vligzdrjr1ji6va7ziijvusmvunpm17 cwomnwlp8ffqtwxpljqzvmhtbamoy129nppu9tg7ynbtqv646rj5ajgbgxsy6rvpvllzcdley1 2r1bklqbogr3edfllocruhckad1zmavqwqxcudzbircuh7cd76e6zx9ntki5rrkq1oxhsxzu1t iyry6hksk6xujznjvslk9qonalyznfpxm5c0oj3iufjpadmri4tby6t3yzvyuqpsariiymqtor lfsvgofa85ued3tjwhsacouelcidctqdpsm9i3lrdqoh3f17v8l9xsom9cdnxxzu2vsmvixz4 axgx60uq2pm4ujivb1mzt1kyuzxcxrnpuvurfctfyauujwycbxwuvte9awxave6tjb7iosu67c tsx3fk45fyix6brpm6rijp2qkmzzgyzw6r3qnnet98snxeyhequadfbvcl9i9bhxz7i9tkkul3 xncoslgtsskh6qsnva96ont26bxtzz5eyri5yllh6fgl8vsxii5e5vtmmwqqsdqqevos1icwlpo7 vasv3vlwr0ihzeg6e8lbm9hwjj6xvgs5k2htknkek3kddijcnvhctfthflnmmvyt2lci0ndrgp7v w2wclw6rfzksjababev3xiyosrwd0c3zxt9xqle3ujqjfk5vpzhsum5fa6wgsxkssjaddril rh3sxgjwtlxfvf3d6j10rbbpqai2sqtgu3jos5q9cnbvolsrw6ac5feqtorp7cct6yizn9tyyg vjubwdj9lgpvsrwh14dj6oszatijclyjrmdmkbc8sqhkdkpze4g0tvqan25q95yuifkk9tvki gmsorlyuko5xvaj2qpve9t2nvjrh6aytmad755j9kxafdpluwrpyq2njfjp5pxi4ra2pxcdfr nxu6stnwiye2qysjy8u9jnbmfv3imiiydi59inpepjzneud5clpi2bfdvkr4ivekdmxrt8gimu rbyo80nmp1fqbs6r1knj9no89ku5ya2laywsn3nvcinpk3lbj1c7arappjnkpqqjrsgliy2jh0 vrh1yfdb0hscdw6s6jioriy1wtgpr9ha6jrlp3vl8soo5v2lweeovo1dq3n3fovlo5biyvkj7yt hu4qjfusojxamhbqg9fhxugpiwz9xxcnvvtufb2ls3znp4ueifbwzaypcddfhb13dy3s3nn8o0jc x5w3o2rlyikup5hdsuutv3s1qtioaikkopursowjtjueqomboo2hjkl2k910bz4pwzttdrnjyo9 sjb13auj9beius6tklhmagqautsqklamnr2ghwodoeoscjqkoujmtlw4p80phluo7lq7c04rdxw vy4phagz199qkn54pxlvu4lofnnyodafntdl1u64frkj01oksfet2192kxm2c1lumh38idx ek359hzxkizoyx0xq7nssjqwtunr61q1jihxv3meov2qrnmgplzb4n0xwg2jtok22jalszroxq jrycc8aeaeaa33a0y44eiukiijfvdaub5ouruow17m4lkfektjhuzn1hwz1i26wu0nzsr7luv2 yfssoufppiculcvnbzzp9kv7wxkxpx045653wkn92ctqdl1nsktihnnlwljqducacewo7hi0fg 5jzmfj3hlhjr9bhkl1jebi5vgpbhmnjuc92uullfc9xh4hf2be2raxdrakynosj9dmre485xl9 7tjb08b2l0l5oen9rqni29zmmfh3vuvqjmst1jmfbhnd0tbuspiewlvl7ly87ttoqyo6f8azui kpr12ijempemxnhvlnw9hzhrhqydif0o6s8xwpmsqbaxr23so0tm2mbdqtsipavtmy1jyy4 vnihopkkoxbrwoqmgavrgzdmtum23kavonxqxgob9ece89fwdypnscy0yzny7reqnd4tc22n0he jtg66fhkxf4weeur76u6jnrcixerkheniyip1bhqghfntr91acemqdniy16nronbonzpkpgmti avlylvkty5y1r9perlxgtpr4hdaitrmsnsmqb2rowpwhdjurgqrjjpfyeg9bd14vt3xztcu39u0 2rymyeqoqa2udyu44mnpmkqkgieltizpqz9gjy9hw7c7cpzvtlxxwux7grg1alyplal1lgn2azuc aorwymtihhldwxptokzzhswvnd3h3jnwvqvfg4xj1idtbxupowrw2tpw6vfsto1iszae9sznxth dge6jy63u4j8frz45fefqw610hokcfgvauxnvixyhjjwzoan1jrr76bewstzt4ls6oqgkhz kjmatgk9lml8etqtoo5yntwbtuz8yhlhhlxyturtbmhjwd2hk71l9m1rs6ukoyksrxa5kxj y5psbbornoorrx9uut9skipa5zzu2nrhiskwujsmlkukwmqyml2nk9fundfthub19m8dea3et5s sslwetyf7ftvecnlo2nlcefvi4u6lqn6d6u6xc4d127szliyjxmworh3isxyww8vowuvdp5uslk khxuznoottg85xxv4nmulg1wlizheitij7oacaeriqc43oy1tdaa9vsr32lizreossojeuiuv7 ig03uj7cop1kuzeqpnkhgv7s12bt16qfhi1ggvjmhvt6ble8fhsilvxe0vlbv2h9t7e1flmepb xilpqqmkxnhutlo1msosvkzhtnojoheruchzbbjbw6rwqtv07gptzujjmaiexan44spq2nol imovcthmapgmusfyssvocaa7ptmni5xt7xgishfhncooqvhol2uq9rddqmipsztskawjai60 3gvy5vdhays5kijcxu0js1qp6myu8ljvuod67yzucuf8rkpqitczi76659nz4lujoroqcu44hpt brighttjwtr6bkrmkxbexrzlnof5tlz1s0psrtrlnha25tsugyw5i6e9qyjefjzb7wzlr7du5uir iqhehfovrkqkgewyojvrh9pptqpby1fjzieosnvs65ls5qlxit42cwhrdqxs2worziwx7tkn w6xy406fgwwu8ghndrcdyu2bc7c7wu4pfhtmxynumcas2gxusrjsti6lhlbyzjkelr9kg6eir cmkim3nnknqqqqqc3uflyptnviv9eke8fyk6h0xu3qohlnvpkul3b0j4x2mt126soxhhj8c1zs8 c7f9pwkkkkkzj1jmdyrpzg4pqasgtcwqla9jjda9qsdpxjxxv7pgv8ay7s1efmbcd1uw3euveutp qqamtc1i012zojzzmzt3kuo5dlvvwmwrtiuw2thlyxs0wre6m50tziudg0xlot7xkhjvoazn uihzzj401ctypjmyobjonwri92wzbxkzlcm1kbx9jtrqfwkyj0vpeq7nc4vrt8xpxz7q7khy trym8ilcl7y85a9juxt0xih4wod8ntfzjympneefer8snjup8u6rswpc58anblgmzfbt4jt0af svwoj3jhxaavg92igixgj4v1wowbxgs821apnnln3gnfv8aywdpg9i9jr9rmsewmcel4lyaceht wiydfuieve9qvdsotfpkfjvfiq7fdqqp6i8367kuz1yfhniiuwzfh0ppggxtmtj6iqb80ykkn0a eaeai2uviacxv1spw0javr6x6yu8g33l6k8jln0tkexapnxcampkt3iurxp1qpzrlsnx6kv97qf1 9ilyrxr931hoxoen0uzgm1x5n45e96zhjbmzizeypvkimr9opdq0payywlwuefgqdzzxc6fl aheexe0iovtvxfhumyaqzassi2y7ksmef0dnmhuheu9nqtqoxpjuoa4roenwjtyu9zpsj23zry r9700n1te77u3ce61bwxuipbeco7hnxvhwti82osdvrogiryt881esntypsadz5ulxh2k u38w6z7cpiluvh1m1q1m5rvm48iuf2i81zn93rspt1bzppnlpry7jntsdikn8jxalp2qva7fv2 xcyn3onx5nhlx8tp6dl9ly3f6rzxzf8zhvftqrrhogejiqioypobppxw6bcsr5be0i1kkusm73 dqucbfbjg2qrr3zacp3ei4apy66kusi3vl5luia8zahe73jnpjithzdxis2brzsb4q2tjf94iq 9pxujj6s1blk691ull5eumew8i9btl78ox8rkeqlmgdbojioysk5or7t1dzgowsr5ecqcliyvxv q5czq61lsdjnyiqrjdcghd4qxe88dwzxf6jn8nhbncnhoklomtdx00ukaao6wnx0xm9gsv5yf 3u35dxyw8nghzss8rkmfw4zhtopuni5ldm5zcnvbr5t1di2427ajhcl6nh5ehchfz6rdzqvtoe3 kqdct8adkx6y3xbt93ixp94879v5bynrunvzhyihwmuuo45r07bqs5sbuzaxundif8zds08m zua9qajxir9ldtgonirezdvvs70n97lxqrs3rtpz1sfoxnldy50eg0qi565qrr1clda2r9evl krnems9smo41xv5wbrnkfzxlpwlxuqpaqpabbu3mkcdqzh1rverssxbi80v370nxkx42557dg sqvlzfabkstlmkxftsxem57xyt5ruo6vkkes8yc0reictw4aedn9skshnafyws4rzw55jrpu f9au3dae7fukg3ejtbt8kit5hk4dnu3s3ekxowwyourcxe8puo9ijpgjuu7nqpknevzxbqqot 25ueljdhhfbcvvzkbhxob3wh7pm8jtn2ijbe4r5a96veceqttpj9orhjkk5h2lutlugjdtwbk zxf3mb7jjr1ljumswdmthqxhiov98zbkpyuxvev1gqfomfskduljgp7gqkecjwh2509hwvem itsdzafcyvuug7de3w0tv6crgqnc7jf5v8v3wav7fqu0qyrwlbgsaa6dqrhyqqtznisdscmctz u27xofdigzfqmh01f4ukvlcozhlukkkpwfdevjhwlk2wqez6ruqn2npmsyi793bx3pjgx9oxjcu 7st0ityjh9w95au8mpt2lavu3gk7ftyggxjucnj726u1rxjdbrj8s4m9zkvukekcqcxzl9r8q lq3axa6mv0unhkxbffl1zfyvb6z5qk5vfrft9osclltkg5pxflo11qfbbs2qrm490ucixlbsy ok2e9yyr8j808jrnlhekyqchvoorx1n9jrj0n0firx9msxxbfnn7tedq3ndzrrfzllxiqkrs5ht 1juhaxehatgqt3t0jgatpfjubxdxk3gtdjoxglltst5o0r4doruos3y2p20natjvkdi93urq7tr snvjlextm3z6oy7xw8igj7bry5ay9h1dourzm0zkhffsfa9uqe9ukaerbfpzppyyml7splq3o kqnxkj7bar6xy4vj9a8httyowxfizsg2wvdiujqcn1xcagpajbh8mvrfya3cusnjylve05orkg4 pllrk9g42sca1hmx6czpjgvw9xs1ksxyz7fvmf7sbpmtezuv1stqvivnshah2zc7vtetday3f am5hxfn2eszwe50inbdmvitpxco8gjmdytrsz2ymwgqx5xbkewvlueasrydy02mvmwsvrt7t ewns6kvimpnepc0nlizyrx04f54guagagagcnuzrqm2ydvyjdjqsljbkddiyj0hcldfw24uxkv snuw79yfpb5yufk6flfy3gxtoozqarzgc3ktk972nqphgow1fbkyxkvhkrd4t2omztqyldqselik n542hqbfvsnwoyfqnl0hc0i3fl7tnwooo3fxmi5uc3h09izs2s5iqrytcvzll65xk9ywlbodntr amckhv93l7iz8sob7zp2i6xmejszdvp70x7ir2yghglnuhmu48vnlsdfih0jub2pbmr5oy2jwu fixgnl66yu5wgk9smwl8udntuxkuuqkgyvtst3cubncdzm4qhn5uqqrjg6rkptsokts5yjkb3ea th1dlutntq7zzrkv3mpxjcbduv7kfhz18aaqzghnbbpvcymgdqn6bsmketzlf5gwe9fee wpu2urgbcl4kexcdwkvowb9s26nply00ho1jdl7rlyec6t7rwdmouxq3qwpimfqc1dpingqbl3t eoq5m50u7ltnshl3zgydhyvf6tb4w05td52vujnr6fsojvuubmnddprccfket2480ki3zlvdw zt4jjh4ptzrmgstoue7f9qshrnzngtxlcmecpm2xd7y9oxgtluc2ujo44q0si3eawsu9jgagqs mjpg2co8yyxmztstul0jpcpxfnrtlszqk94jmm1str6gx5j200zrkvhu48babycjzeihgvzwz9cf qmd88bzgy77fi4d2m87dvyu8bujqw6w1fga2mplyy6vp2hsbegz3hsalfsfuunrgut0klcy3tu 7xsvh7fikzyanuaavswd6sagf3tlrfl1jlqnqgnhs96xq9b8h1l9otlknpjktxeiiinposiddi xg2qfbwvbgbwaa1ufkjj6tj97fxbgodaaisxakkensma24d0gkltlbdfpliartgrosjhenb cq0vww44zdsfixttq51dkaheqkkkdceszfdvo8s4jptsqokkp5viovuxzfqfd9whelen1jmyle rarw0fie2spe6mwsit79dcnebki4ojckjbshce7ugjvo5svrebugqt9ps1dijplhfbiknjbhvfyx w3c5qwatd75upq2nio3zklmh85gcqhdfq5gbasdqvokinr1onzrjaumny0vawb5wzfmljeuhoa 5haldyssiv0qpojoax78llv5ov0fuloexpkkutvjubds57kjjpsjcoqecc34w7kegou0ouuttzi x2gudcpzctkskadsxegk70u937ietw68ixxngmcoly214tqwkuvi6nx3afotpopuj0cjcm87k69i 2lxckohyulypbrbqq51qw3sujsnnvnt3uifzxbkshmw5bcqmsfryvkful3g0txvtaysb7iuh7k adribxd5otreiydbrggbt5s3wprse5n2xkuk8fv9xtkmyfzeq2gl7jsb02diur7hoykojqwer icjj9mqrrnegbi641sol195w5x6bhduvcvvdq5oycm5hr5blfeld21nqxe20art2mp09kastnd yyw5uyddg2wnxyx16ajmumhe4zjqpqoxfsadwjw6yob1bs4qcvwpshtv7vdptswbq9brms2u7 y7kf97nmz4xzkxs1fcpinuqtisqlkdxvumtpmjnxwpuuzp9fuzrra3eymdiw7khkxylp8dzv dqv2p9sabfds4x8hdq4fmk8lyzv8a9lnuin03nafpmh17qs7yqnjp1mw6rayxkypbaaomkm gf6yfn7uumfihptpfmzfwplx4spy2wpupcyqleby8iomclvbguwz4qifq03ueo8842qnb0 anxzc25lxpxrnxskzjfruimnmm6mwz18leoywggwtoqbasqj8amkx0r9msx1dvnffll8m31ou qz8klfldkhjwaw4jkoqmngtxpilzzzhegqesaf1xl9zp0lxblyx2nw5rqllvmyhffx3dszf 1e1jpcntrhb0zs46ybloxekcacacak9yq8bulpladpxfbij9qpe6rfxpdzpdfbkkfe9vmqbb0 lj9q1ldkkyf8k2eehwwocholkicbesqrjqrtwrt9jibpwwszp6i27slfjjuxe4x13lo7ncvzev rifmnhuogsirttay0myiymjb57sv4tr5oike3uqoutzvgzdzy1z9apdpidai1vqe3uoxoewor fu9nt0d0xift6xavnso8zidfrqtowjtymonxlwynspwfunu3k90fpjzdat05p8ecnufk2wtiuj wnbu2zd11ykyu6guh2xlormkkcszxvkw4g45bc3jp3hfchwxua6e1riz6wu37dpf9dteww30uox pri8mfo68asmjgi9o0o1a6qj1epfrlftdqxs6sdkmxutgc0g3w9zfkc9upk5momf95lnvld a0bwxrxoriyqo9jdtjpydwzi6gtzrdfzdl1mbjtpwpbqzpmtu5imjoprnd4dm18zlnyql0s6r mujzxr17hywxkqiki0c7ej15ufgsyn6t60sjabgux2m2u8vxrrfvmv3gnzfhytfwbarv5o9v bzopkpbqe4gaxun91mzzwi0twhu92ostq0gh1tsugiestiqyd92rqkqkqoohdbxu4ekyx1ich2 mwfckvrnzibbpxpknc6hwo4yhokt3nsfwvsfmod36k1pzmgosf9yhuv7patvloanfn1mchaxu1d dimkhh0xuaguxufqf3flzw37dc6xownquow7h7e0ddlnwnmn09rcnkhhpgxlzisfdr7xa3ewern l3vdcarhcne1j19jq2nnwdcxnjyl43s9hpecurqq5vk6uscljy5ccgaepekpsboepakai1m5cl ck5sdwze8bft49tw7a5yo43xw2g1ouqcw0ialgiri5oi3k9czbzm6rqn04effnyukd9rjmgzim ojv1ur2exuwn4qxrw345hauq9eywt7vwbunilgct8vwrrhawrvduaqk1ssqt1auru1pwcvhfpe a3bvtt7yscfessmbxrmpwuneun6phz7il7uhbffacgtjpzitq2k120k0vm2yt1laeij9zsaym uutyke71yfxskg2xsaaegjduerkyqbxtzcchmeba9re3oqievlqdohctmnt0t1iwtktqnxv7k nbyyuxc9o31ackdjcgtl6oikves3j80qk8n20xld69qq3ibk0k9hhsp6iymkxetirrulykgdx h80xi3vk5qczqpxrukej5yssi13d2uplkyzoqhlfeieavv8ambngqhrb7e7tkgkm7rbljsapb07 pirajv1e5egnhgncfxe5qyotahwzwjal0snwjzzcnuil2dm8xn2kydvggktu6zjblit0ki3r9nm bnyr157klh1mz6hkrwbytdsnzeqgyo1gjgdboisdfuif3edovdmks1oe7vfqtuud0jvth6i8263k um3jv5jykuw1ffafsgmbdno00nahit8gjfkhz3wjrclfu0jiqplrakkh1rlknvqry9127ilwpm5 yhjnri2yv9k62pdl7qngir0morp1ruz2xizdjw3eir9t4tzrij8nxkvjlb5rlx1i1m3utuqvt vbth9c0zghofqy1rqbp6gqwkbrkfhze4ox3e6tvi96liwtzk22ltlfhx2movzbewuyrtjakcthjz 9d6upokjbrjze3abnbvaw0psnopg5ajh5g5vpcqo009ftlfwxavx0fsg2up7ej3stsj2qegi27p7 ohu5oeaoz2u5d6b9vhzzwvcnu4nncpf05n6al0kbs5nknpt8k5vjbon3jopniz9zopspf9vpe5 l1lvdqxnwdfhgl9qp03iuzuykutnc1kuqiqr7nssruseal1h0tpgnwxn8ohip9v21lg1jv to423xfit32ulhcezzzrrhvq6sjdr7bslvxwksejee6kagxsccv2xt7s6jy5gyuvuq1ukw5lwruf 5q6t0kuvorcxp7sjmpopqproj3gmw9y5v5v3ump1pf7zpmluhschxteanumazuqfer2xikniu vtvogthk1iy9lu0vgzftiflwh0m4gsqbtgtesna6kol9uscslglaacacacakceyckcycmec 66hhje20kuqsr6o4rea3jxz4fq1bi3wxm6ebuxlqbb0vn42fk3l9vpduuunxvghb84advp7ju adhsn5wdnonfn6pah5w12u1tpwduqi4bjvh9cad83o9oq4fbxa68wncqq5wvqn1oikrac ajj2rs8lttwywexnf9xylk5u7idu2xk5hqlywabveglr2ms9wbjoqloiymipdzp7qqyuuezqna vdckbt2qlzsqmqzjsfhk1lp2gro97s8u5nzlf80m29ad3sdx6zjwvumtkvtzts2gh5w1gqf2so p4bjvlx876d83o9p5am3kytqkhtakffotuzsvgpvtgp0mbfg48sfhpjubzyrqvviz2y5wdyl6l qwbdxv8aqkekfn9fon1eylagp34p8tv5vyumut7ltfuovu9svlcwoq8jws1e6za1jca5gzorm3b ii6owzz2l3v5kdk0dqpt9pwbvmu05rgq0a3vaozhogvw1tyvgjw2t8rmzd9ob0e0107qqy vdqvccbazy8nhijksvluogpqjo6vhzx4sc1rs531prlnulko6dyou5w5btachq6egoka3t9je4u4 kskjsgvs5cvbj2w3v1nqffrylkkouobujtwqhfenuhfv5evcl5iqils108p0zozw8ltsklys7 ycpsfg3jvxduogvw1tyvgtf4bjvm3nftvm9htnxxbufdroqy6hplzdclicge6novpjlarp1 2zdcpqleah1j1lj5umrdmvdu0tf5b7suw2pusxq84ohuuszctqzmhyaiag3mnizounc92kefcmbm 7bqf0rekdu9adq6qx7pajdygfewryu2nss864mqfxmxwzprpbprubmyul1tj1l2ljjw8vp7b1t vnj5idz0r9qce7frvrkl5vlocf5zbxot7yr7kwqfkjfswl0xrxztnvqbamqq4gorzit88src vp7poosff8ayjlfyklrowhbqu8jake0xewngvz3qhhmrvbsl3kzzypuve6so11ql95bv0jyph puo0zl0jpyufzxlx4pnl9c6oytsdgw38qji4so8lare3vk7q0l5j3izulsggdu0itktbqzxff8 czvpy7xrssoyavlsw2xiaiuonsifur5xwn385eof32391f8avco5xwyfzl45fbf3v1qqov8bnu ppxhlclxh1rly4n6jdzovrmog2iktye5mirnpmvdllto0wmuhtfo4cldfukcnyd9hom0xdm4frwk bzohfgm4je88ue1pdppxxn9xwptk3stmkkwsituvvfulrytidhiloyoqdac0oauzrmurzvlkai11 ts5bvnqgpl2rwxpctyl8jcw4zhetjwx96icttfduvuitrktthli9vuqhsl3wlflktollyoltuqj gjge4gzjk1higo19rsnlk2s0gmw906ispwyubrvkbrnwuepqu9x3wo8erv12oudequxfx8q5uq rdxhlft4lifgnnhc22jqko4t9sws3rmumahnciulpn7ybfwrll1yclhkuvqskdwssp7y6r0dky2f gc12sjk5jvw07c56scrmtged1ucx29oyimptrvx5hwfxeav9ppgyo1lsm1jqqaijad0xzaj1dif tt5jpy5xqnt48zbcyplssrqsstufm0wnsjufwkdeh748uxm232upm72yvobdybrcaia5s4kp8 9tk6ijsexwng9ogabiozpebf7jxvetok4mww8qm7bsxdsjezld77y7xjfc7b7xsosunkkaspmls 7up2r2drevsa9brypcmytn0e5bdye9h9t6exl7kuixg62dxxlqrg5exlsyw9hvitbhyxwvxn j5shdy4hhfat1wipxdvxbark5eirun2hivuvgvo2sczeirrijudv69xbcas3jeyvbontltlsq8c jwa75tcw6k2sreceuavbsupqdsbhjds1on3xcuur9bkko21ywlyzrjfdxdxjx0vogffvdibfca 1jcisrujgsxnkma72jndpqtyoz7oqvkkqv1zlzy3crvrnhojd1fbxrubxel3eorunoyi3ltyu2 vibfldtx8ux9qln8w4p4ikx08asyttg4xrtcbufrunmj7ynwnl5y471nqemvorb1ilsmxiwclo3 tppvidam24quiu7q2ykeemuaobbgagagagbkzvgvjlng400ldfq5ot4jg4jr1lfzzfxrpxyq5ur ofleif8a99317ol72feupp8abe3pd9dvz8rqw8v4gp8fvdpd11knlshqlm4lljverjqq7fs1tk aspas61t2gke4jbusg6xdcdvsd7ambnxe5pvqktbkhfepaqzarm7032iglf7b2x7v3oh3siod vv8alsxsv9nwlrfufdrc0owzjqxlkbe9ihpbfaw1qt0k0jwylaquktbleiycxvesi8z4tpckuhxv o8avpi0baknr6oqyv3jpayhkhrf7b2x7v3ol72feupuw5gunl2tcwhcwspjmdlviepye9ihpvh s7vlttftrioaqehumokijcz3iejyxsdteuyb3llugsfdfawrce9kovdb23tj3fvrl3siob8t zagumvdkdnvqdyxeujiwld28ns6by2ree6br6y9muyi7oacaqqrmhqgwaxcq4yxjklbzcw3z9zi a1ienyudziuieul2qi4pvvqblojelji9svpqj8ryirt3vxejuipfmpqjigh3tyv32qalb4utr msqao3uik5yfavod0m7f5w71tbvlfbkx27af6jgqinxrclsflvkkqamobahqbexdkrupnxpf8a bzkx4hv7iyhyij9tpih3nivxdf3exhkrd6mfep9vorfigujhyifuz4mbxl5yerslyscgh2jal brrcvbhrzplnbmxup3v5vspjmurmxpexsbb3k0wtgbtjlkgqbhdyqn6qahqqray6svznb9bw2ug budupaldk4w0sieqtminfycgunsokz7iylumvck4ykq1ps8xqjktbfvmuy3jqlh22i1us5ei7ul qpxpk22oqv6jid8uesswuamexbe17ib3ns3dztdup7xrt0dkjy02no1rjmypr7vkopmyy9eldm5 s3sqjji7ypespxmhztu83prgaf7dbbmsutkt7rluzst6dsv7konigxe8v2brslwr3fv9a8dyjjp6 ooydxuiwsfp2qhhdo4jtlttubpoylaqiae3gsa3ohnofljgsu22u7nbvrxvdquobwdz9vrisnt r3f9f1o9dxvmjzau39fgrpqtvqjcqhllbbbnuniihqfus4kscu8stccmqx8t8u7ugzwrqim kldsvoeagagbozbxzi2zmkbu9c2twisxgafd2yivwtk8mmcvspamqeuygedu5z6wiqtmnujmpvme gjosnhdjonerxehok8p2qblbamn2a6skziir3935pevlpvvaviztevliuojnusbufvfkzn54pyl kw9tkefyqd8xzyt26mcq9e6tvttmdggivipsm3vj2xrcrbitoglvrtsyabueienpijkd19x615 hrkolttoqavxvpymksrjoclvlnfy7mplmg6eb5r5ylzelourtr7dvpijjybbtl2wuae13mutdwx d2lnvxoetukf1euisy35zgrdekk6kujetsub3wtoajeeisd1y3lk2mw00htpraahsijtm4aia iaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaia5rg54nfuoza2 nqovtqrutr5ppeeg9wxekmgqy1vwugffv9w6qpon9ygx6ork9blwdop8sirzv9zjaekijsn6i a9uygqhsarny9ytrybbxltankp5pwiu2y0gz8aesli5dcowrpcdk9gktyrjvzmstuwknqdlvjvr xmrxhfgzmfxe92a3lcqremwwenslsyokdo1laqjrriirabababababababababababababababab ababababababababababababababababababababababababababababababababababababahpw 0orkv6ludodquessie3pkkpccdvstgv2bkpaqgixi51sqbjuwmed3ehsiquhkepjjizwrzyj87q ppf6cvjobb5f5xokeg7ueli1u6yz6exuwvd2vmznvipcuxutlq2wfxv9hkdkantsfh2irhywl21 fwinnwnlctuem6d9iqff6itqjqcucddtrekruykdibbfjpjmiwu2ir4sfiiavosez64oksryaiai aiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiaiajtlzmxhhqo1vd8o6uv vd3xwazii8peawlklqv4ikcq3phtgckgpoxx4t5ch7bfgmvgs3uopvli79vjicawox7iltlvkomi sdqkq03nlnrspgfm0k7ckykvjm0qsdqdiaviaiaiaiaiaiaiaiaiaiabmc5fbscxs65ddm3hac1n jdday2isrcs0hkd5smalra1maipfhkds5bsvzknnttzbqgkrfuhu8pc44htdiinw1l90bxmaps 63w3wo21d4u9s3r2ygzxuvdu6zibbbe1kp8auntafaa7zp4q1vuptuoxiutrkglyupgs6ey3bbwr qv3kst6iamzjblhevbm5emwfciplparqgqqg6mncunyq4kfszke9qkqkti6zbgb7wbzxcup7zq vdyq1bksizcqahfc20krude4cait4j52sxmfbdksx2i4ukbsy09uv1vg7cx1ksha8nazm7fh2qbl caeaeaanqanqbtfbs4o5qnactuypyamfi0trn190qbaxjhmfefgouoytwwgqulzpwm3atdvsww2v ujcg1ei4k79hso6dciamvj72hk8utov2kknnqxvjx2wnqjxesuulkthunclssndadtgagagbuzz mftwhe7pl92bddolu0lx1pjaxflxxlsep3fkzqwti1maipfhkds5bsvzknnttzbqgkrfuhu8pc4 4htdiinw1l90bxmasdacbe7agtgrc7dsgunna7yziovdy4lpse9ezurnr7antacfhuz2lplneg nuuvfmw7tu1w42popearypbavyxs3apg5ionsahfabababadlthkoezdlbugy9dw7xeqamdrk34 d9dt07tk0nnxhxr3fbgttsseuapsacacacacacacacacacacacacacacacacacacakeedkm4c gwthmlfbdmtydwgfvqk50qujeltpowa0svyi8cq43hvhmhce1nm5jrllbqmm1vftuoiysxnsktid tatpwveozoppuwa9cx5jyhvhmw4jxevztvttkh3jb4viugam5urqyw2tavjq20h5qdloupslqa l3flroujcqsz9q5sb5lsz7sh7ptj4ziivtdpzvw6pblqhxkkk9qewgpzzp8t5ny8zxzhmfvfzbv pw1urqwamhk3xa15swm1ahxvblylegb6ofzt43xhnum0val3dxbmvwxgkrbrldqqeeslxbje1t kjsoucskmyc5qpwaigxfp87zrhu51poiccylytlarjdgr0qp5ts6l5ltvkdyjt8mtiq6npmcfuy eycs4i42xylqayhuvi18aw0ltsonrhdabcq0nqacleon7quhjuszsg2aiayir8xua4xyuwlpnr7j v5dyjtcnc4grvnqez3slr8oqpcpeslpuky75asbylzrkd3aghzlyapvmyxj6wu77tkdpqkivt1rb 3tkltzsqb9lxwaiqyvnfmfbul8vze7zi5qwi6pqpbdtuzimrlubxivcqqfpqnyce7ujflbs93uma lam5xylwexfhsnzv1jsuxxjrzvx7ih0ujkwq66ldjyu2ppds42hs7vjlqogeyeavuyjkposas9tv vdzcfsrqh5vpw8vou9m2urpib9u6z0apsko8maq0mataenc3ch3iwbdaqfkb7l1qx8cejce um0niof3akbrvw2yuqkpe0gcafllybyogmaspgyouahrqem74p1smjwdcaovlrc6vkljvimpok pnhxxnlv4z9cwjxad5uoqlzajchfn7feayb6gakiw668o8au92xplctaqsryelq525sldjvtswy wk2nujl2djlo3rtb1gc0vg9zwc8sxnoehltacsulqyawsf6qftulpwup0furefjbs9vbuzbtwct szicu2qzvnddzlnfrlzshk2hwkdhlc47uu9sjeiagthunakfkisw5ejloajmtxlou3zyp5fkwv 1xxf48zhkoukuocqgaomnblbae70ioctoq0rprradx4rytvhzgbkosfuqam7xu8otdnp3djt1xh n9wvksoxclvqihxblsc4aazxini1xc68g13mylxkvm8vuggsupzcqg0lauq02pcgp2j8jw8dui ajwwfnnlrt5e8mzqopexdl8wwaevbutb8b21ljbe0fqkpfbgtie5psegejyvnd5ow3c6nnrooz s5wltvkuwfo6iu8ppds8y2qlo5r2gwxidt0mbfdew71jnqbyiupbnfk06rxxg3gppn1djiaqpp pktiat6acaevkzo6djfc7rltdtwqja20vmoy8erc91lodvvlllomz7iad9nidvlphof8v5huh 6huzdevrslx2oqqxo1b2yyjskopqmqlqr7maw78smrpjgbuop2f11vjyrm01simvurbwurq0ntq rxgkqbxg2cu55yfv3esvnlhww5trbnntfg1npb3qtrc0f6ksrwq0anxuruqfrmawetlpioc8d3jl bnebbnnogtuwi8wyb1o7tountjcdkuodvw5bi1cu0pkdqsqk0yvnd5ow3c6nnroozs5wltvku wfo6iu8ppds8y2qlo5r2gwxidt0mboxpmfz1x9w9jkfx5k51c6tpirvvpgxp5llpxxbru0y98a vtkkazmpdsaei8n8j4p5acyytnw9cmtyfbu3urql40tpvqfezccscifhibqjecmzn1kiaj3b8j 5aymqsdxyue6zvi65o6usffttozqsobkdpdrblnvbx9nbrokgcakxnnq8xyr8aorldkcy5x0yct zqrbkjckinx6lafoekqfsenrdonuawbjpd2k8m8a8r3iuuns6vvnupazeqw51tjfutiaglfdnu ptkeowpb4uotukrtlcasyag3im3zuhslzv1y52qlbd4fbjlhcdqkeprvrnqfpw3ttsclejlciey naeq41zpmlr5ycmzwv5otuny5zrtdaldbzvimnqh2saei0x16ypm6zmardbs38wl24hvmcnmv uen2muqhdy8spunw46pljwwfobjs20pyv9jmyo6mwgdamtzvlxiljkrfxcgbzzbg4hi91s1jq 12lbzfcqfpbxvdwtzaqvsnorujtgbhvdbc5u2sdmcfurnsxu2vrnjf2y4tfrwmit5ybcwlpukk i3hs06htgd6bwaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqaqbtljueuumw8wxzo62hbhv55somu nxreg3ubbqghkpf4ei2ypd8oeuogc5savi564izo7cj0kgewyjyqokphrpyk4slk3ajkgwfn1bq 28w602hkk7t3xtwam8p445jyblmqvimshw7c0rbvu0blntduptv6agsglc3uaciskagguibhf uher8q8y1nnv0sgbwijuljum16qqkun4e2tilz8flxfk6619hwrayeattzltcvo2skf4hqqzf0z cctcacpbplkqgxegjls6sfpkm1azciaohrpigvevefmvj7nottfxrysur6ratdcppxsutlusnu9 5umwd32lbto69nokialpmry7xjkop8mtgj1sa64trjtqevawx8btlppctpushc0qackhsgnpi3a cai6vhhfmx5atuoyrl9po7hjmpltjuljjcd6mmbs88hp95tziw9wt4sep1m5tnac7zrwvnt1t2c yxxzzfxpf8ttrrsqpdvr0xvv1liffutl7zaipxhbwytkajkafxze8rci5vamdxpa7lzwpf7eph9 1ntsuw8vlbldadts80o7w2tlaje9agjngrn7i2buofu5pt4pbe2qqtsxm2lbsg2kh9aduhcyr wyf9u6ddzamtpogdm1senmuuawwxunsaczrz7oq0zy0duvs3hkpwxpe6atskyvuajmqhfzr w7yfl1p46xremf8aibpi9jbpqgqq6jnw6tagmnekdjycsoqwk7kgjuypwaly2g0swgxwqxuwaprv r09ayb02uzswky9iyaidzhcr37llhravfqsm36yopkzpxxvmtvlfuladbkh7oxnpbtu06jscav8r mg80twig4nugntixuhw0lt912hssn06ptpwh1bsgz02j3gutekap3jlbldu4gosfxiqrc8kav iv8aeavdgyzqnvsfhtbknshjdsq3t8qp3bsddiqawanh7nk7cy0ehuxh9ntckgoqurqg3qnu73mh s1ju66t7yg2yfeclgk7dokdadxybh3k9zy8ybxxysellaut9wyomnzqokjovcmwxfppawfekgjy oy2ifbadxuhav0vxlysxg58k3zzaii7pbewltx5gtty3wnhgt4pu1c2wpjibl9waimsfgnlpsfd hzheglpxgjqffevxsktfy86wpxtm11bq1hyg7bukvbqabpwajuv2g8yyrxzaali44r5ul11jbf abdq0fjvlfsliuwl5cwdzkujqvobfegukgmainvabhzlyezalbx8a2lfkkwk3xkacule5vejbv ebplnd9pqbaovtajcalp4hjymtxwx4w3ulq0wwgp7eklwbvofdtpb3smds5acensak3ezjauzoub 9bbji2pf3dbqkopq11tcymorhhjbpbcfs5tzqdizon9ouwracpk3kutddi1dvyzdrndsszpwqiox fujnouajcmawjyk6y3oad8ak3exhfo2ccv5tybztmy9lqro1dlmktyirgalcmktvdu23h0nqkwk ykwnzdkyagnkgbc955zh8fytiyryaoqpeezfbbasudaxq5tllm6htf2jhjmjskvegcvk8acz8bc r2hglrtsvwr0j1sfav1unuh74w7ttmutt4aqwrt39uzvp9gaiiv8axhzlyezalbx8a2lfkkw k3xkacule5vejbvebplnd9pqbaovtajcahdzvwlyxf7zx9h2f21v8swiwcubtxcqaol3vkvdaus2 8heigekegqaza9yafnkuo85ww02k0crqorhitbaqa2v1keyoxhn1iajdrk7xgngwlo0hcjgxxq chqngbkjlll7xclrg1o4ysloeiut1quw2xslzwtxddliz4pgijpso9rgb4avidktpcksdxg3n ftprf8a9snotnusvh5x0uflq0bsxersn3zy269kalxjfhmhjvbtnt9zpaanzqluarqhqzxphld m14zltsfh1trwlcm3zkcloy6gcaimqehucrtxjr4drcf2e0ioahc6uobeo27vcyflultrq3tgbbj 94kwctt2iqmaphjuhet3plxhvhfix4ux5q5p3di6y1lcgok5ukbbculpyv4qcnijlaj9sakmx8r cii8uwjcz4zzrvx9nuirykmftsnegfkfqvpljryg3ch3g0zqtwie6af4co5az5xjxpb2w6bmx2hv vlgt1utrxrxvry8zki0fegknhw7azsjksya4k1ixlwdouwpzdzg7pij8wvywsslqnri8wg5ftbq 1egllsugsve7ias7abababababababababababababababababababababababababababababa babababababababababababababababababababababababababababababababababababababa babahz _nextpart_000_0021_01c2327292934220 deathtospamdeathtospamdeathtospam sfnet email sponsored bythinkgeek welcome geek heaven httpthinkgeekcomsf _______________________________________________ spamassassinsightings mailing list spamassassinsightingslistssourceforgenet httpslistssourceforgenetlistslistinfospamassassinsightings tue 23 jul 2002 175838 0700 discover infobytel today<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |
<|begin_of_text|><|start_header_id|>system<|end_header_id|>Classify the email message as either "phishing" or "legitimate", Only answer in JSON with this schema:{"classification": str}<|eot_id|><|start_header_id|>user<|end_header_id|>creditfixThank You,Your email address was obtained from a purchased
list, Reference # 1590-17700.  If you wish to unsubscribe from this list, please
Click here and enter your
name into the remove box. If you have previously
unsubscribed and are still receiving this message, you may email our
Abuse Control Center,
or call 1-888-763-2497, or write us at: NoSpam, 6484 Coral Way,
Miami, FL, 33155".
© 2002 Web Credit Inc. All Rights Reserved.
<|eot_id|><|start_header_id|>assistant<|end_header_id|>{"classification": phishing}<|eot_id|> |