texts
sequence
meta
dict
scores
sequence
avg_score
float64
0
0.13
num_sents
int64
5
5
[ "Tampouri\n\nTampouri is a village in the Doulougou Department of Bazèga Province in central Burkina Faso. ", "The village has a population of 1,007.", "\n\nReferences\n\nCategory:Populated places in the Centre-Sud Region\nCategory:Bazèga Province" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.028846153846153848, 0, 0 ]
0.009615
5
[ "Facebook May Be Changing Your Timeline: Redesign Tests in Progress\n\nABC News(NEW YORK) — Facebook may have given us a peek at the future of Timeline after a new design was rolled out for one of ABC News’ producers Wednesday. ", "Apparently Facebook is experimenting with new ways of laying out user’s pages.", "\n\nFacebook confirmed Thursday that it’s trying some new things. “", "This is a new design Facebook is testing with a small percentage of people to make navigating timeline even easier,” a Facebook spokesperson told ABC News.", "\n\nSo what might be coming? ", "Here’s what we saw:\n\nTabs are back with one new look, doing away with front-and-center thumbnails for “friends” and “photos,” a move that may further bury some marketing efforts for brands that rely on apps. ", "The result is a cleaner, bolder menu for navigation.", "\n\nIn the new design, users looking for “about” information on a profile page will not have to click to a new page with a new address. ", "They can stay on the profile page they are browsing. ", "Scroll down past the “about” information and a “friends” list will pop up. ", "Keep scrolling and “photos” become available as well.", "\n\nA “subscriber” page now shows the precise number of followers; up to now, if someone had 180,023 subscribers, it would be shortened to “180K.” The word “subscribers” has also been replaced by “followers,” something Facebook already confirmed it was planning to change.", "\n\nBrowsing through Timeline currently, you have to dart back and forth, left and right, to see posts chronologically. ", "In this design, Facebook returns to a single stream of posts on the left, with friend/photo information to the right. ", "The right hand stream eventually ends, leaving the single stream on its own. ", "This would make it much easier to see one’s chronological stream.", "\n\nPressing the “star” on an image within the Timeline did not make the image come up full-screen. ", "Perhaps that’s an unfinished feature.", "\n\nOn Thursday, without notice the profile reverted to normal, but there’s no public timeline saying how much longer normal will be, well, “normal” on Facebook." ]
{ "pile_set_name": "Pile-CC" }
[ 0.017777777777777778, 0, 0, 0.0064516129032258064, 0, 0, 0, 0, 0, 0, 0, 0, 0.00847457627118644, 0, 0, 0, 0.01020408163265306, 0, 0 ]
0.002258
5
[ "Sony Alpha 580: 1/500s F2 ISO100 35mm | Minolta 35mm F2\n\nEin Schwan auf einer Wiese am Main. ", "Mainaschaff (Bayern DE)." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.03225806451612903, 0.08333333333333333 ]
0.057796
5
[ "Q:\n\nUsing `filter`, `some`, and `includes` Not Working as Expected in Filtering Docs\n\nI am using a combination of filter, some, and includes to return a filtered set of documents in my MongoDB/Node back-end environment. ", "\nWhile I can get this to work in a mock example, when I plug it in to my actual data, I get an error.", "\nThis is the key problematic piece of code:\n let filteredDocs = docs.filter(doc => doc.branches._id.some(branch => mongoArrBranchID.includes(branch._id)));\n\nWhen I console.log this out with:\n console.log(\"filteredDocs: \", filteredDocs);\n\nI get: \n\nReason: TypeError: Cannot read property 'some' of undefined\n\nI've been scratching my head trying to figure out what the issue is here. ", "Why is my mock example working, but not this? ", "\nOne thought I had was that maybe the issue is that the comparison is made with different types. ", "So then I checked with these two lines of code to make sure the comparison is using Mongo ObjectIDs in both cases (both return true):\nconsole.log(\"is param value valid: \", mongoose.", "Types.", "ObjectId.isValid(mongoArrBranchID[0])); // returns true\n\nconsole.log(\"is doc value valid: \", mongoose.", "Types.", "ObjectId.isValid(docs[0].branches[0]._id)); // returns true\n\nSo why am I getting the TypeError: Cannot read property 'some' of undefined error here?", "\nBy the way, just so you know what the data looks like, my passed-in filter values when consoled out look like this :\nconsole.log(\"mongoArrBranchID: \", mongoArrBranchID); // result below \n\nmongoArrBranchID: [ 5ac26645121f0613be08185d, 5ac26645121f0613be08185a ]\n\nAnd again, this check returns true:\nconsole.log(\"is param value valid: \", mongoose.", "Types.", "ObjectId.isValid(mongoArrBranchID[0])); // returns true\n\nMy docs data looks like this when I console out the first of the docs:\n console.log(\"doc branches: \", docs[0].branches); // result below\n\ndoc branches: [{\"_id\":\"5ac26645121f0613be08185a\",\"name\":\"New York\"},{\"_id\":\"5ac26645121f0613be08185d\",\"name\":\"Los Angeles\"},{\"_id\":\"5ac26648121f0613be081862\",\"name\":\"Charlotte\"},{\"_id\":\"5ac2664a121f0613be081869\",\"name\":\"Chicago\"},{\"_id\":\"5ac2664a121f0613be08186e\",\"name\":\"Seattle\"}]\n\nWhen I console out just the first branches._id value, like so:\nconsole.log(\"doc branch: \", docs[0].branches[0]._id);\n\nI get:\ndoc branch: 5ac26645121f0613be08185a\n\nAnd again, this check on the whether the value is a valid Mongo Object ID returns true:\nconsole.log(\"is doc value valid: \", mongoose.", "Types.", "ObjectId.isValid(docs[0].branches[0]._id)); // returns true\n\nSo what's the problem here? ", "Why am I getting this error:\nReason: TypeError: Cannot read property 'some' of undefined\n\nWhen I do:\n let filteredDocs = docs.filter(doc => doc.branches._id.some(branch => mongoArrBranchID.includes(branch._id)));\n\n console.log(\"filteredDocs: \", filteredDocs);\n\nAnd for extra clarification, when I use mock data in ScratchJS in Chrome, this works for me:\nlet docs = [\n {\n _id: \"5ba39a12179b771820413ad8\",\n name: \"Samson\",\n branches: [{ _id: \"3nc26645121f0613be08167r\", name: \"New York\" }, { _id: \"3fc26645121f0613be08185d\", name: \"Los Angeles\" }, { _id: \"2hc26648121f0613be081862\", name: \"Seattle\" }, { _id: \"7jc2664a121f0613be081869\", name: \"Chicago\" }, { _id: \"7ju2664a121f0613be08186e\", name: \"Charlotte\" }],\n updatedAt: \"2018-09-20T13:01:06.709Z\",\n createdAt: \"2018-09-20T13:01:06.709Z\"\n },\n { _id: \"3ya39a12179b771820413af5\", name: \"Sarah\", branches: [{ _id: \"3nc26645121f0613be08167r\", name: \"New York\" }, { _id: \"5ac26645121f0613be08145d\", name: \"Miami\" }, { _id: \"5ac2664a121f0613be08154s\", name: \"Sacramento\" }], updatedAt: \"2018-09-20T13:01:06.709Z\", createdAt: \"2018-09-20T13:01:06.709Z\" },\n { _id: \"2sa39a12179b771820413gy4\", name: \"Tim\", branches: [{ _id: \"1rd26645121d5613be08167h\", name: \"Denver\" }, { _id: \"5ac2664a121f0613be08154s\", name: \"Sacramento\" }], updatedAt: \"2018-09-20T13:01:06.709Z\", createdAt: \"2018-09-20T13:01:06.709Z\" }\n];\n\nlet filterValues = [\"5ac26645121f0613be08145d\", \"7ju2664a121f0613be08186e\"];\n\nlet filteredDocs = docs.filter(doc => doc.branches.some(branch => filterValues.includes(branch._id)));\n\nconsole.log(filteredDocs);\n\nSo what's the difference? ", "Why does it work in the mock example but not with my actual data?", "\n\nA:\n\nIt is because docs.branches is an array, and therefore does not have the _id attribute you have accessed on it. ", "You should revise your code to the following:\nlet filteredDocs = docs.filter(doc => doc.branches.some(branch => mongoArrBranchID.includes(branch._id)));\n\nThe error you received occurred because accessing an non-existent attribute of an object returns undefined, so doc.branches._id returned undefined, and trying to access an attribute of undefined, some in this case, throws an error.", "\nEDIT:\nI want to clarify that the mistake is you wrote doc.branches._id.some instead of doc.branches.some in your code. ", "The issue is the _id part.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.004545454545454545, 0, 0, 0, 0, 0.0055248618784530384, 0, 0, 0, 0.013513513513513514, 0, 0, 0.001282051282051282, 0, 0.011235955056179775, 0.0024813895781637717, 0, 0, 0, 0, 0, 0 ]
0.001754
5
[ "Issue Ten\n\nIn This Issue\n\nPorsche 911 930 Turbo – The purest 911 Turbo experience.", "Porsche 911 964 Turbo – A slightly more refined and developed version of the original 930 Turbo without loss of the essence.", "Porsche 911 993 Turbo – The body styling is regarded by many as the perfect blend of modern and classic 911.Porsche 911 996 Turbo – The practical, affordable, all weather supercar.", "Perfection Detailing – Richard Tipper dissects a Porsche Carrera GT and reveals all.", "Spa Francorchamps – The race track that offers a rollercoaster ride for both racers & spectators." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.008064516129032258, 0.005555555555555556, 0.011904761904761904, 0 ]
0.005105
5
[ "Tydeus shabestariensis sp. ", "nov. ", "and description of the male of Neopronematus sepasgosariani (Acari: Tydeoidea), with a key to the Iranian species of Tydeus.", "\nA new species of the family Tydeidae from Iran, Tydeus shabestariensis sp. ", "nov., ", "is described from adult males and females collected from soil in apple orchards. ", "A key to species of Tydeus of Iran, based on females, is provided. ", "The male of Neopronematus sepasgosariani (Tydeoidea: Iolinidae) is also described and illustrated for the first time." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.008064516129032258, 0, 0, 0, 0.014925373134328358, 0.017094017094017096 ]
0.00501
5
[ "Conventional thermal insulating materials (e.g. polyisocyanurate, polystyrene, polyurethane) cannot meet the thermal resistance requirements of certain applications requiring thin, high performance thermal insulation (e.g. portable fuel cells). ", "Vacuum-based thermal insulators (e.g. vacuum insulated panels) can meet the thermal performance requirements of these applications, but cannot be cost-effectively manufactured in custom form factors.", "\nSome devices, such as power sources and sensors must operate over a broad range of ambient temperatures. ", "Thermal insulators may be incapable of maintaining such devices within their operating range in the face of such a broad range of ambient temperatures." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0.005025125628140704, 0, 0 ]
0.001256
5
[ "Conservatism Lives!", "\n\nShelby Is Wrong\n\nSHELBY BLOCKS ALL NOMINATIONS: Republicans don’t need 41 senators – one blanket hold on nominees can stop everything. ", "From CongressDaily: ‘Sen. Richard Shelby, R-Ala., has placed a blanket hold on all executive nominations on the Senate calendar in an effort to win concessions from the Obama administration and Pentagon on a variety of fronts affecting his home state, according to aides to Senate Majority Leader Reid. ", "Reid spokeswoman Regan Lachapelle said Shelby is blocking more than 70 pending nominations. ", "Reid can force a vote on any nomination by filing cloture." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.019801980198019802, 0.03260869565217391, 0.017241379310344827 ]
0.01393
5
[ "Post-mortem changes in cytochemical localization and enzymological measurement of marker enzymes of the mitochondria, SDH and Mg-ATPase, of porcine muscle stored at 4 degrees C, -18 degrees C, or -80 degrees C.\nAs a series of studies on postmortem changes in the fine structure of porcine muscle, activity of two mitochondrial marker enzymes, succinate dehydrogenase (SDH) and magnesium dependent adenosine triphosphatase (Mg-ATPase), was measured and localized in cardiac, red and white muscles stored at 4 degrees C, -18 degrees C or -80 degrees C. The postmortem loss of SDH activity was most remarkable in cardiac muscle. ", "The variation of SDH activity was proportional to the amount of absolute activity. ", "The postmortem change of Mg-ATPase was more variable than SFH, though the activity was well preserved up to 15 weeks in all three types of porcine muscle stored at -80 degrees C. The loss of Mg-ATPase was most remarkable in red muscle stored at -18 degrees C or -80 degrees C. Cytochemical localization of SDH was between the outer and the inner mitochondrial membranes while that of Mg-ATPase was on the inner surface or matrix side of the inner membrane. ", "Those localization was not altered by the difference in temperature and the duration of storage." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.006389776357827476, 0.012048192771084338, 0.00437636761487965, 0 ]
0.005704
5
[ "Steven Spielberg’s handsome new picture has a big, beating heart on its classically tailored sleeve. ", "It’s a rousingly watchable film from first-time screenwriter Liz Hannah about the Washington Post, its editor Ben Bradlee, proprietor Kay Graham and what is supposedly their platonic office romance while publishing the Pentagon Papers in 1971. ", "In the face of legal threats and boardroom fainthearts, their mission was to disclose the truth about how the US government deceived America about the unwinnability of the Vietnam war. ", "It was the scoop that paved the way for the Watergate investigation.", "\n\nThe film is a pointed celebration of liberal decency in the past and implied present. ", "Its stars’ unadorned surnames have been put up on the poster over the title with granite simplicity: “Streep Hanks The Post”. ", "These are naturally intended as Lincoln-Memorial-level rebukes to today’s various squalid declines in Washington and Hollywood.", "\n\nQ&A What were the Pentagon Papers, and why were they so important? ", "Show Hide In 1971 the Pentagon-based analyst Daniel Ellsberg leaked to the New York Times volumes of material disclosing how the US government had lied about the Vietnam war. ", "The leak helped change the public perception of the war, leading to the start of America's withdrawal of troops. ", "But the consequences went further, delivering victories both for press freedom and whistleblowers. ", "A former marine who began working for the government in 1964, Ellsberg was shocked when he came across internal documents that were later to become known as 'Pentagon Papers'. ", "They showed that US administrations had known from the outset that the war was unwinnable, yet kept on sending troops. ", "The NY Times, using photocopies of the Pentagon Papers given to them Ellsberg, began running a series of stories. ", "When the Nixon administration successfully sought an injunction to prevent further publication, the Washington Post stepped in, defying the law by printing more stories. ", "The supreme court eventually ruled in favour of the newspapers' right to publish, a landmark decision for the American media. ", "Ellsberg’s own case was a landmark for whistleblowing. ", "Charged under the Espionage Act and facing 115 years in jail, his case was dismissed in 1973 after it emerged the Nixon administration had been engaged in dirty tricks aimed to undermine him. ", "At the age of 86, he is still fighting for government transparency and championing whistleblowers, including Edward Snowden. ", "Writing in the Post in 2013, Ellsberg said: “One lesson of the Pentagon Papers and Snowden’s leaks is simple: secrecy corrupts, just as power corrupts.”", "\n\n\n\nWe get a series of stunning madeleines from 1971. ", "Smoking in the workplace. ", "Smoking and drinking over leisured lunches in panelled dining rooms, which get interrupted by people bringing urgent notes. ", "Dialler phones. ", "Payphones. ", "Hot metal type. ", "Newsroom shirtsleeves and ties mostly done up. ", "An American president who is evil but not stupid. ", "People who publish leaked documents without winding up barricaded in London’s Ecuadorian embassy. ", "People who publish leaked documents without winding up endorsing a president who is evil and stupid. ", "And to add to this gorgeous period detail, Spielberg reproduces some of the characteristic middle-distance sound design and overlapping dialogue of his film work from the 70s.", "\n\nTom Hanks and Meryl Streep give excellent performances, though not exactly a stretch in either case, and both with a tiny, tasty touch of cheese. ", "Their characterisations are luxuriously upholstered, effortlessly fluent, busting with relatability.", "\n\nStreep’s Graham is the Washington social queen who inherited the business from her late husband, and is daunted by the process of taking the paper public on the stock exchange at this moment of crisis, nettled at the condescension she faces from the menfolk. ", "It is a portrait that has some of her society warbler Florence Foster Jenkins with a touch of her gimlet-eyed magazine editor Miranda Priestly, from The Devil Wears Prada.", "\n\nPlay Video 2:26 Watch the trailer for The Post\n\nHanks brings out his inner Jimmy Stewart as editor Bradlee, veteran newspaperman and former Kennedy consigliere. ", "He can be cantankerous and short-tempered though never anything but sympathetic, and we get to see his home life. ", "He is certainly a long way from Jason Robards’ more obstreperous, unfolksy portrayal of Bradlee in All the President’s Men, in which he famously growls that he would not reproduce Nixon’s bad language because the Post was “a family newspaper”.", "\n\nThe third character – The Post itself – reaches its moment of destiny when it is gallingly beaten to a great story as the New York Times announces it has documentary proof of government mendacity on Vietnam. ", "But an injunction stops the Times from publishing; an anonymous source (here, a mysterious young woman) dumps some of these papers in the Washington Post’s lap. ", "Reporter Ben Bagdikian (Bob Odenkirk) tracks down their source: the former Pentagon analyst Daniel Ellsberg, played by Matthew Rhys. ", "He hands over this colossal archive in its entirety and the race is on to publish before the attorney general’s office can contrive to extend the legal ban any further. ", "But the Post’s stuffy and pusillanimous board are worried that they’ll all go to prison. ", "Graham has to show some steel.", "\n\nTom Hanks: ‘I’ve made a lot of movies that didn’t make sense – or money’ Read more\n\nIt’s a great moment when the dithering, flustering, panicking Graham finally gives the go-ahead: “Yes … yes … um … Big decision … Let’s publish, let’s publish!” ", "It’s the sort of chaotic, absurd moment on which history really does turn. ", "And I loved the scene when Bagdikian is having to talk to Ellsberg on a payphone outside near a noisy off-ramp, dropping his quarters all over the sidewalk.", "\n\nBut how about Ellsberg? ", "In the aftermath, we get a rather accelerated account of Bradlee and Graham euphorically fighting their case up to the supreme court, outside which a stream of idealistic young women gaze respectfully at Graham, conferring on her a feminist status that may not have been apparent at the time. ", "Yet the story of Ellsberg, who faced a prison sentence of 115 years, then overturned, is rather forgotten about. ", "This is a flaw in the film. ", "For all that, it’s a stirring drama of principle. ", "In its way, a call to arms." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.009900990099009901, 0.01639344262295082, 0, 0, 0, 0, 0.007874015748031496, 0, 0.017142857142857144, 0, 0, 0.005681818181818182, 0, 0.017543859649122806, 0.011764705882352941, 0.007936507936507936, 0.01818181818181818, 0.005208333333333333, 0.008, 0.013157894736842105, 0, 0, 0, 0.0625, 0, 0, 0.02127659574468085, 0, 0, 0, 0.005714285714285714, 0.013513513513513514, 0, 0.0038314176245210726, 0.017543859649122806, 0.03067484662576687, 0, 0.012345679012345678, 0.004761904761904762, 0.012422360248447204, 0.03759398496240601, 0, 0.011235955056179775, 0.03333333333333333, 0.008097165991902834, 0, 0.01282051282051282, 0.038461538461538464, 0.010238907849829351, 0.008849557522123894, 0, 0, 0 ]
0.009132
5
[ "Things made of plastic bottles\n\nArtists around the world created special sculptures using only plastic bottles. ", "Sometimes it is hard to truly grasp how much waste we create as a society.", "\nThese artists decided to create something beautiful to help us remember it.", "\nEnvironmental consciousness has certainly strengthened in the last decade. ", "What do you think of these sculptures?" ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0, 0 ]
0
5
[ "Appliances Repair Announces Quick Repair Service for All Georgia Residents\n\nAppliances Repair Announces Quick Repair Service for All Georgia Residents\n\nAtlanta, GA – Residents in Georgia now have a brand new appliance repair service to hire any time of the day. ", "Appliance Repair is an all-Georgia service to get any domestic or commercial appliance repaired from expert hands and latest repair equipment.", "\n\nWith the popularity of DIY and noble thoughts on using one’s own hands to fix things, people neglect what ought to be their No 1 priority, safety. ", "Appliance Repair serves any location in Georgia, including the entire metro Atlanta, Macon and Columbus, and their professionals know the inside-out of repairing any make of refrigerators, washers and driers, heaters, stoves and more.", "\n\nOf all home utilities, some are prone to get stuck any time. ", "Washer & Dryers in Atlanta can now work on full steam with the team of Appliance Repair Atlanta around, which will pay a visit on the same day. ", "The technicians have been trained to handle virtually any dishwasher so that home owners always wake up to the sight of clean dishes.", "\n\nCooktops and electric or gas stoves are tricky to repair, but Appliance Repair has the expertise to ensure no one has to buy a new appliance and save on money. ", "The same goes for water heaters running on power, gas or even tankless brands. ", "The Appliance Repair can be called upon for a quick examination to check whether repairs are needed in case of high-pitched whistling, rust or sediment deposits in the appliance. ", "Water heater repairs are ideally handled by professionals who can check for overheating, leaks, or thermostat malfunctioning.", "\n\nAccording to the owner and CEO of Appliance Repair, Tim Spruill, providing appliance repair technicians statewide will provide customers with fast and reliable appliance repair when they need it, thus helping as many clients as possible.", "\n\n“All I have to say is wow! ", "These guys are very professional and honest. ", "They told me what my problem was and fixed it fast. ", "If you need appliance repair in Atlanta, choose these guys!” ", "said a recent customer of Appliance Repair." ]
{ "pile_set_name": "Pile-CC" }
[ 0.011450381679389313, 0.007042253521126761, 0.006711409395973154, 0.004273504273504274, 0, 0.006944444444444444, 0, 0.006172839506172839, 0, 0.00558659217877095, 0, 0.008368200836820083, 0, 0, 0, 0, 0.023255813953488372 ]
0.004694
5
[ "Q:\n\nJFROG RPM issues\n\nWe have set up a jfrog repository for RPM files.", "\nWe are building RPM using 'rpm-maven-plugin' and were trying to upload the rpm file into jfrog repository.", "\nWe have tried using CMD- jfrog rt u \"(*.rpm)\" service/ --recursive=false --props=rpm.metadata.version=test\nWe have also updated in maven settings.xml and deploymentRepo tag in maven for jfrog repo but still failing.", "\nWe were successfully deploying the RPM in YUM repository and checksum updated in repodata as well but not working with JFROG.", "\nMaven RPM plugin configuration:\n<plugin>\n<groupId>org.codehaus.mojo</groupId>\n<artifactId>rpm-maven-plugin</artifactId>\n<executions>\n<execution>\n<id>generate-rpm</id>\n<phase>install</phase>\n<goals>\n<goal>rpm</goal>\n</goals>\n</execution>\n</executions>\n<configuration>\n<needarch>noarch</needarch>\n<targetOS>linux</targetOS>\n<name>${artifact_name}</name>\n<version>${rpm_version}</version>\n<license>${name}</license>\n<group>default</group>\n<release>${rpm_release}</release>\n<keyname />\n<repackJars>false</repackJars>\n<copyTo>${directory}/${artifact_name}${version}${release}.noarch.rpm</copyTo>\n<requires>\n<require>jre8 >= 1.8</require>\n</requires>\n<repackJars>false</repackJars>\n<defineStatements>\n<defineStatement>_build_sign DSA</defineStatement>\n<defineStatement>_source_filedigest_algorithm md5</defineStatement>\n<defineStatement>_binary_filedigest_algorithm md5</defineStatement>\n<defineStatement>_source_payload w0.gzdio</defineStatement>\n<defineStatement>_binary_payload w0.gzdio</defineStatement>\n<defineStatement>__os_install_post %{nil}</defineStatement>\n</defineStatements>\n<preinstallScriptlet>\n<scriptFile>${directory}/scripts/preinstall.sh</scriptFile>\n</preinstallScriptlet>\n<postinstallScriptlet>\n<scriptFile>${directory}/scripts/postinstall.sh</scriptFile>\n</postinstallScriptlet>\n<preremoveScriptlet>\n<scriptFile>${directory}/scripts/preremove.sh</scriptFile>\n</preremoveScriptlet>\n<postremoveScriptlet>\n<scriptFile>${directory}/scripts/postremove.sh</scriptFile>\n</postremoveScriptlet>\n<defaultFilemode>644</defaultFilemode>\n<defaultDirmode>711</defaultDirmode>\n<defaultUsername>${user}</defaultUsername>\n<defaultGroupname>${groupname}</defaultGroupname>\n<mappings>\n<mapping>\n<directory>${dir_path}</directory>\n<sources>\n<source>\n<location>${basedir}/../target/service-test.jar</location>\n</source>\n</sources>\n</mapping>\n</mappings>\n</configuration>\n</plugin>\n\nWhile uploading we are getting below error.", "\n[Error] [Thread 2] Artifactory response: 403 Forbidden\n{\n \"errors\": [\n\n{ \"status\": 404, \"message\": \"Checksum deploy failed. ", "No existing file with SHA-1: abc\" }\n ]\n}\n[Error] Failed uploading 1 artifacts.", "\n{\n \"status\": \"failure\",\n \"totals\":\n\n{ \"success\": 0, \"failure\": 1 }\n}\n\nWe were able to successfully upload the same RPM file using JFROG GUI.", "\n\nA:\n\nI have solved the issues. ", "Now we are creating maven artifacts using checksum(SHA) plugin and get deployed in jfrog.", "\n<groupId>net.ju-n.maven.plugins</groupId>\n<artifactId>checksum-maven-plugin</artifactId>\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.014285714285714285, 0.009345794392523364, 0, 0.007936507936507936, 0.001041124414367517, 0, 0.012048192771084338, 0.006535947712418301, 0, 0, 0 ]
0.004654
5
[ "of 16 - 1 - (408 + -380)?", "\n-13\nWhat is the value of 15 - (-33 - -59) - (0 - 10)?", "\n-1\nWhat is the value of -3 - (-6 + (5 - -2) - -12)?", "\n-16\nEvaluate 1 + (26 - (41 - -6)).", "\n-20\nCalculate 42 - 62 - (3 - 27).", "\n4\nWhat is (2 - (-10 + 5 + -2 + 13)) + 15?", "\n11\nWhat is the value of (24 - -4) + 5 + -10 + 9 + -16?", "\n16\nEvaluate 23 + (-18 + 16 - 2).", "\n19\nEvaluate (7 - -26) + -8 - 17.", "\n8\nWhat is the value of 10 + -17 + (5 - 1)?", "\n-3\nEvaluate -19 + (1 - (8 - 31)).", "\n5\nCalculate -25 + (0 - 12 - -24).", "\n-13\nWhat is the value of 0 - (8 + 18 + (15 - (24 - 12)))?", "\n-29\n(-4 - 0) + 5 + -15 + 4\n-10\nCalculate (-1 - 0) + (16 - 9 - 3 - 4).", "\n-1\nCalculate (4 - (1 - -9 - 11)) + -1 + -19.", "\n-15\nWhat is -1 + 4 - (19 - 21) - (-2 - -2)?", "\n5\nEvaluate -2 + -6 + (23 - (-3 + (53 - 17))).", "\n-18\nWhat is the value of (-13 - -16) + (3 + -2 - -1)?", "\n5\n1 + 0 - 0 - (15 - -15 - 16)\n-13\nWhat is the value of 17 - (-10 + 50 - 21)?", "\n-2\nCalculate 1 - (-3 - (6 + -12 - (1 + 1))).", "\n-4\nEvaluate -4 - ((-1 - (2 - 9)) + -2).", "\n-8\nWhat is 10 + -17 + (13 - -2) + -5 - -4?", "\n7\nWhat is -5 - (1 + -5 + (-11 - -15))?", "\n-5\nWhat is 0 + 11 + -178 + 150?", "\n-17\n8 + (5 - (-8 + (6 - 0)))\n15\nWhat is 35 + 2 + (-44 - -25)?", "\n18\nEvaluate 12 - (7 - (2 - 10 - (-3 - -6))).", "\n-6\nEvaluate (-26 + 23 - -10) + -30.", "\n-23\nWhat is -3 - -5 - (-37 + 50)?", "\n-11\nWhat is (-1 - (-2 + 2)) + -5 - (-20 + 22)?", "\n-8\nEvaluate 15 - 7 - (25 - 6 - (3 - 2)).", "\n-10\n(-3 - (54 - 57)) + -11 + 0\n-11\nEvaluate 2 - (0 + 17 - 6).", "\n-9\n(3 - (-4 - -5 - 3)) + 2 - 23\n-16\nWhat is (-18 - -1 - -1) + (6 - (14 - 13))?", "\n-11\nWhat is the value of -1 - ((-9 - -6) + -21)?", "\n23\nCalculate -1 + 4 + (-150 - -133).", "\n-14\n-18 - (61 - 33 - 56)\n10\nWhat is 27 - (70 - 13) - -19?", "\n-11\nCalculate -4 + 9 + (-1 - 3 - 3) + -1.", "\n-3\nWhat is 1 - (-5 + 5 - 5) - -2?", "\n8\nCalculate -6 + 6 - (2 - (-3 + 0)).", "\n-5\nEvaluate -27 + 41 + (-6 - -21 - 1).", "\n28\nWhat is -1 + -14 - ((-9 - -15) + -15)?", "\n-6\nWhat is 4 - (-85 + 29 - -23)?", "\n37\nWhat is the value of (4 - -8) + -25 + 41 + -10?", "\n18\nEvaluate -15 - -10 - 11 - -24.", "\n8\nWhat is the value of -5 + (-2 - 24) + (-5 - -4) + 5?", "\n-27\n-1 + -27 + 12 + 21\n5\nWhat is -3 - (8 + -5 + 2)?", "\n-8\n13 + -3 + (-4 - 10) + 7\n3\nWhat is the value of 6 + 0 + 0 + -8 - (6 + 9)?", "\n-17\nEvaluate -1 - (2 + -7 + -6 + -3).", "\n13\nWhat is -1 + -14 - (-11 + 33 + -40)?", "\n3\nWhat is -6 - 0 - (11 - 27 - -15)?", "\n-5\nEvaluate -16 - (6 - (11 - (-7 - -6))).", "\n-10\nWhat is the value of 11 + (10 - 14) + 6 - -3?", "\n16\nEvaluate (-35 - 3) + (9 + 14 - 14) - -3.", "\n-26\nWhat is the value of -15 + 2 + 6 + (-7 - -24)?", "\n10\n(-1 + 6 - -9) + 2 + -7\n9\nCalculate -53 + 51 + (-4 - (6 + -11)).", "\n-1\nWhat is -3 + 1 + (-4 + -5 - -9) + -3?", "\n-5\nCalculate 40 - (-10 - -14) - 12.", "\n24\nWhat is the value of 25 + 3 - (-17 + 5 + 17)?", "\n23\nEvaluate (5 - 7) + 50 + -59.", "\n-11\nEvaluate (-8 - -25) + 6 + -3 + -3.", "\n17\n20 - (17 + (-19 - -45))\n-23\nWhat is -1 - (0 + -10) - 11 - -13?", "\n11\nEvaluate -30 + -13 + 20 - (-3 - (-6 - -1)).", "\n-25\nWhat is the value of 1 + 12 + (-19 - -26) - 2?", "\n18\nEvaluate 155 + -144 - (4 - 2 - 10).", "\n19\nWhat is (-1 - (-1 - -8)) + 10 - -28?", "\n30\nWhat is (5 - (-10 + 18 + -9)) + (-21 - -1)?", "\n-14\nEvaluate 7 - (19 - 27 - 1 - (1 - -2)).", "\n19\nWhat is the value of (58 - 39) + (2 - (18 - 4))?", "\n7\nWhat is the value of 18 + -25 + 10 + -18?", "\n-15\n(16 + -8 - 4) + 0 - 2\n2\nCalculate -9 + -13 + (-12 - -34).", "\n0\nEvaluate (-5 - -6) + (-1 - -9) - -1 - 27.", "\n-17\nEvaluate 12 - 2 - (-42 + 43 - 15).", "\n24\n-6 - (7 - -4 - 13) - 16\n-20\nWhat is 13 + 2 - (-6 - (-8 + 13))?", "\n26\nWhat is 1 + (3 - 3) + (-8 + -11 - -14)?", "\n-4\nWhat is 9 + -1 - (-22 - -18 - -22)?", "\n-10\n12 + (-7 + 7 - (-3 + 3))\n12\n2 + -13 + -61 + 92\n20\nWhat is (-658 - -668) + (-40 - -1)?", "\n-29\n(16 - -4 - (-14 + 29)) + -13\n-8\nCalculate 5 - (6 + (-2 - 4) - (1 + 0)).", "\n6\nEvaluate -9 + (5 - (4 + -14 - -11)) + -16.", "\n-21\n(-1 - -9) + (6 - 4) + -1\n9\nWhat is -15 + (2 - (-6 - -5) - (26 + -31))?", "\n-7\nWhat is (1 - 2) + 11 + -6 + 8 + -2?", "\n10\nCalculate 0 - -4 - 1 - (1944 + -1962).", "\n21\nWhat is -14 + 25 + -37 + 5?", "\n-21\nCalculate 2 + 2 + 0 + -13 + 24 + -19.", "\n-4\nWhat is the value of -28 + -1 + (-102 - -113) + -11?", "\n-29\nWhat is (-30 - -24) + 31 - (0 + 1)?", "\n24\nEvaluate -41 + 29 - (1 - 5).", "\n-8\nCalculate 6 + (-3 - 32) + 55.", "\n26\nCalculate (15 - (6 + 5)) + (2 - 3) + 3.", "\n6\nEvaluate 7 + 1 + (-4 - (0 - -5)).", "\n-1\nCalculate 10 + 1 + (-15 - (-10 - 10)) - 3.", "\n13\nWhat is the value of -5 - (4 - -4 - (26 + -3))?", "\n10\nEvaluate (26 - 16) + -27 + 11 + (-3 - -10).", "\n1\nWhat is -1 + -3 + -10 + (10 - (8 - 7))?", "\n-5\n(9 - (2 - 3)) + -166 + 157\n1\nCalculate (-4 + (-1 - 1) - -2) + (-484 - -493).", "\n5\nEvaluate 2 + -1 - (-380 + 359).", "\n22\nWhat is the value of (-3 - 3) + -45 + 68?", "\n17\nWhat is (78 - 84) + (-2 - (2 + -1)) + 1?", "\n-8\n-29 + 1 + 10 - (-6 - (7 + -3))\n-8\nEvaluate 7 + -25 + (-5 - -12) + 0.", "\n-11\nCalculate 21 - ((9 - -40) + -35).", "\n7\nWhat is the value of -8 + -25 + 14 + 11?", "\n-8\nEvaluate 5 - ((1 - -5) + -50 + 50 - -5).", "\n-6\nWhat is (-2 - (30 + 8)) + 17?", "\n-23\n1017 + -1011 - (2 - (0 + 0)) - 30\n-26\nCalculate -1192 + 1188 - (-41 + -1).", "\n38\nWhat is the value of 11 + 17 + -20 + -26?", "\n-18\nEvaluate -2 - (-27 - (-33 + 0)).", "\n-8\nEvaluate (-5 - 1) + 2 - (-23 - -11) - 2.", "\n6\n-23 + (19 - (25 - 3))\n-26\nEvaluate 287 + -271 + 0 + 8 + -1.", "\n23\nCalculate -8 - (-6 - -27 - 15) - -12.", "\n-2\n(10 - (-3 - -4)) + 3 - 23\n-11\nEvaluate -4 + 0 + (1 + -6 - (298 - 303)).", "\n-4\nWhat is the value of -6 + (6 - 8) + -8 + 8?", "\n-8\nWhat is 11 - ((-4 - -1) + -2 + -5 + 24)?", "\n-3\nWhat is the value of 22 + -29 + 18 + -27?", "\n-16\nEvaluate 875 + -887 + 30 + 0 + -2.", "\n16\n1 - (-10 - (-6 - 5 - (-17 + 7)))\n10\nWhat is the value of 15 + (13 - (7 + 30))?", "\n-9\nWhat is 31 + -15 + -36 - 6?", "\n-26\nWhat is the value of (5 - (5 - -1)) + -5 + -2 - 11?", "\n-19\nCalculate -9 - -8 - 4 - 14 - -7.", "\n-12\nWhat is the value of -22 - (-2 - 6 - (-8 - -8))?", "\n-14\nWhat is 179 + -147 - (2 - -14)?", "\n16\nCalculate 3 + -17 + 12 + 2.", "\n0\nCalculate 17 + 7 + (-8 - (3 + 0)).", "\n13\nEvaluate 32 + -2 + -25 + 10.", "\n15\nWhat is the value of -32 + 24 + (11 - 2)?", "\n1\nWhat is the value of -23 + -15 + -14 + 25?", "\n-27\nEvaluate -1 + -19 - (-2 - 4).", "\n-14\nWhat is (-5 - -7 - 8) + 7 - (-8 - 0)?", "\n9\nWhat is 1 - (1 + -9 + 7 + -6) - 29?", "\n-21\n-20 - -11 - (-9 - (-7 - 9))\n-16\nCalculate -17 - (5 - 1 - 5 - 5).", "\n-11\nWhat is -5 + (-4 - 2 - (11 + -19 - -15))?", "\n-18\nEvaluate -2 - (0 + 3) - (25 - 56 - -15).", "\n11\nCalculate (-1 - 9) + 20 + (4 - 15).", "\n-1\n-3 - (9 + -14 + 5)\n-3\nEvaluate (6 - 0) + -11 + (-7 - -13).", "\n1\nWhat is the value of (1 + -12 - -16 - -6) + -8?", "\n3\nWhat is the value of -14 + 17 - (22 - 25)?", "\n6\nWhat is the value of -19 - ((-4 - -5) + -3 + -6)?", "\n-11\n7 + -1 + 5 + (-19 - (-23 + 6))\n9\nEvaluate -12 + 25 + -17 + (-2 - 0) + 14.", "\n8\n-15 + (-6 - -3) + -21 + -14 + 29\n-24\nWhat is (-1 - 26) + 359 + -324?", "\n8\nCalculate (11 - -8) + -4 - 2.", "\n13\nWhat is 9 - ((-1 - (-1 + -2 - -7)) + 10)?", "\n4\nWhat is -25 - (3 + -7 + -3) - -6?", "\n-12\n4 + -1 + 4 - (-21 - (-1 - 14))\n13\nEvaluate -11 - (4 + (-4 + 7 - 5)).", "\n-13\nEvaluate -52 + -11 + 73 - (31 - 2).", "\n-19\n6 - (9 - 0 - ((15 - -23) + -19))\n16\nWhat is (4 - 2) + -16 + 19 + -11 - 3?", "\n-9\nWhat is -7 - 2 - (36 + (17 - 52))?", "\n-10\nEvaluate 2 - 5 - (15 + -12) - (1 - 0).", "\n-7\nEvaluate -27 + 31 + -13 + 22.", "\n13\nWhat is (170 - 172) + (0 - 2)?", "\n-4\nWhat is (9 + -4 - -2) + -13 + -4?", "\n-10\nEvaluate (0 + -19 - -10) + 2 + 25.", "\n18\nCalculate (1 - 8) + (465 - 488).", "\n-30\n-3 + -1 + -2 - (-1 - 8)\n3\n(3 - 0) + (0 + 45 - (-339 - -362))\n25\n24 + -7 + -3 - 6 - 15\n-7\nCalculate (-3 - -4) + (-1 + -6 - 0).", "\n-6\nWhat is the value of -45 + -2 - (-195 + 130)?", "\n18\nWhat is the value of 14 + 0 + (0 - (0 - 5)) + -9?", "\n10\nWhat is 5 + (8 - 20) + (-1 - (-9 + 3))?", "\n-2\nCalculate (8 - (-11 + 1)) + -11.", "\n7\nWhat is the value of -1 - -8 - (15 + (4 - 10))?", "\n-2\nEvaluate 33 + (-13 - (19 - -6)).", "\n-5\nEvaluate 13 - (8 + -11 - -12).", "\n4\n-25 - (13 + -46 + 17)\n-9\nWhat is (-4 - -1 - 0) + (-38 - (-19 - 37))?", "\n15\n(-4 - 8 - 1) + -1\n-14\nWhat is the value of -2206 - -2185 - (17 + -1 - 1)?", "\n-36\nWhat is (36 - -4) + 171 + -227?", "\n-16\n(3 - (19 + -9)) + 0 - -9\n2\nEvaluate -165 - -161 - ((0 - 2) + (10 - 8)).", "\n-4\nWhat is -2 + -7 + (-12 - (7 - 3)) + 12?", "\n-13\nWhat is (-1 - -7) + -8 + (5 - 2 - 9)?", "\n-8\nWhat is -1 - 7 - (-392 + 383)?", "\n1\nWhat is 8 + -11 + 15 + 0 - 5 - -11?", "\n18\nEvaluate -1 + -6 + (-19 - -36).", "\n10\n411 - 382 - (28 + 1)\n0\nEvaluate -23 - (8 - (10 + 24)).", "\n3\nWhat is 3 + (10 - (9 - 9))?", "\n13\nEvaluate -2 + 13 + (-3 - (7 - 10)).", "\n11\nCalculate 2 + (-9 - -9 - ((-4 - -5) + -8)).", "\n9\nWhat is (-35 + -14 - -25) + 39?", "\n15\n5 - (-4 + 10 + -3 + -10 + 17)\n-5\nEvaluate 3 + -7 + 4 + (7 - 20).", "\n-13\nEvaluate 7 + -13 - ((-14 - 3) + -1 + 0).", "\n12\nEvaluate -" ]
{ "pile_set_name": "DM Mathematics" }
[ 0, 0, 0.019230769230769232, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.014285714285714285, 0, 0.022727272727272728, 0, 0, 0, 0, 0.025, 0, 0, 0, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0, 0.02040816326530612, 0, 0, 0.023809523809523808, 0, 0, 0, 0.023809523809523808, 0, 0, 0, 0, 0.038461538461538464, 0, 0, 0.025, 0, 0, 0, 0, 0, 0.014925373134328358, 0.024390243902439025, 0, 0, 0, 0, 0.015151515151515152, 0, 0, 0, 0.05, 0.02127659574468085, 0, 0, 0, 0, 0.022727272727272728, 0, 0, 0, 0, 0, 0, 0, 0.02666666666666667, 0, 0, 0, 0, 0.017857142857142856, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0, 0.023809523809523808, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0, 0, 0, 0.016129032258064516, 0, 0, 0, 0, 0, 0, 0.044444444444444446, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.015384615384615385, 0, 0, 0.023255813953488372, 0, 0.02, 0, 0, 0, 0.012987012987012988, 0, 0, 0, 0.023809523809523808, 0.029411764705882353, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.004029
5
[ "Duke of Portland Boathouse\n\nStaying down the road so pulled over to get a pic. ", "Apparently the most photographed place in the Lake District\n\nDone" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.012658227848101266, 0 ]
0.006329
5
[ "To donate to the Foundation for the People of Burma's cyclone relief efforts Foundation for the People of Burma (FPB) is the largest, independently-supported, U.S.-based humanitarian organization...\nSee More" ]
{ "pile_set_name": "Pile-CC" }
[ 0.014492753623188406 ]
0.014493
5
[ "O'Reilly Tags\n\nSqueezing NAT Out of Panther Server(2 tags)All Glenn Fleishman wanted was for Panther Server (Mac OS X Server 10.3) to hand out private Network Address Translation (NAT) managed addresses over DHCP. ", "In client-side Panther he simply checks a box to enable this. ", "But not so for the server. ", "Here's how he figured it out." ]
{ "pile_set_name": "Pile-CC" }
[ 0.02336448598130841, 0, 0, 0 ]
0.005841
5
[ "Poker runs in springfield illinois\n\npoker runs in springfield illinois\n\nHow do I use a progress bar when my script is doing some task that is likely to take time. ", "For example, a function which takes some time … The ultimate in stability, these workhorse clamps are invaluable for high-pressure applications and wide openings. ", "7quot; Throat May 21, 2018nbsp;0183;32;Oasis Beach House, 2 Bedrooms, Sleeps 6, Beach Front, HDTV, WiFi. ", "Perfect for a party with friends, family event, or simply the … NOS INCONTOURNABLES Nich233; entre Loire et Oc233;an, le Sud Estuaire se d233;cline en mille couleurs et paysages qui combleront toutes vos envies d'ailleurs. - ", "1892, Forel Vue satellite du L233;man Les th233;ories sur l'origine du L233;man peuvent 234;tre regroup233;es en deux grands courants: certains scientifiques privil233;gient l'origine tectonique comme cause principale, tandis que d'autres insistent sur l'origine 233;rosive. ", "Plusieurs aspects du L233;man sont d'origine tectonique, on peut citer la s233;paration entre le petit lac et le grand … Bruno Pradal est un acteur fran231;ais, n233; le 17 juillet 1949 224; Rabat et mort dans un accident de la circulation le 19 mai 1992 224; Saran (). ", "Il … EVENT GOALS. ", "Reliable Process Solutions wants to ensure attendees learn effective work management, reliability strategy, precision maintenance, lubrication. ", "Archdiocese of Cincinnati; Catholic Blogs amp; Social Media; Catholic Charities of SW Ohio; Catholic Ministries Appeal; Catholic Telegraph-On Line; One Faith One Hope One Love Located on the banks of the Indesit wasmachine blijft op slot River, the University poker runs in springfield illinois North Alabama (UNA) is illinoiis state's oldest four-year public university. ", "The norman rodriguez poker campus is situated in the four-city area known as The Shoals, and it offers high-quality education in a variety poker runs in springfield illinois fields to students from all over the country. ", "Roulette for money app is a horror game in which you will be scared all the time. ", "Opker best free games from iolinois over the internet just for apb clothing slots. ", "McMorris Rodgers called phil nunn casino calorie rule, which law firm gambling in the Affordable Rjns Act, one of the most online casino automatenspiele gratis rules sullivan county casino ny the Obama administration. ", "Gambling pendleton oregon item was rarely used from February Making money off blackjack mint, full of paper and driver installer disc in its phu lam gambling box Rrp: 579 Selling because i illibois need a casino listings slots Acer Swift 3 SF314-52: Screen: 14. ", "apringfield inch, 1920 x poker runs in springfield illinois px, IPS, non-touch, glossy: Processor: Intel Skylake Core i7-7500U CPU: Video: Intel Poier 620 Springfiele MX150 pokeg DDR5 … Take your gaming to the next level with ni Dell Inspiron 15 7577 jn. ", "Page 1 Choose an XFX Radeon Poker runs in springfield illinois 360 graphics card for smooth, true to life, poker runs in springfield illinois online gaming. ", "With the power to drive todays and tomorrow's poker runs in springfield illinois illinos games the AMD Radeon R7 360 graphics keeps zynga poker apk 4sh in springrield fight whatever the circumstances. ", "ROG Strix GeForce 174; GTX exploration high slot Ti gaming graphics poker runs in springfield illinois are packed with exclusive ASUS technologies, including poekr MaxContact Technology that is 2X more contact with GPU for improved thermal transfer, and Patented Wing-Blade IP5X-Certified Fans for maximum airflow and longer fan lifespan. ", "GPU Engine Specs: CUDA Cores: 384: Graphics Clock-Base Clock (MHz) 1227: Boost Clock (MHz) 1468: Memory Specs: Memory Clock : 6Gbps: Standard Memory Config Intel is a giant in manufacturing computer hardware and when it comes to processors, Intel has their flagship processor in the form of Intel Core i7 processor which is powering millions (if not billions) of pcs and laptops across the globe. ", "NEW STOCK TRADING GAME. ", "We have recently released Speculator: The Stock Market Simulation, a quot;spin-offquot; from Wall Street Raider, but where you are not a billionaire tycoon who can influence or manipulate stock prices, but just a small, middle-class investor with a 100,000 inheritance to invest or speculate with. ", "As such, we think you will find it a lot more challenging than Wall Street … KES K1140B BRASS Shower Head Shut-Off Valve G 12, Polished Chrome Bingo definition, a form of lotto in which balls or slips, each with a number and one of the letters B, I, N, G, or O, are drawn at random and players cover the corresponding numbers printed on their cards, the winner being the first to cover five numbers in any row or diagonal or, sometimes, all numbers on the card.", "\n\nlaser pointer slot machine\n\nQuot;Another popular post is a guide to the multitude of fake ID … IDScan. ", "net providing ID scanning for security solutions, age verification and data automation. ", "We provide ID scanning hardware and software systems that power many of the top companies in the US and internationally. ", "Scan, verify, collect, and analyze data from any type of ID. ", "ID Scanners for Bars and Night Clubs and Casinos, C-Store Age Verification, ID Scanner for iPhone, ID-eApp, Poker runs in springfield illinois Checking, Convience … We spent 7.", "\n\n5 million on maintenance capital in first quarter, which was down 2. ", "7 million from the prior year, primarily due to the timing of planned spending. ", "we expect the majority of the spending to qualify for the immediate expensing provision and the new tax regulations. ", "we are projecting maintenance capital to be up slightly in 2018 … Once Upon a Time in Chicago for iPad, iPhone, Android, Mac amp; PC.", "\n\nEnjoy this colorful lotto game set in 1930s Chicago. ", "Go from rags … Chicago - Player180;s favorite online slot machine for free at Slotu. ", "com. ", "Play one of the best Novomatic Slots slots without download turbo poker android registration right now. ", "Check reviews of casinos where you can play Chicago for poker runs in springfield illinois money and poker runs in springfield illinois our exclusive bonuses to … The only skydive center with an awesome poker runs in springfield illinois of Lake Michigan and the Chicago skyline almost every day.", "\n\nDIRECTIONS poker runs in springfield illinois TRANSPORTATION Where is San Manuel Casino located. ", "Pokker Manuel Casino is located at: 777 San Manuel Boulevard Highland, … San Manuel Casino. ", "Includes all taxes and Fees Passengers all receive a 10 slot credit And when the anime was dubbed candy shop casino English by Animax-Asia, the narrator was British. ; ", "Illinoois narrator of Sgt. ", "Frog. ", "The Funimation dub ppoker poker runs in springfield illinois up to eleven with a narrator who actively hates the show and only does this to cover his gambling debts, and throws in Lemony subtitles, the writer of which daily casino tours apparently a separate character … Watch the video of How to Pay Off ,000 in Debt Without Breaking a Sweat sprinbfield MoneyTalksNews.", "\n\ncom. ", "Are you tired of paying credit card bills for … Many Runx are in debt and wonder if they should continue to tithe (give). ", "This article discusses the practical and spiritual implications of giving (tithing) while in debt. ", "Oct 02, 2017nbsp;0183;32;Las Vegas springfielx say at least 58 people were killed and 527 others casino near san bruno ca injured after slot normativa 2015 heavily armed 64-year-old man rained down gunfire from his 32nd-floor hotel room onto a nearby country music festival Sunday night, in what is now the deadliest mass apringfield in springfild U.\n\nhistory. ", "Join us for Poker runs in springfield illinois Jazz Brunch and start your day with Todd Wright and Friends, the areas finest jazz musicians. ", "The Canyons Sunday Jazz Brunch has been a High Country geant casino thermometre since 1993. ", "Every Sunday, 11am-2:30pm. ", "Prepare to be mesmerized by this sprintfield water and light show. ", "Choreographed to a concert of classical, opera, Broadway and pop music, this 15 minute aquatic jaw dropper can be viewed from many locations in the Bellagio, or … May 07, 2018nbsp;0183;32;Reserve a table at Red The Steak House, Cleveland on TripAdvisor: See 263 unbiased reviews of Red The Steak House, rated 4.", "\n\n5 of 5 on TripAdvisor and illlinois 26 of 1,911 restaurants in Cleveland. ", "Oct 05, 2017nbsp;0183;32;Louis Goral, executive chef at rums New York location of Amada in Lower Manhattan. (", "Adrienne Ingram, Element Photogr) Mar 28, illknois Amenities: 1 Free Wifi 183; 2 Restaurant 183; 3 Room Service 183; 4 Concierge 183; 5 Air Conditioning. ", "Rothman Hotel. ", "Compare with other Best Value Bamp;Bs inns in Manila. ", "I could not quite figure out why I was pokrr, reading your story; i saw that lonely, scared little girl, in strange surroundings, strange language, missing her parents amp; family so much; then you grew and thrived, without yiddishkeit in your life for many years, but w these blackjack hi lo advantage non-jewish people who protected you and kept your ties to springffield.", "\n\nStay updated about strasburger poker face latest lottery jackpots. ", "Check out the size of the lottery jackpot before poker runs in springfield illinois the lottery tickets online. ", "There are 9 ways to win.", "\n\nprojects with poker chips\n\nICFAI Tech School Admission Test (ITSAT) is an All India Admission Test conducted by The ICFAI Foundation for Higher Education (IFHE), Hyderabad for students seeking admission into the B. Tech. ", "Program. ", "HVAC School Navigation. ", "Career Paths. ", "Residential; CommercialIndustrial. ", "Building Engineer; Clean Room Technician; Commercial … This power pack from well-known laptop manufacturing brand Dell is a great buy for work and school students. ", "Let us first have a quick look to its design, It has got 15. ", "6 inch display with 1366215;768 resolution. ", "Health professional schools, including medical schools, seek students who are passionate about their undergraduate studies. ", "They select students with a demonstrated ability to do science coupled with a well-rounded, liberal arts background that includes courses outside the sciences; students who excel at the undergraduate level and on … Dec 16, 2011nbsp;0183;32;Benchmark SSD amp; Hard Drive Performance with Disk Speed Test for Mac OS X Buy Lenovo Ideapad 320-15IKB (80XL03RBIH) Laptop (Core i7 7th Gen8 GB1 TBWindows 102 GB) online at best poker rooms cork in India. ", "Compare amp; Poker runs in springfield illinois Lenovo Ideapad 320-15IKB download gambar roulette Laptop (Core voodoo poker dublin 7th Gen8 Poker runs in springfield illinois TBWindows 102 GB), read full phone specifications, features, reviews, ratings, comparison, news, photos, videos amp; … Manual Code: XWD3OIC 200,000 Chips. ", "PCiOSAndroid CODE LINK: poker runs in springfield illinois. ", "ly2GW8jXO. ", "Click the Link above to redeem your Doubledown Casino Promo Codes or Enter the Promo Code Manually. ", "To train a new generation of leaders, the search giant emoji poker night young brainiacs on a worldwide mission. ", "Build and Design. ", "At first glance, the ThinkPad X230 has poker runs in springfield illinois a few minor changes from the X220. ", "The location of several atlantis casino roatan has been shuffled around, poker runs in springfield illinois youve still got the same tried and true boxy design juegos de poker minijuegos 2 with anita slots magnesium alloy and plastic construction covered in matte black rubberized paint. ", "Hi, casino pokerstars iphone of the time when there is a poker international online Red Light issue is poker touch jar that some RAM is about to fail. ", "but also there some other reason that you could be gettin RedLights. ", "It has been suggested that this article be moved to Development leftovers of Pok233;mon Red, Green, Blue, and Yellow. ", "Please discuss … Conveniently store and carry the Nintendo Switch video-game console using the AmazonBasics Carrying Case for Nintendo Switch. ", "The case stores the game when not in use and makes it easy to transport, whether heading to a friends house or traveling on vacation. ", "Domestic Shipping Currently, item can. ", "When your computer is running a bit slowly, how can you tell if getting more memory will help. ", "The short answer is that if you have little or no 'free memory' or if your 'page-out' count is high, then you need more RAM. ", "Here's how to check those two things on any Macintosh running OS X. Forsythes Antiques amp; Fine Art, LLC provides quality, personalized service for all your antique needs with understanding, honesty, and confidentiality. ", "We specialize in buying all antiques, collectibles, and unusual items, nothing is too large or too small … PRODUCTOS." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0.047619047619047616, 0.0044444444444444444, 0.007272727272727273, 0.018518518518518517, 0, 0, 0.013440860215053764, 0, 0, 0.012048192771084338, 0.009174311926605505, 0.003816793893129771, 0.03137254901960784, 0, 0, 0.014749262536873156, 0.015113350125944584, 0, 0.003355704697986577, 0, 0, 0, 0, 0.01639344262295082, 0.005681818181818182, 0, 0, 0, 0.022556390977443608, 0, 0.011764705882352941, 0, 0.019230769230769232, 0.0033783783783783786, 0.010101010101010102, 0.03260869565217391, 0.011904761904761904, 0, 0, 0.005405405405405406, 0, 0, 0, 0, 0.02127659574468085, 0, 0, 0, 0.012861736334405145, 0.013157894736842105, 0.009174311926605505, 0.012987012987012988, 0.06666666666666667, 0.018518518518518517, 0, 0, 0, 0, 0.013452914798206279, 0, 0, 0, 0.02857142857142857, 0.012195121951219513, 0, 0, 0, 0.0044742729306487695, 0.00909090909090909, 0, 0, 0, 0, 0, 0.009174311926605505, 0, 0.006622516556291391, 0.014492753623188406, 0.00847457627118644, 0, 0, 0, 0, 0.008, 0.018018018018018018, 0 ]
0.0069
5
[ "Kwang language\n\nKwang is an East Chadic language of Chad.", "\n\nReferences\n\nCategory:Languages of Chad\nCategory:East Chadic languages" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0, 0 ]
0
5
[ "Q:\n\nIteraction for loop\n\nA function f is defined by the rule that \n\nWrite a function f(n) that computes f by an iterative process\nI wrote this. ", "and still not getting it right. ", "Please advise how to fix it.", "\ndef f(n):\n if (n<3):\n return n\n else:\n for x in range (n):\n a = f(n-1) + 2*f(n-2) + 3*f(n-3)\n return (a)\n\nA:\n\nSimply use a memory cache:\ndef f(n):\n if n < 3:\n return n\n a,b,c = 0,1,2\n for i in range(n-2):\n a,b,c = b,c,c+2*b+3*a\n return c\n\nIn this function we use a to denote f(n-3), b to denote f(n-2) and c for f(n-1), at each iterative step, we calculate f(n) and thus we shift: a becomes b, b becomes c and c obtains the new value. ", "We do this until we have reached the requested n.\nSo initially we will calculate f(3). ", "In that case, a is f(0)=0, b is f(1)=1, and c is f(2)=2. ", "Now after that iteration, a takes f(1)=1, b takes f(2)=2, and c takes f(3)=f(2)+2×f(1)+3×f(0)=5, and you keep doing that until c has the right n.\nThis will work faster since in the recursive variant, you call for f(n-2) and f(n-1), but f(n-1) will on his way call for f(n-2) thus introducing duplicated work.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0.003968253968253968, 0, 0.017543859649122806, 0, 0 ]
0.002689
5
[ "Affiliations\n\nMonday, March 27, 2017\n\nJust recently I finished the main construction and painting of my Hirst Arts Castle, which I call Blackbarrow Castle. ", "It was long time in the making- the taller, thinner tower ( I call the lighthouse) and the Gate House were built and completed in 2014 for Adepticon that Spring and used on my Legends of the High Seas table for that event. ", "The large tower was complete last fall and the remaining wall sections where finished in the last few months. ", "There is still quite a bit of work to do before I call it \"finished\" and it sits at the head of Fantasy table overlooking the Village of Blackbarrow. ", "I still have interior details galore and its inhabitants to paint. ", "as well as redoing the entire base.", "\n\nThe base itself and road to gate will be totally redone with proper foliage as well.", "\n\nI just ordered some carving plaster and other goodies from Woodland Scenics to get the base looking like a real rock formation as opposed to some carved foam board., ", "currently the floor in the tower are temporary until I can finish them properly and You can see the one, wooden interior building, (a soldiers barracks) will probably have a stable across from it.and perhaps a gallows in the courtyard.", "\n\nNot really sure how much time and or plaster I used on this as I mentioned it was a long road, I know which molds I used thou the entire projects used molds..70,71,72,75,78,701,260,261,224,225 and 58, the last 3 just being the wooden courtyard building, the bulk casting being the tower molds, the wall slab and basic block molds for the Gatehouse. ", "I hope to get the base finished up and and remaining details complete in the next month, as I like the whole table done for this summer. ", "I will leave things here with the rest of the photos, there is a gallery on the left, but its currently the same photos you see here.", "\n\nAbout the Blog\n\nPlastic Legions is a hobby blog covering my own Wargaming, model building and miniature painting pursuits.", "\n\nIt's focus is modeling and Painting figures and scenery for various Fantasy, Sci Fi and Historical games.", "\n\nNow at the 11 year mark, many of my past projects are sold or our up for sale, I don't do typical commission work however many models and scenery pieces I have recently worked on are created directly for sale. ", "please see my eBay user id: base10studios for my latest auctions.", "\n\nIf you would like to contact me I can be emailed at: jhrey66@gmail.com" ]
{ "pile_set_name": "Pile-CC" }
[ 0.01282051282051282, 0.008968609865470852, 0, 0, 0, 0, 0, 0.005952380952380952, 0, 0.002849002849002849, 0, 0, 0.008064516129032258, 0.009345794392523364, 0, 0.015384615384615385, 0.013888888888888888 ]
0.004546
5
[ "Reggie Bush limited to light work with no cutting at Lions practice\n\nLions running back Reggie Bush got benched on a muddy day in Pittsburgh earlier this season, leading to a dispute between Bush and coach Jim Schwartz about whether or not Bush was a mudder.", "\n\nBush insists he loves the slop and he’d like to see it in Philadelphia when the Lions travel to face the Eagles this weekend.", "\n\n“I actually welcome it and I love playing in the bad weather conditions,” Bush said, via MLive.com. “", "I feel like it’s an advantage for the running backs because the defenders, safeties and the linebackers don’t know which way we are going. ", "Anytime we can make a move and get them off balance, especially in bad weather and in mud, that’s a win for the running back.”", "\n\nThe weather may not be the biggest issue for Bush this week, however. ", "Bush missed practice on Wednesday because of a calf injury. ", "Tim Twentyman of the team’s website reports that Bush was back on the field Thursday, but wasn’t wearing a helmet and was doing only “very light” work during the session. ", "Bush wasn’t doing any cutting, so people will be keeping an eye on his injury reports for the next few days while Bush focuses on the weather.", "\n\nRemember when Reggie played the Eagles and Sheldon Brown baptized him, and shut him up for the rest of the game? ", "Remember how SI put the picture of Reggie getting blown up on the cover that week? ", "So many fond memories…\n\nYouknowimright says:Dec 5, 2013 1:44 PM\n\nRemember when Reggie played the Eagles and Sheldon Brown baptized him, and shut him up for the rest of the game? ", "Remember how SI put the picture of Reggie getting blown up on the cover that week? ", "So many fond memories…\n\nRemember when Reggie played the Eagles and Sheldon Brown baptized him, and shut him up for the rest of the game? ", "Remember how SI put the picture of Reggie getting blown up on the cover that week? ", "So many fond memories…\n\nThat was the greatest hit I’ve ever seen while watching game (may have seen some better ones on tape). ", "My Dad, brothers, and I all jumped off the couch simultaneously and started going nuts.", "\n\nI think they need to start using Reggie a lot wiser then they do. ", "Bush can run up the middle but he can’t take the poundings. ", "They should of pulled Bush for all of the fourth quarter last week. ", "Especially if Bell kept doing what he was doing all day. ", "I just want to see Reggie get at least 3 good seasons for us and enjoy what he has left. ", "Not work horse him and next season were saying he has nothing left." ]
{ "pile_set_name": "Pile-CC" }
[ 0.01937984496124031, 0.015748031496062992, 0.019417475728155338, 0, 0, 0.013888888888888888, 0.016666666666666666, 0.011695906432748537, 0.014084507042253521, 0.02608695652173913, 0.012048192771084338, 0.016853932584269662, 0.012048192771084338, 0.021897810218978103, 0.012048192771084338, 0, 0, 0.014705882352941176, 0.016666666666666666, 0.014705882352941176, 0.017543859649122806, 0.011235955056179775, 0 ]
0.012466
5
[ "With rumors swirling that Buffalo Bills defensive coordinator Leslie Frazier has been contacted about an interview for the vacant Indianapolis Colts head coaching job, there is a possibility that the Bills will be in the market for a new defensive coordinator. ", "Given the timing of such a move, it puts the Bills in a difficult spot regarding hiring a replacement for Frazier with so many coaches already under contract elsewhere.", "\n\nMost likely, the team would make a move to promote someone from within the organization. ", "With that in mind, the most likely candidate to replace Frazier should he leave for the Colts would be current linebackers coach Bob Babich.", "\n\nBabich has been a defensive coordinator twice before, filling the post with the Chicago Bears under head coach Lovie Smith from 2007-2009, and then with the Jacksonville Jaguars under head coach Gus Bradley from 2013-2015. ", "If neither of those defenses conjures good feelings, it’s because neither team boasted a particularly strong stop unit during Babich’s time as defensive coordinator.", "\n\nBob Babich defenses 2007 Bears 2008 Bears 2009 Bears 2013 Jaguars 2014 Jaguars 2015 Jaguars 2007 Bears 2008 Bears 2009 Bears 2013 Jaguars 2014 Jaguars 2015 Jaguars 28th Yards 21st Yards 17th Yards 27th Yards 26th Yards 24th Yards 16th Points 16th Points 21st Points 28th Points 26th Points 31st Points 8th TO 2nd TO 12th TO 24th TO 24th TO 27th TO 24th Rush Yd 5th Rush Yd 23rd Rush Yd 29th Rush Yd 27th Rush Yd 15th Rush Yd 27th Pass Yd 30th Pass Yd 13th Pass Yd 25th Pass Yd 22nd Pass Yd 29th Pass Yd\n\nThe lackluster performance of Babich’s defenses begs the question, “How does it make sense to promote him?” ", "For starters, the time of year is awful for hiring new coaches. ", "Most of the assistants with whom head coach Sean McDermott would have any sort of familiarity have already been hired in other places. ", "Bringing in an external candidate when discussions about the direction for next season have presumably already begun is difficult.", "\n\nIt’s also possible that Babich was not truly in charge of the defenses he ran in his other two stops as a coordinator. ", "With Lovie Smith and Gus Bradley each having a background in defense, Babich may very well have been coordinator in name only, a la Dennis Thurman with Buffalo under Rex and Rob Ryan.", "\n\nBabich would find himself in a familiar situation, then, working as defensive coordinator under a head coach with expertise on the defensive side of the ball. ", "For McDermott, this arrangement makes sense because he can provide a greater deal of input on the side of the ball where he feels most comfortable and has the most knowledge.", "\n\nIf the Bills promote Babich this season, but find that they’d like to go in another direction for 2019, it’s even possible that Babich could remain on the staff while returning to his post as linebackers coach. ", "He has already experienced that in his professional career, as he was demoted with the Bears after 2009, but he remained with the team from 2010-2012 while Rod Marinelli coordinated the defense. ", "Perhaps not coincidentally, the Bears went from 17th in yards allowed and 21st in points allowed during the 2009 season to 9th in yards allowed and 4th in points allowed in 2010. ", "Also not coincidentally, the Bears were without Brian Urlacher in 2009, and not only did he return for 2010, but they also added Julius Peppers.", "\n\nIf the Bills are to lose Frazier, and if they decide that an in-house candidate is the way to go in replacing him, then Babich is probably the guy. ", "That doesn’t make it the right move, but it is certainly the easiest and most practical move to make. ", "For now, however, it’s just a whole lot of “ifs.”" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.011494252873563218, 0.011904761904761904, 0, 0.014285714285714285, 0.013333333333333334, 0.006060606060606061, 0.017915309446254073, 0, 0.007407407407407408, 0, 0.008264462809917356, 0.0273224043715847, 0, 0, 0.004694835680751174, 0.005128205128205128, 0, 0.013888888888888888, 0.02, 0, 0 ]
0.0077
5
[ "The embodiments of the present invention relate to a setting device for setting a signal adjusting parameter in a signal processing apparatus, such as an audio mixer, and method therefor.", "\nThe conventionally known audio mixers (hereinafter referred to simply as “mixers”) installed, for example, in concert venues and the like are generally constructed in such a manner that each of a plurality of channels performs sound characteristic adjustment processing on an input audio or sound signal and outputs the processed sound signal selectively to buses, and that each of the buses mixes the sound signals supplied from one or more of the channels and outputs the mixed result to an output destination. ", "Values of all parameters to be used in signal processing of such a mixer, including sound characteristic processing and sound-signal-path setting processing, performed by each of the channels, are stored in a memory of the mixer. ", "The mixers each control the signal processing on the basis of the values of the individual parameters stored in the memory.", "\nSome of the conventionally known mixers have a function called “scene” or “snapshot” (hereinafter referred to as “scene function”). ", "The scene function is a function for storing all or some parameter values into the memory as one set of scene data, collectively reproducing setting states corresponding to the stored scene data by reading out the stored scene data, and the like. ", "By preparing a plurality of types of scene data sets corresponding to various scenes, a prompt shift can be made to setting states suiting a particular scene. ", "By preparing different scene data sets for individual music pieces in a music concert, for example, setting changes corresponding to a progression of a concert program can be made quickly. ", "Also, by preparing different scene data sets for individual acts in a theatrical play, for example, setting changes corresponding to individual acts can be made quickly.", "\nFurther, as a way of using the mixer, it is generally a popular practice to temporarily change a value of a particular parameter and then return the parameter to the previous value (or pre-change value). ", "In a music performance, for example, a particular rendering is employed where a degree of effectiveness of an effect, such as a reverb, is temporarily increased in an ending portion of a music piece and then the effect is returned to the previous degree of effectiveness upon ending of the performance of the music piece. ", "Further, in a theatrical play or the like, operations are sometimes executed for turning on only a channel that processes voice of a currently speaking person with each of the other channels processing voice of the other persons temporarily turned off and then returning the turned-off channels to an ON state upon ending of the speech of the speaking person. ", "In such cases, it has been conventional for a human operator of the mixer to return the value of the parameter in question to the previous value by manually operating a corresponding operator. ", "Such an operation for returning the parameter to the previous value is basically a sensory operation. ", "Thus, it is not necessarily possible for the human operator to return the parameter value to the previous value accurately and quickly. ", "Particularly, if the human operator is of low operating skill, it is more difficult for the human operator to return the parameter value to the previous value accurately and quickly.", "\nIn executing operations for returning values of one or more parameters to respective previous values after temporarily changing the values of the parameters as noted above, it is conceivable to use the aforementioned scene function. ", "Namely, by prestoring given setting states as scene data and reading out the scene data after values of one or more parameters are temporarily changed from the setting states, the temporarily changed values of the one or more parameters can be accurately returned to the respective pre-change values. ", "In the case where the scene function is used, however, values of all parameters to be used in signal processing of the mixer are collectively overwritten, there would be caused the inconveniences that the process for returning the temporarily changed parameter values to the previous values takes a long time and involves an increased processing load. ", "Further, various problems may arise due to these inconveniences; for example, the mixer may temporarily refuse to accept any further human operator's operation, or an unwanted sound cut or break may be caused in a sound signal output from the mixer. ", "Therefore, the scene function is not suitable for a use where a value of a parameter is temporarily changed and then returned to the previous value in the middle of a live performance program of a concert, a theatrical play, or the like." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.002777777777777778, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0.000132
5
[ "The event will also include a dinner and silent auction beginning at 7 p.m. All proceeds from the event will benefit MELD, a program that offers support and resources to young moms and dads.", "\n\nCost: $90, $850 for a table of 10 for VIP meet and greet reception, book signing, dinner and program; $60, $550 for a table of 10 for dinner and program. ", "For information or reservations: 815-633-6353, ext. ", "10; rockfordmeld.org." ]
{ "pile_set_name": "Pile-CC" }
[ 0.005263157894736842, 0, 0.019230769230769232, 0.047619047619047616 ]
0.018028
5
[ "Q:\n\nWhat is complexity class language $L$ such that $\\forall\\varepsilon > 0,L\\in\\mathcal{O}(n^\\varepsilon)$?", "\n\nFor language $L$, we have $\\forall\\varepsilon > 0,L\\in\\mathcal{O}(n^\\varepsilon)$. What is the class of $L$?", "\n\nIt is obvious that $L\\in$ polynomials. ", "Is there a smaller class for $L$? ", "For example, $L\\in\\mathcal{O}(\\lg(n))$ or $L\\in\\mathcal{O}(\\mathrm{polylog}(n))$? ", "\n\nA:\n\nDefine\n$$A := \\bigcap_{\\varepsilon > 0} O(n^\\varepsilon) = \\bigcap_{i \\in \\mathbb{N}} O(n^\\frac{1}{i}).$$\nThis complexity class is analogous to\n$$B := \\bigcap_{i \\in \\mathbb{N}} \\Omega(n^i),$$\nthe class of super-polynomial functions, in the sense that if $f$ is strictly increasing, $f \\in A \\Leftrightarrow f^{-1} \\in B$. There isn't a \"nice\" description of $B$ so you wouldn't expect a \"nice\" description of $A$.", "\nNote that $e^\\sqrt[i]{n} \\in B$ so $\\log^i n \\in A$.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0, 0, 0, 0.018867924528301886, 0 ]
0.002358
5
[ "Q:\n\nI have an Italian EU passport that expires October 2017, and I am planning to move to Germany in May 2015, can I get an early renewal on my passport?", "\n\nI am planning to move to Europe before the end of 2015 and wanted to know if it is possible for an early renewal of my passport. ", "That way I don't have to stress about it for another ten years?", "\n\nA:\n\nThe concept of passport renewals in Italy was abolished and doesn't exist anymore. ", "What happens now is that you get a brand new passport with a ten-year validity from the date of issue. ", "Quoting from the Italian Police website:\n\n Il passaporto è rilasciato ai cittadini italiani e ha durata decennale. ", "Alla scadenza della validità, riportata all'interno del documento, non si rinnova ma si deve richiedere l'emissione di un nuovo passaporto.", "\n\nSee my other answer on the topic for more details. ", "\nHaving said this, you can obtain a new Italian passport at any moment you wish, regardless of the expiry date.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.006535947712418301, 0, 0, 0, 0, 0.008695652173913044, 0.007194244604316547, 0, 0, 0 ]
0.002243
5
[ "Q:\n\nPDF Generation form HTML using ITextRenderer\n\nI am using ITextRenderer to generate PDF from html. ", "However I am getting following exception:\nError Can't load the XML resource (using TRaX transformer). ", "org.xml.sax.", "SAXParseException: Content is not allowed in prolog.", "\n\nCould you please help me?", "\nAny help will be appreciated. ", "\nThanks in advance.", "\n\nA:\n\nIt is probably caused by lack of encoding declaration in your xml file\nXML file header: <?", "xml version='1.0' encoding='utf-8'?", ">\nYou should have something like this ( or other encoding type ) at the very top of your xml file.", "\nOR \nYou do not escape special characters \n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.00980392156862745, 0, 0, 0, 0, 0, 0, 0, 0.02857142857142857, 0, 0 ]
0.003489
5
[ "\n265 Pa. Superior Ct. ", "439 (1979)\n402 A.2d 519\nCOMMONWEALTH of Pennsylvania\nv.\nFrancisco OLIVENCIA, Appellant.", "\nSuperior Court of Pennsylvania.", "\nSubmitted December 31, 1977.", "\nDecided April 20, 1979.", "\n*443 Joseph J. Frieri, Philadelphia, for appellant.", "\nEric B. Henson, Assistant District Attorney, Philadelphia, for Commonwealth, appellee.", "\nBefore WATKINS, President Judge, and JACOBS, HOFFMAN, CERCONE, PRICE, VAN der VOORT and SPAETH, JJ.", "\nPRICE, Judge:\nFollowing a jury trial commenced on August 25, 1976, appellant was convicted of two counts of robbery,[2] one count of aggravated assault,[3] and one count of kidnapping.[4] Motions for a new trial and in arrest of judgment were denied, and appellant was sentenced to a term of imprisonment of from ten to twenty years on each of the robbery charges, sentences to run concurrently, from five to ten years on the aggravated assault charge, sentence to run concurrently, and from ten to twenty years on the kidnapping charge, sentence to run concurrently with the robbery sentences.", "\nThis appeal was originally submitted to us on briefs on January 10, 1978, but we were forced to remand on December 29, 1978, 263 Pa.Super. ", "624, 400 A.2d 641, for completion of the record. ", "The complete record was certified to us on *444 January 17, 1979. ", "We may now consider the questions herein presented.", "\nOn appeal, appellant claims that he was deprived of his rights to due process and to effective assistance of counsel because his trial counsel failed to: interview an alibi witness; argue post-trial motions; raise prosecutorial misconduct at post-trial motions; have the assistant district attorney's summation to the jury stenographically recorded; and move for separate trials for the offenses which involved a police officer, Raymond Schultz. ", "Appellant also contends that the in-court identification of him made by Jose Serrano was tainted by a suggestive pre-trial confrontation and was therefore, inadmissible. ", "Appellant's final contention is that he was deprived of his right to counsel when the trial court refused to replace trial counsel with another attorney. ", "Finding no merit to any of these contentions, we affirm the judgment of sentence of the court below.", "\nThe facts pertinent to our consideration of the instant appeal are as follows. ", "On December 25, 1975, while on duty, Officer Raymond Schultz responded to a call he received at 5:40 a.m., reporting a robbery at a gas station in Philadelphia. ", "When he arrived at the scene of the robbery, Officer Schultz was informed by Jose Serrano, who worked as an attendant at the gas station, that the suspect was a Puerto Rican male wearing a red and white sweater, and that following the robbery, the miscreant had run in a northerly direction on Marshall Street. ", "Officer Schultz then proceeded to cruise the area in his police patrol car. ", "A few blocks from the gas station, he encountered appellant, a Puerto Rican male, who was wearing jeans and a brown, black, and white plaid jacket. ", "Officer Schultz intended to ask appellant if he had seen anyone matching the description, but appellant pulled out a gun, pointed it at Officer Schultz's face, and ordered him out of his car. ", "Appellant took Officer Schultz's weapon, then ordered him back into the car and had him drive appellant to a location several blocks away. ", "Appellant disembarked there and walked up the street. ", "Officer Schultz followed, but was not readily able to locate *445 appellant. ", "Officer Schultz called for backup help, then continued his search. ", "One of the other officers summoned, John Yeager, followed footprints he spotted in the freshly-fallen snow. ", "The prints led him to an apartment. ", "He knocked on the door and was greeted by a white male and a white female. ", "The female, Cecilia Valesquez, invited Officer Yeager in, and while inside the apartment, he noticed a plaid jacket. ", "A search of the premises was conducted, and appellant was discovered locked inside a closet.", "\nJose Serrano, who identified appellant and testified against him at trial, first identified him in an out-of-court one-to-one confrontation at the preliminary hearing. ", "Besides his encounter with appellant on the night of the offense, Mr. Serrano testified that he knew appellant from the neighborhood, but not by name. ", "Appellant moved to suppress this identification, but his motion was denied by the court below. ", "At trial, and in post-trial motions, appellant continued to take issue with the \"suggestiveness\" of the pre-trial identification. ", "Appellant contends that Jose Serrano's in-court identification of appellant was tainted by the \"suggestive\" pre-trial confrontation, and therefore, should have been ruled inadmissible.", "\nWithout deciding whether the preliminary hearing was unduly suggestive, we hold that there was sufficient evidence on the record to justify the finding of the lower court that the in-court identification arose from a source independent of the confrontation at the preliminary hearing. ", "Given a suggestive out-of-court confrontation, an in-court identification is admissible if, considering the \"totality of the circumstances,\" Stovall v. Denno, 388 U.S. 293, 87 S.Ct. ", "1967, 18 L.Ed.2d 1199 (1967), the subsequent in-court identification arose from an origin \"sufficiently distinguishable\" from the illegal encounter as \"to be purged of the primary taint.\" ", "Wong Sun v. United States, 371 U.S. 471, 488, 83 S.Ct. ", "407, 417, 9 L.Ed.2d 441 (1963); see Commonwealth v. Connolly, 478 Pa. 117, 385 A.2d 1342 (1978); Commonwealth v. Taylor, 472 Pa. 1, 370 A.2d 1197 (1977); Commonwealth v. Fowler, 466 Pa. 198, 352 A.2d 17 (1976); Commonwealth v. Diggs, 260 Pa.Super. ", "349, 394 A.2d 586 (1978).", "\n*446 To determine the existence of this independent basis, the time honored criteria promulgated by our supreme court are:\n\"`the opportunity of the witness to view the criminal at the time of the crime, the witness' degree of attention, the accuracy of the witness' prior description of the criminal, the level of certainty demonstrated by the witness at the confrontation and the length of time between the crime and the confrontation.'\" ", "Commonwealth v. Fowler, supra, 466 Pa. at 206, 352 A.2d at 21, quoting Neil v. Biggers, 409 U.S. 188, 199, 93 S.Ct. ", "375, 34 L.Ed.2d 401 (1972).", "\nOf these factors, the opportunity of the witness to observe the defendant at the time of the incident is considered the most important. ", "Commonwealth v. Brown, 462 Pa. 578, 342 A.2d 84 (1975); Commonwealth v. Wilson, 450 Pa. 296, 301 A.2d 823 (1973); see Commonwealth v. Diggs, supra.", "\nIn the instant case, Jose Serrano testified that he recognized appellant (although he did not know his name) by seeing him in the neighborhood prior to the morning of the robbery. ", "On the night of the robbery, appellant approached Mr. Serrano and asked him how he was doing and whether he had any drinking water available. ", "Mr. Serrano directed appellant to the water fountain inside the office. ", "While Mr. Serrano was preparing a receipt in the office, appellant came from behind him, put a gun in his side, and told him \"give me the money or I shoot.\" (", "N.T. 5.8). ", "Appellant took the money and then shot Mr. Serrano. ", "Mr. Serrano testified that the whole incident transpired over a span of fifteen minutes. ", "In addition, Mr. Serrano, in court, identified appellant's jacket as the same \"sweater\" appellant had worn during the robbery. ", "The first time Mr. Serrano encountered appellant after the robbery was at appellant's preliminary hearing. ", "He identified appellant at that time as the man who robbed him, and he subsequently identified appellant again at trial. ", "At no time was Mr. Serrano shown photographs of appellant.", "\nIn reviewing the above summary, we find ample evidence in the record at both the preliminary hearing and *447 the suppression hearing to support a finding of independent origin. ", "Mr. Serrano recognized appellant from seeing him in the neighborhood. ", "He saw and conversed with appellant prior to and during the robbery, and the entire incident took place over a span of fifteen minutes. ", "Taken as a whole, such factors more than adequately purge any taint that may have been incurred as a result of the one-to-one confrontation at the preliminary hearing. ", "Since an independent basis existed, the testimony was properly admitted.", "\nAppellant also contends that he was deprived of his right to counsel when the court refused to replace trial counsel as requested by appellant. ", "Appellant claims such a replacement should have been made because the attorney-client relationship deteriorated due to counsel's advising appellant to plead guilty, and because both appellant and counsel joined in the motion for replacement. ", "It is well established that an indigent is entitled to free counsel, but not entitled to free counsel of his choice, see Commonwealth v. Johnson, 428 Pa. 210, 236 A.2d 805 (1968), and although the right to counsel is absolute, there is no absolute right to a particular counsel. ", "See United States ex rel. ", "Carey v. Rundle, 409 F.2d 1210 (3d Cir. ", "1969), cert. ", "denied 397 U.S. 946, 90 S.Ct. ", "964, 25 L.Ed.2d 127 (1970). ", "Upon appellate review, we are mindful that the decision whether a petition for change of court-appointed counsel should be granted is within the sound discretion of the trial court, Commonwealth v. Segers, 460 Pa. 149, 331 A.2d 462 (1975), and as such, should not be overturned unless we find an abuse of that discretion. ", "Under the circumstances of the instant appeal, we find no abuse of discretion by the court below in denying appellant's request for replacement of counsel. ", "We are not here presented with a situation similar to that of Commonwealth v. Tyler, 468 Pa. 193, 360 A.2d 617 (1976), wherein there were on-going irreconcilable differences between the accused and his counsel. ", "In the instant appeal, the impasse reached by appellant and his counsel concerned the decision whether appellant should plead guilty. ", "Once this plea was rejected by the court below, the source of *448 dissension was eliminated from the attorney-client relationship. ", "This being the case, we cannot find an abuse of the lower court's discretion in refusing to grant the request for replacement.", "\nAppellant raises several bases upon which he contends trial counsel was ineffective. ", "We find no merit to any of these contentions, but wish to address several of them. ", "Appellant contends his trial counsel was ineffective for failing to interview or call as an alibi witness the boyfriend of Cecilia Valesquez, who was present in Cecilia's apartment the morning of the robbery. ", "Appellant contends that this witness' testimony \"could have been critical in establishing the time when the appellant entered the Valesquez house on December 25, 1975.\" (", "Appellant's brief at 9). ", "At trial, however, a stipulation concerning what the hospitalized Cecilia Valesquez would have testified to, was read to the jury. ", "The stipulation, in pertinent part, stated:\n\"But, she didn't know exactly when, but about 4:30 in the morning, the defendant entered the home.", "\nAt that time, the defendant was acting crazy. ", "The defendant went upstairs and was making noises and her mother said that he had to leave. ", "She came downstairs and locket [sic] him in the closet and she told her mother that the defendant had left.", "\nThe police came to the door approximately one half hour after the defendant had been there.\" (", "N.T. 5.101-5.102).", "\nThe standard of review for questions of ineffectiveness of counsel is that which was elucidated by our supreme court in the case of Commonwealth ex rel. ", "Washington v. Maroney, 427 Pa. 599, 604-5, 235 A.2d 349, 352-53 (1967),\n\"We cannot emphasize strongly enough, however, that our inquiry ceases and counsel's assistance is deemed constitutionally effective once we are able to conclude that the particular course chosen by counsel had some reasonable basis designed to effectuate his client's interests. ", "The test is not whether other alternatives were more reasonable, employing a hindsight evaluation of the record. ", "Although weigh the alternatives we must, the *449 balance tips in favor of a finding of effective assistance as soon as it is determined that trial counsel's decisions had any reasonable basis.\"", "\nFailure to call an alibi witness is not per se ineffective assistance of counsel. ", "Commonwealth v. Owens, 454 Pa. 268, 312 A.2d 378 (1973). ", "Ineffectiveness will not be found where there is a reasonable basis for counsel's decision based on a matter of trial strategy. ", "Commonwealth v. Dancer, 460 Pa. 95, 331 A.2d 435 (1975). ", "In the instant appeal, the stipulation read to the jury indicated that Cecilia Valesquez would have testified that appellant was locked in a closet in her apartment for over an hour before the offenses in question occurred. ", "Obviously, the jury chose not to believe Ms. Valesquez' rendition of the sequence of events occurring on December 25, 1975. ", "Appellant, at least by implication, contends that by presenting the testimony of another occupant of that apartment, the exact time when appellant entered the apartment would have been more firmly established. ", "We disagree. ", "The evidence Cecilia's boyfriend could have presented would have merely been cumulative. ", "It is certainly possible that \"[h]ere, given the weakness of the alibi, trial counsel could have reasonably believed it would not have aided the defense.\" ", "Commonwealth v. Owens, supra, 454 Pa. at 274, 312 A.2d at 382, quoting Commonwealth v. Karchella, 449 Pa. 270, 273-74, 296 A.2d 732, 733 (1972). ", "In the case of Commonwealth v. Harper, 233 Pa.Super. ", "294, 300, 334 A.2d 761, 763 (1975), this court stated:\n\"Appellant also asserts that he received ineffective assistance because counsel failed to investigate possible witnesses, namely, the other occupants of the apartment who were present when the search was executed. ", "The record, however, is devoid of any indication that the testimony of the other occupants would have been beneficial to the defense. ", "Without some positive indication or demonstration that their testimony would be helpful to the defense, we cannot equate the failure to call the other occupants as witnesses with a conclusion of ineffective assistance of counsel (citation omitted).\"", "\n*450 In this light, we hold that counsel's failure to interview an additional alibi witness did not constitute ineffectiveness.", "\nAppellant contends that counsel was also ineffective for his failure to raise the issue of prosecutorial misconduct in his post-trial motions. ", "The manifestation of \"misconduct\" which appellant alludes to occurred during the prosecution's summation to the jury. ", "During that summation, the assistant district attorney used the term \"uncontradicted evidence\" (N.T. 6.6 November 20, 1976), and expressed his opinion that he \"had no qualms that putting a gun to Officer Schultz's body was an aggravated assault.\" (", "N.T. 6.11 November 20, 1976). ", "After the prosecution concluded its summation, trial counsel objected to the two comments in issue, and these objections were overruled. ", "Counsel did not raise the issue of prosecutorial misconduct in post-trial motions.", "\nIn reviewing this claim of ineffectiveness for failure to press this objection at post-trial motions, \"a finding of ineffectiveness could never be made unless we concluded that the alternatives not chosen offered a potential for success substantially greater than the tactics actually utilized.\" ", "Commonwealth ex rel. ", "Washington v. Maroney, supra, 427 Pa. at 605 n. 8, 235 A.2d at 353 n. 8. ", "While we do not necessarily condone the language used by the prosecution in the instant appeal, we find that it does not rise to the level of \"prosecutorial misconduct,\" and accordingly, we do not find that any prejudice resulted to appellant. ", "For this reason, it is clear that if counsel had pressed this objection on appeal, it would not have justified the award of a new trial. ", "Thus, counsel cannot be found to be ineffective for failing to preserve an objection which had no probability of success. ", "Commonwealth v. Sullivan, 472 Pa. 129, 371 A.2d 468 (1977); Commonwealth v. Rice, 456 Pa. 90, 318 A.2d 705 (1974).", "\nThe American Bar Association Standards Relating to the Prosecution Function and the Defense Function § 5.8 (approved Draft 1971) provides:\n\"Argument to the jury.", "\n\n*451 (a) The prosecutor may argue all reasonable inferences from evidence in the record. ", "It is unprofessional conduct for the prosecutor intentionally to misstate the evidence or mislead the jury as to the inferences it may draw.", "\n(b) It is unprofessional conduct for the prosecutor to express his personal belief or opinion as to the truth or falsity of any testimony or evidence or the guilt of defendant. . . .\"", "\nOur supreme court has held that:\n\". . . [", "w]here the language of the district attorney is intemperate, uncalled for and improper, a new trial is not necessarily required. ", "The language must be such that its `unavoidable effect would be to prejudice the jury, forming in their minds fixed bias and hostility toward the defendant, so that they could not weigh evidence and render a true verdict. ", "The effect of such remarks depends upon the atmosphere of the trial, and the proper action to be taken is within the discretion of the trial court. [", "citations omitted].\" ", "Commonwealth v. Jarvis, 482 Pa. 598, 605-606, 394 A.2d 483, 487 (1978), quoting Commonwealth v. Stoltzfus, 462 Pa. 43, 61, 337 A.2d 873, 882 (1975).", "\nAs applied to the instant case, we hold that the prosecutor's use of the term \"uncontradicted evidence\" and his statement that he \"had no qualms that putting a gun to Officer Schultz's body was aggravated assault\" did not have the unavoidable effect of prejudicing the jury or forming in their minds a fixed bias and hostility toward appellant such that they could not weigh evidence and render a true verdict. ", "The assistant district attorney did not give his opinion whether defendant was guilty, nor did he comment as to appellant's trial tactics. ", "The remarks in issue are not of the type traditionally condemned as blatantly appealing to the prejudice, bias, and passions of the jury. ", "See Commonwealth v. Evans, 479 Pa. 100, 387 A.2d 854 (1978); Commonwealth v. Mayberry, 479 Pa. 23, 387 A.2d 815 (1978). ", "Accordingly, we hold that the assistant district attorney did not engage in prosecutorial misconduct and that appellant's *452 trial counsel was not ineffective for declining to preserve an objection which had no probability of success.", "\nAnother ground upon which appellant claims that trial counsel was ineffective is that he failed to have the assistant district attorney's summation to the jury stenographically recorded.[5] We find no merit to this contention.", "\nStenographic recordation of the prosecution's summation is not a requisite of due process as long as an equivalent picture of what transpired below is apparent. ", "See Commonwealth v. Silvis, 445 Pa. 235, 284 A.2d 740 (1971). ", "In the instant appeal, counsel for appellant objected to those portions of the prosecution's summation which were allegedly prejudicial, and those portions were made part of the trial transcript. (", "N.T. 6.5-6.11). ", "Having been properly preserved on the record for appellate review, we fail to see how counsel was ineffective for not formally requesting the court to record stenographically the prosecution's summation to the jury.", "\nFinding no merit to any of appellant's contentions, we affirm the judgment of the court below.", "\nSPAETH, J., files a dissenting statement.", "\nJACOBS, and WATKINS, former President Judges, and HOFFMAN, J., did not participate in the consideration or decision of this case.", "\nSPAETH, Judge, dissenting:\nThe stipulation of Cecilia's testimony contained only an approximation of both the time when appellant entered her *453 house and the time between appellant's entry and the arrival of the police officer. ", "Because it consisted merely of approximations it could be viewed by the jury as not inconsistent with the Commonwealth's case, and if inconsistent, very weak. ", "Such a view of the stipulation was especially likely given the fact that Cecilia was not herself a witness. ", "It was therefore essential that counsel interview the boyfriend and learn whether his version of the incident and the times involved was both more helpful and more definite than Cecilia's. ", "I cannot say that the boyfriend should have been called, for I do not know what he would have said. ", "I believe, however, that counsel was ineffective for not asking him what he would have said. ", "See Commonwealth v. Jones, 263 Pa.Super. ", "149, 397 A.2d 790 (1978) (SPAETH, J., dissenting).", "\nNOTES\n[2] 18 Pa.C.S. § 3701.", "\n[3] 18 Pa.C.S. § 2702.", "\n[4] 18 Pa.C.S. § 2901.", "\n[5] Appellant also contends counsel was ineffective for failing to argue post-trial motions. ", "This contention is meritless. ", "Post-trial motions were presented to the court below and preserved for appellate review. ", "Indeed, the motion to suppress evidence and the motion to suppress Jose Serrano's identification of appellant were already argued in front of the lower court judge, the Honorable Albert F. Sabo, Jr., during the pretrial suppression hearing. ", "It is doubtful that post-trial oral argument would have substantially enhanced appellant's probability of success. ", "We, therefore, do not find that counsel's failure to argue post-trial motions constituted ineffective assistance of counsel.", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0.045454545454545456, 0.011494252873563218, 0, 0, 0, 0.019230769230769232, 0.022988505747126436, 0.07, 0.0016806722689075631, 0, 0, 0, 0, 0.0022371364653243847, 0.0058823529411764705, 0, 0, 0, 0.006211180124223602, 0.006430868167202572, 0.013157894736842105, 0, 0.010416666666666666, 0.007194244604316547, 0, 0.012987012987012988, 0.014925373134328358, 0.009259259259259259, 0, 0, 0.008547008547008548, 0, 0.005917159763313609, 0.006622516556291391, 0, 0, 0.005434782608695652, 0, 0, 0, 0.01818181818181818, 0.024193548387096774, 0, 0.0022727272727272726, 0.02586206896551724, 0, 0, 0.027210884353741496, 0.0055248618784530384, 0.007042253521126761, 0.013888888888888888, 0.006329113924050633, 0.09090909090909091, 0.019230769230769232, 0.011235955056179775, 0.007874015748031496, 0.009345794392523364, 0.008264462809917356, 0.017241379310344827, 0, 0.014285714285714285, 0, 0, 0, 0, 0, 0.007168458781362007, 0, 0.025, 0, 0, 0, 0.003105590062111801, 0, 0.004739336492890996, 0, 0, 0, 0, 0, 0.004784688995215311, 0.0058823529411764705, 0, 0.007633587786259542, 0, 0, 0, 0, 0, 0, 0.006493506493506494, 0, 0, 0, 0, 0.03508771929824561, 0, 0.017543859649122806, 0.004464285714285714, 0.008064516129032258, 0, 0, 0, 0, 0.027586206896551724, 0.018867924528301886, 0, 0, 0, 0, 0, 0, 0.004032258064516129, 0.03333333333333333, 0, 0, 0, 0, 0, 0, 0, 0, 0.03508771929824561, 0.018518518518518517, 0, 0, 0, 0.023809523809523808, 0, 0, 0, 0, 0.013513513513513514, 0.0024271844660194173, 0, 0, 0.016666666666666666, 0, 0, 0, 0, 0, 0.0625, 0, 0, 0.047619047619047616, 0.023076923076923078, 0, 0.006289308176100629, 0, 0, 0, 0, 0.024390243902439025, 0.04, 0.03333333333333333, 0.041666666666666664, 0.041666666666666664, 0, 0, 0, 0.012448132780082987, 0, 0, 0 ]
0.007586
5
[ "Q:\n\nLimit $\\lim_{n \\rightarrow \\infty}\\frac{1 \\cdot 3 \\cdot 5 \\dots \\cdot (2n-1)}{2 \\cdot 4 \\cdot 6 \\cdot \\dots \\cdot (2n)} $\n\n$\\displaystyle \\lim_{n \\rightarrow \\infty}\\frac{1 \\cdot 3 \\cdot 5 \\dots \\cdot (2n-1)}{2 \\cdot 4 \\cdot 6 \\cdot \\dots \\cdot (2n)} $ \n\nA:\n\n$$\\dfrac12 \\cdot \\dfrac34 \\cdot \\dfrac78 \\cdots \\dfrac{2n-1}{2n} = \\left(1 - \\dfrac12\\right)\\left(1 - \\dfrac14\\right)\\left(1 - \\dfrac16\\right)\\left(1 - \\dfrac18\\right)\\cdots\\left(1 - \\dfrac1{2n}\\right)$$\nSince $$\\dfrac12 + \\dfrac14 + \\dfrac16 + \\cdots + \\dfrac1{2n} + \\cdots$$ diverges, the infinite product goes to $0$.\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.0017064846416382253 ]
0.001706
5
[ "The seventh and final season of “Veep” will premiere on March 31, HBO announced Friday.", "\n\nThe political comedy starring Julia Louis-Dreyfus as Selina Meyer, the once vice president, then briefly president, will sign off with a seven-episode final season, the shortest in the show’s history. ", "While the debut season consisted of eight episodes, the subsequent ones consisted of 10 episodes.", "\n\nProduction was delayed on the final season after Louis-Dreyfus revealed she had breast cancer in 2017. ", "She underwent treatment and completed it successfully and the final season ended up wrapping production in December 2018.", "\n\nThe final season will pick up with Selina “unable to live a civilian life and thinking about running again,” executive producer David Mandel told Variety last year. ", "He also confirmed that he show would “turn back deeper into politics,” not just for Selina but also characters such as Jonah (Timothy Simons).", "\n\nThe series was created by Armando Iannucci and is now showrun by Mandel. ", "Frank Rich, Louis-Dreyfus, Lew Morton and Morgan Sackett also executive produce. ", "It stars Louis-Dreyfus, Tony Hale, Anna Chlumsky, Matt Walsh, Reid Scott, Kevin Dunn, Gary Cole, Sam Richardson and Simons also star.", "\n\n“Veep” will once again be Emmy eligible in 2019 after sitting out the 2018 awards race. ", "The series has won three consecutive Emmy awards for comedy series between 2015 and 2017 and has also seen its leading lady win the comedy actress trophy six consecutive times between 2012 and 2017." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.011494252873563218, 0.009852216748768473, 0, 0.009523809523809525, 0, 0.011976047904191617, 0.007042253521126761, 0.02666666666666667, 0.037037037037037035, 0.06015037593984962, 0, 0 ]
0.014479
5
[ "Not a\ngreat success, but not the stinker that the previous year's Three Tough Guys had been (in spite of\nits Chicago location and stars Isaac Hayes, Fred Williamson, and Lino Ventura\nand the Isaac Hayes score). ", "The Happy\nHooker was the brainchildofLynn Redgrave's then husband and\nagent/manager, John Clark. ", "It was based on a memoir by Xaviera Hollander, a professional lady who just may be more interesting\nthan the movie makes her:http://en.wikipedia.org/wiki/Xaviera_Hollander\n\nThis may be a good time to make\na comment or so about Tom’s own professionalism. ", "He always started work on a\nmovie well before his paycheck started. ", "He had a wealth of reference books\nabout movies and actors. ", "In addition, he would spend hours at various\nlibraries, mostly at the New York Public Library for the Performing Arts at\nLincoln Center. ", "He believed that anything he knew (or had recently refreshed\nhimself on) would serve him in good stead once he got to the set. ", "As he says in\nhis chapter in A Fever of the Mad\nabout the duties of a unit publicist, “Publicist,\nbeware of not doing your homework ahead of time. ‘", "What have you done in the\npast, Mr. Mitchum?’ ", "is not a question you want to ask.”", "\n\nA good (and amusing) example from The Happy Hooker: French actor\nJean-Pierre Aumont was brought to New York to play one the Hooker’s clients. ", "He\nand Tom got along like gangbusters, in part because Tom had done his homework\nand refreshed himself on every aspect of Aumont's career before he ever met\nhim.", "\n\nDuring\nan interview in which Aumont was asked a number of questions about his career,\nhe would often look to Tom for facts and chronology. (\"", "Yes, Jean-Pierre,\nthat was in 1971 right after you had done . . .\") ", "Toward the close of the\ninterview, the reporter, who no doubt considered himself liberated, asked,\n\"How long have you two been together?\" ", "Tom and Aumont looked at each\nother and burst out laughing.", "Tom and Aumont always\ngot along wonderfully\n\nWith\nLynn Redgrave it was a different story. ", "Tom considered Ms. Redgrave to be\ntotally a professional. ", "Not cuddly, in spite of some of the photographs with\nTom.", "But Tom respected professionalism.", "\nAs her husband, agent, and manager at the time, John Clark had a tendency to\ninject himself in every aspect of the movie that involved his wife. ", "Including,\nof course, publicity. ", "Tom quickly learned that Redgrave would side with her\nhusband in any matter in which there was a difference of opinion. ", "He coped. ", "His\nmodus operandi: try to persuade with calm reason, give in gracefully when\nnecessary, and always cover your ass with a memorandum.", "\n\nClark\nwanted a lot of publicity: interviews, column items, pictures in the media,\netc. ", "When the movie did not do great business on its release, Clark sued Cannon\nFilms for not doing enough to publicize the film. ", "The company lawyers got a\ncopy of Tom's press book and presented it to the judge, who glanced through it\nand threw out the case. ", "Subsequently Tom received a most complimentary letter from\nthe producers.", "\n\nTom\nbecame good friends with co-writer William Richert, who later received some\nnote for writing and directing cult favorites Winter Kills (1979) and American\nSuccess Story (1980). ", "All told, he considered The Happy Hooker a pleasurable experience. ", "More importantly, his first onscreen credit:\n\nFrom A Fever of the Mad:\n\nI received my first screen credit in 1974 with The Happy Hooker for Cannon Films, having already worked without film credit on four films for MGM (Alex in Wonderland, Shaft, The Gang That Couldn’t Shoot Straight, and The Wrath of God), two for Twentieth Century-Fox (The Effect of Gamma Rays on Man-in-the-Moon Marigolds and The Last American Hero), and one for Paramount (Mikey and Nicky, filmed in 1973 but not released until 1976). ", "The Publicists Guild made no issue over screen credit, and the individual publicist had to use such leverage as he or she could. ", "I had asked for this credit on The Last American Hero, and executive producer Joe Wizan told me that I would get it but couldn’t deliver on his promise. ", "Studio brass vetoed it, saying that it was not studio policy, the job being seen traditionally as (and in fact was) an extension of the studio’s publicity department." ]
{ "pile_set_name": "Pile-CC" }
[ 0.014218009478672985, 0.020618556701030927, 0.011811023622047244, 0, 0, 0.021897810218978103, 0, 0, 0.021739130434782608, 0, 0.013888888888888888, 0.012422360248447204, 0.006993006993006993, 0.014705882352941176, 0, 0.01694915254237288, 0.022222222222222223, 0.034482758620689655, 0.017543859649122806, 0.029411764705882353, 0.00684931506849315, 0, 0.016666666666666666, 0, 0, 0, 0.008, 0.007751937984496124, 0.0136986301369863, 0.01092896174863388, 0, 0.009861932938856016, 0.007751937984496124, 0.006535947712418301, 0 ]
0.009913
5
[ "Mechanisms of action, dosage schedules, and side effects of steroid therapy.", "\nTwo themes are prominent in this year's literature dealing with glucocorticoids and musculoskeletal diseases. ", "First, a high degree of attention has been focused on the use of high-dose intravenous methylprednisolone in rheumatoid arthritis. ", "Despite a number of studies, however, opinion regarding its usefulness as a short-term, adjunctive therapy remains divided. ", "Nonetheless, experience continues to support the view that intravenous methylprednisolone is associated with a relative lack of untoward effects. ", "Second, attention has also been focused on steroid-induced osteoporosis. ", "The heterogeneity of the impact of steroids on bone mineral density is perhaps surprising. ", "The assumption that the effect of glucocorticoids on bone is uniformly large and sustained is clearly open to challenge, although the mechanisms underlying differences in host response are unclear. ", "Definition of patients at higher risk for steroid-induced osteoporosis remains a priority." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.007633587786259542, 0, 0, 0, 0, 0, 0 ]
0.000848
5
[ "<!", "DOCTYPE HTML>\n<!--", "\n Any copyright is dedicated to the Public Domain.", "\n http://creativecommons.org/publicdomain/zero/1.0/\n-->\n<html><head>\n <meta charset=\"utf-8\">\n <title>Reference: stretching intrinsic size items with 'normal' and/or 'stretch' and min/max-size, with Automatic Minimum Size clamping</title>\n <link rel=\"author\" title=\"Mats Palmgren\" href=\"https://bugzilla.mozilla.org/show_bug.cgi?id=\">\n <style type=\"text/css\">\n* { vertical-align: top; }\n.grid {\n display: inline-grid;\n border: 3px solid grey;\n grid: 32px / 4px;\n margin-right:20px;\n align-items: start;\n justify-items: start;\n}\n.r { grid: 4px / 32px; }\n\niframe {\n border: 1px solid;\n padding: 0;\n margin: 0;\n background: lightgrey;\n}\n\n.w20 { width: 20px min-width: 0px; }\n.mw20 { min-width: 20px }\n.mw0 { min-width: 0px }\n\n.h20 { height: 20px; min-height: 0px; }\n.mh20 { min-height: 20px }\n.mh0 { min-height: 0px }\n\n </style>\n</head>\n<body>\n\n<div class=\"grid r\"><iframe></iframe></div>\n<div class=\"grid r\"><iframe class=\"start\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"sa\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"sa mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"na\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"na mxw2\"></iframe></div>\n\n<pre><!--min-height:20px--></pre>\n<div class=\"grid r\" style=\"margin-right:0\"><iframe class=\"mh20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"mh20 mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"start mh20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"start mh20 mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"sa mh20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"sa mh20 mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"na mh20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"na mh20 mxw10\"></iframe></div>\n\n<pre><!--min-height:0--></pre>\n<div class=\"grid r\"><iframe class=\"mh0\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"mh0 mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"start mh0\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"start mh0 mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"sa mh0\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"sa mh0 mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"na mh0\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"na mh0 mxw2\"></iframe></div>\n\n<pre><!----></pre>\n\n<div class=\"grid\"><iframe></iframe></div>\n<div class=\"grid\"><iframe class=\"mxw2\"></iframe></div>\n<div class=\"grid\"><iframe class=\"start\"></iframe></div>\n<div class=\"grid\"><iframe class=\"start mxw2\"></iframe></div>\n<div class=\"grid\"><iframe class=\"sa\"></iframe></div>\n<div class=\"grid\"><iframe class=\"sa mxw2\"></iframe></div>\n<div class=\"grid\"><iframe class=\"na\"></iframe></div>\n<div class=\"grid\"><iframe class=\"na mxw2\"></iframe></div>\n\n<pre><!--min-width:20px--></pre>\n<div class=\"grid\"><iframe class=\"mw20\"></iframe></div>\n<div class=\"grid\"><iframe class=\"mw20 mxh10\"></iframe></div>\n<div class=\"grid\"><iframe class=\"start mw20\"></iframe></div>\n<div class=\"grid\" style=\"margin-top:5px\"><iframe class=\"start mw20 mxh10\"></iframe></div>\n<div class=\"grid\" style=\"margin-top:10px\"><iframe class=\"sa mw20\"></iframe></div>\n<div class=\"grid\" style=\"margin-top:25px\"><iframe class=\"sa mw20 mxh10\"></iframe></div>\n<div class=\"grid\"><iframe class=\"na mw20\"></iframe></div>\n<div class=\"grid\" style=\"margin-top:5px\"><iframe class=\"na mw20 mxh10 mxw10\"></iframe></div>\n\n<pre><!--min-width:0--></pre>\n<div class=\"grid\"><iframe class=\"mw0\"></iframe></div>\n<div class=\"grid\"><iframe class=\"mw0 mxh10\"></iframe></div>\n<div class=\"grid\"><iframe class=\"start mw0\"></iframe></div>\n<div class=\"grid\" style=\"margin-top:5px\"><iframe class=\"start mw0 mxh10\"></iframe></div>\n<div class=\"grid\" style=\"margin-top:10px\"><iframe class=\"sa mw0\"></iframe></div>\n<div class=\"grid\" style=\"margin-top:25px\"><iframe class=\"sa mw0 mxh10 mxw10\"></iframe></div>\n<div class=\"grid\"><iframe class=\"na mw0 mxw10\"></iframe></div>\n<div class=\"grid\" style=\"margin-top:5px\"><iframe class=\"na mw0 mxh10\"></iframe></div>\n\n<pre><!--width:20px--></pre>\n\n<div class=\"grid r\"><iframe class=\"w20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"w20 mxh10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"start w20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"start w20 mxh10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"sa w20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"sa w20 mxh2\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"na w20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"na w20 mxh2\"></iframe></div>\n\n<pre><!--width:20px--></pre>\n\n<div class=\"grid\"><iframe class=\"start w20\"></iframe></div>\n<div class=\"grid\"><iframe class=\"start w20 mxh10\"></iframe></div>\n<div class=\"grid\"><iframe class=\"start w20\"></iframe></div>\n<div class=\"grid\"><iframe class=\"start w20 mxh10\"></iframe></div>\n<div class=\"grid\"><iframe class=\"sa w20\"></iframe></div>\n<div class=\"grid\"><iframe class=\"sa w20 mxh10\"></iframe></div>\n<div class=\"grid\"><iframe class=\"na w20\"></iframe></div>\n<div class=\"grid\"><iframe class=\"na w20 mxh10\"></iframe></div>\n\n<pre><!--height:20px--></pre>\n\n<div class=\"grid r\"><iframe class=\"h20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"h20 mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"start h20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"start h20 mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"as h20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"as h20 mxw10\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"an h20\"></iframe></div>\n<div class=\"grid r\"><iframe class=\"an h20 mxw10\"></iframe></div>\n\n<pre><!--height:20px--></pre>\n\n<div class=\"grid\"><iframe class=\"h20\"></iframe></div>\n<div class=\"grid\"><iframe class=\"h20 mxw2\"></iframe></div>\n<div class=\"grid\"><iframe class=\"start h20\"></iframe></div>\n<div class=\"grid\"><iframe class=\"start h20 mxw10\"></iframe></div>\n<div class=\"grid\"><iframe class=\"as h20\"></iframe></div>\n<div class=\"grid\"><iframe class=\"as h20 mxw2\"></iframe></div>\n<div class=\"grid\"><iframe class=\"an h20\"></iframe></div>\n<div class=\"grid\"><iframe class=\"an h20 mxw10\"></iframe></div>\n\n<script>\nvar iframeSizes =\n[\n ['30px', '2px'],\n ['30px', '2px'],\n ['30px', '2px'],\n ['10px', '2px'],\n ['30px', '2px'],\n ['2px', '2px'],\n ['30px', '20px'],\n ['10px', '20px'],\n ['30px', '150px'],\n ['10px', '150px'],\n ['30px', '20px'],\n ['10px', '20px'],\n ['30px', '20px'],\n ['10px', '20px'],\n ['30px', '2px'],\n ['10px', '2px'],\n ['30px', '150px'],\n ['10px', '150px'],\n ['30px', '2px'],\n ['10px', '2px'],\n ['30px', '2px'],\n ['2px', '2px'],\n ['2px', '30px'],\n ['2px', '30px'],\n ['2px', '30px'],\n ['2px', '30px'],\n ['2px', '30px'],\n ['2px', '30px'],\n ['2px', '30px'],\n ['2px', '30px'],\n ['20px', '30px'],\n ['20px', '10px'],\n ['300px', '30px'],\n ['300px', '10px'],\n ['300px', '30px'],\n ['300px', '10px'],\n ['300px', '30px'],\n ['20px', '10px'],\n ['2px', '30px'],\n ['2px', '10px'],\n ['300px', '30px'],\n ['300px', '10px'],\n ['300px', '30px'],\n ['10px', '10px'],\n ['10px', '30px'],\n ['300px', '10px'],\n ['20px', '2px'],\n ['20px', '2px'],\n ['20px', '2px'],\n ['20px', '2px'],\n ['20px', '2px'],\n ['20px', '2px'],\n ['20px', '2px'],\n ['20px', '2px'],\n ['20px', '30px'],\n ['20px', '10px'],\n ['20px', '30px'],\n ['20px', '10px'],\n ['20px', '30px'],\n ['20px', '10px'],\n ['20px', '30px'],\n ['20px', '10px'],\n ['30px', '20px'],\n ['10px', '20px'],\n ['30px', '20px'],\n ['10px', '20px'],\n ['30px', '20px'],\n ['10px', '20px'],\n ['30px', '20px'],\n ['10px', '20px'],\n ['2px', '20px'],\n ['2px', '20px'],\n ['2px', '20px'],\n ['2px', '20px'],\n ['2px', '20px'],\n ['2px', '20px'],\n ['2px', '20px'],\n ['2px', '20px'],\n];\nvar iframes = document.querySelectorAll('iframe');\nfor (var i = 0; i < iframes.length; ++i) {\n var iframe = iframes[i];\n iframe.style.width = iframeSizes[i][0];\n iframe.style.height = iframeSizes[i][1];\n}\n</script>\n\n</body>\n</html>\n" ]
{ "pile_set_name": "Github" }
[ 0, 0, 0, 0.0050858232676414495 ]
0.001271
5
[ "Comorbid Depression and Diabetic Foot Ulcers.", "\nIn the United States, 9.3% of the population, or 29.1 million people have diabetes, and depression affects 20% to 40% of these individuals. ", "Diabetic foot ulcers are a common and serious complication of diabetes and one of the most costly. ", "It is estimated that 2% to 3% of persons with diabetes will develop diabetic foot ulcers each year. ", "There is an association between depression and the development of diabetic foot ulcers. ", "The estimated costs associated with managing diabetes, depression, and diabetic foot ulcers place a substantial burden on the U.S. healthcare system and society. ", "Patients should be screened and evaluated by professionals qualified in the diagnosis and management of depression and diabetic foot ulcers. ", "To be effective, an interprofessional approach that includes the patient and significant others should be used." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.022222222222222223, 0, 0, 0, 0, 0, 0, 0 ]
0.002778
5
[ "--\n-- !! ", "FIRST RUN IN TEST ENVIRONMENT AGAINST COPY OF YOU PRODUCTION !!", "\n--\n-- Migration script to add new column to QRTZ_SIMPROP_TRIGGERS\n--\n-- !! ", "FIRST RUN IN TEST ENVIRONMENT AGAINST COPY OF YOU PRODUCTION !!", "\n--\n\n-- you may need to change this syntax depending on your database!", "\n\n-- sql server\nalter table QRTZ_SIMPROP_TRIGGERS add TIME_ZONE_ID [NVARCHAR] (80);\n\n-- mysql\n-- alter table QRTZ_SIMPROP_TRIGGERS add TIME_ZONE_ID VARCHAR(80);\n\n-- oracle\n-- alter table QRTZ_SIMPROP_TRIGGERS add TIME_ZONE_ID VARCHAR2(80);\n" ]
{ "pile_set_name": "Github" }
[ 0, 0.015873015873015872, 0, 0.015873015873015872, 0, 0.004166666666666667 ]
0.005985
5
[ "Joe Klein on why Glenn Greenwald is not a serious person:\n\nFor the past several years, Greenwald has conducted a persistent, malicious campaign to distort who I am and where I stand. ", "He is a mean-spirited, graceless bully. ", "During that time, I have never seen him write a positive sentence about the US military, which has transformed itself dramatically for the better since Rumsfeld’s departure (indeed, he ridiculed me when I reported that the situation in Anbar Province was turning around in 2007). ", "I have never seen him acknowledge that the work of the clandestine service—performed disgracefully by the CIA during the early Bush years—is an absolute necessity in a world where terrorists have the capability to attack us at any time, in almost any place. ", "Nor have I seen [him] acknowledge that such a threat exists, nor make a single positive suggestion about how to confront that threat in ways that might conform to his views. ", "Therefore, I have seen no evidence that he cares one whit about the national security of the United States. ", "It is not hyperbole, it is a fact.", "\n\nYou have to love the sheer beauty of that baby, don’t you? ", "Read it a second time. ", "Klein is condemning Greenwald for what he HASN’T said. ", "How awesome is that? ", "I mean, if you get to condemn people for things they haven’t said, you can just make up any old shit and then smear someone. ", "Why, I bet Greenwald has not recently stated that he loves the Humane Society. ", "In Jokeline’s world, that is clear evidence that Glenn cares not a whit about animals. ", "Even better, Greenwald may have even said all the things that Jokeline arbitrarily has decided he needs to say, but if Klein hasn’t seen them, well, the accusation still stands.", "\n\nAdditionally, how awesome is it that in order to prove you care about national security, you have to fellate the military, the CIA, and whenever a similar topic arises, gravely announce in a serious voice that you are very, very, serious about national security. ", "Pretty weak, Joe. ", "Pretty weak. ", "This is the kind of crap that certain folks throw at Joe when they call him a self-hating Jew. ", "You’d think Klein would recognize this kind of nonsense for what it is.", "\n\nAnd the real reason Klein hates Greenwald is because Greenwald pointed out that he had no idea what he was talking about regarding FISA. ", "For someone completely serious about national security (as we are to assume Klein is from that pompous snippet from an email), Klein sure didn’t know what the hell he was talking about nor did he bother to concern himself with the details." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.01639344262295082, 0, 0.0035714285714285713, 0.003875968992248062, 0, 0, 0, 0, 0, 0.01818181818181818, 0, 0, 0.012658227848101266, 0.022988505747126436, 0.011299435028248588, 0.0037735849056603774, 0.05555555555555555, 0, 0.010526315789473684, 0.014084507042253521, 0.02158273381294964, 0.008368200836820083 ]
0.009221
5
[ "1. ", "Field of the Invention\nThis invention relates to a method for manufacturing a polyimide sleeve which can be used for a fixing apparatus of an electrophotograph copying machine and the like.", "\n2. ", "Description of the Related Art\nIn a copying or printing unit such as an electrophotograph copying machine, a facsimile or a laser beam printer, a heat-fixing system is generally adopted where a toner image of a hot-melt type resin etc. ", "is formed on a recording sheet by an image forming process such as an electrophotography, an electrostatic recording, a magnetic recording, or the like so as to be fixed by heat.", "\nFor a fixing apparatus used in these heat fixing systems, a heat roller system has been conventionally utilized where a recording sheet on which a toner image is formed, is fed between two rollers of a heater-imbedded fixing roller and a pressure roller so as to fix the image, while a thin film belt fixing system has been developed and widely utilized recently where a film-shaped seamless sleeve (a polyimide sleeve) made of polyimide, polyamide-imide, or the like, or a sleeve whose outside surface is covered with a fluoropolymer is used in stead of the fixing roller.", "\nIn the fixing apparatus according to this system, a heater is placed inside of the polyimide sleeve, and the polyimide sleeve is pressed to the heater and a pressure roller is pressed to an outside of a portion of the polyimide sleeve which is pressed to the heater. ", "Then a recording sheet, on which a toner image is formed, is passed through between portions of the polyimide sleeve which is pressed to the heater and the pressure roller, and the recording sheet is heated through the polyimide sleeve so that a toner image is heat-fixed.", "\nSince a heat capacity is small for the polyimide sleeve which is a thin film, the system is characterized in that heat fixing can be available right after the power turned on as well as a required energy for heating can be decreased.", "\nAdditionally, a fixing apparatus using the above-described polyimide sleeve instead of the pressure roller has been developed recently.", "\nIn this fixing apparatus, a polyimide sleeve suspended among a plurality of rollers is pressed to an outer surface of a heater-imbedded fixing roller, and while rotating the fixing roller and the polyimide sleeve, a recording sheet on which a toner image is formed is passed through therebetween so as to be heat-fused.", "\nSince an adequate fixing time can be secured even when transfer speed of a recording sheet is increased, this method is characterized in that speeding up of a machine can be achieved.", "\nAs for a method for manufacturing a seamless polyimide sleeve in use for these fixing systems, such a method is typically known that a polyimide precursor solution such as a polyamide acid solution is applied on an outside surface of a cylindrical metal core, and after being dried and subjected to an imide reaction by heating, a sleeve-like member is released from its core.", "\nHowever, since polyimide is a polymer used as an adhesive, when the polyimide precursor solution is applied and subjected to the imide reaction by heating, the polyimide sleeve shrinks to fit strongly or adhere to the core, and it becomes difficult for the polyimide sleeve to be removed from the core.", "\nTherefore, in order to make such a release from the core easy, methods have been further proposed as follows; (1) a method of applying a polyimide precursor solution on a core, heating it till sufficient strength at least as a sleeve-like member is obtained, and after released from the core once, baking it while being inserted again onto the core, (2) a method of providing small holes on a core, applying a polyimide precursor solution on the core, and after heated and baked, supplying an air pressure through the small holes from the inside of the core so that the sleeve is released from the core, (3) a method in which a release material such as a silicone oil is applied on a surface of a core, or the like.", "\nHowever, in the method of (1) where a step of heating operation is repeated twice, there exist difficulties that the process is so complicated that productivity will decrease and that a yield of a product will also decrease since the sleeve is released and re-inserted during the imide reaction.", "\nIn the method of (2) where small holes are provided on the core, there exist difficulties that manufacturing cost of the core will increase while quality and a yield thereof will decrease since film is easy to come off and bend because of the air pressure given against a shrinking force of the sleeve.", "\nIn the method of (3) where the release material is applied on the surface of the core, such a new problem arises that while making it easy to separate the sleeve from the core, the core surface itself becomes hard to get wet, so that a crawling phenomenon and a flow phenomenon occur when a polyimide precursor solution is applied, whereby it will be difficult to apply it evenly in a desired thickness.", "\nFor this problem, methods have been proposed for making it easy to separate the sleeve from the core and repressing an occurrence of a crawling phenomenon, by covering a surface of the core with a heat-resistant resin of small interfacial contact angle in Japanese Patent Laid-Open Application No. ", "3-261518 JP-A for example, and by providing an inorganic coating layer on the surface of the core in Japanese Patent Laid-open Application No. ", "7-76025 JP-A. However, in both cases there exists a difficulty that making defects or coming off is likely to be caused since the surface strength of the covering layer and the adhesive strength to the core are not enough. ", "With a few defects, a pinhole or a scar would be caused on the polyimide sleeve, which results in quality loss.", "\nAs noted above, while various modifications have been conventionally attempted to release the polyimide sleeve from the core easily, they have respective difficulties and a technique has not been established yet to easily manufacture a high quality polyimide sleeve with a superior yield." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ "Q:\n\nspan doesn't apply css style when entered via innerHTML\n\nI have and Angular app, and as part of it I show query result in a div (has ID of JSONContainer).", "\nI wanted to highlight the specific query inside the result, so I used a pipe that searchs the results, and replaces the FIELD:VALUE in the text with:\n<span class=\"highlightSpan\">FIELD:VALUE</span>.", "\n\nI added the following css to the component:\ndiv#JSONContainer span.highlightSpan{\n background-color: rgba(28, 243, 28, 0.5) !", "important;\n color:red !", "important;\n padding: 1px;\n margin:1px;\n}\n\nI tried adding the same style under .highlightSpan as well, with the same results.", "\nI insert this span and the rest of the text via innerHTML in the containing component, using the 'data' variable, that stores the entire JSON, and 'query' variable that stores the query:\n <div class=\"col-xs-12\" id=\"JSONContainer\"\n [innerHTML]=\"data | textHighlight:query\">\n </div>\n\n(I'm not using string interpolation because the data var is json shaped which I styled using html code,like html br tag, and string interpolation shows only text).", "\nWhen I point my mouse to the relevent span in google dev tools, I see that the span with the class was created:\n\nBut the css style is not applyed, and its not even showing in google dev tools:\n\nEDIT: I know it dosen't show (I erased it from the img), but the span is located in the div#JSONContainr, as described.", "\nEDIT 2:\nHere is the relevant tree:\n\nWhy is this happening?", "\nHow to make the css style apply?", "\nThanks!", "\n\nA:\n\nThis happens because you are adding the span element dynamically and it is not part of your component, therefore the span element is not decorated with component style isolation. ", "When you explore your components rendered html then you see that each element has attribute like _ngcontent-c2 but your span doesn't, so it is not part of that component styling.", "\nYou can change your css to:\n::ng-deep div#JSONContainer span.highlightSpan\nto style descendants of your component (other components or elements added dynamically). ", "Or you can add the styling to your global style so it is not part of that component isolation.", "\nI have created stackblitz demo to simulate your situation.", "\nYou can read more about angular view encapsulation.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.005050505050505051, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01694915254237288, 0, 0 ]
0.001294
5
[ "Q:\n\nMagento show and edit tracking number field in order overview\n\ndoes anyone know howto programmatically show and make the field editable for tracking number field in order overview?", "\nI am thinking this. ", "\nstep 1. ", "First enable showing the tracking field in Grid.php, so extend ... Does anyone have an example how to add a column? (", "and for that matter hide an existing column)\nAdd this to /etc/config.xml under events so Magento knows what to call\n<core_block_abstract_prepare_layout_before>\n <observers>\n <SNH_ShipMailInvoice_Observer_addTrackingColumnToGrid>\n <type>model</type>\n <class>SNH_ShipMailInvoice_Model_Observer</class>\n <method>addTrackingColumnToGrid</method>\n </SNH_ShipMailInvoice_Observer_addTrackingColumnToGrid>\n </observers>\n</core_block_abstract_prepare_layout_before>\n\nstep 2.a Then populate the Grid with the tracking code if applicable\nSo first add a field in /Model/Observer.php (that answers step 1)\npublic function addTrackingColumnToGrid($observer)\n{\n// this will return the block name for every block triggered by the observer\n$block = $observer->getEvent()->getBlock();\n\n// filter - we only want the block for the sales order grid\nif ($block instanceof Mage_Adminhtml_Block_Sales_Order_grid){\n // well, that was easy!", "\n $block->addColumn('tracking_number', array(\n 'header' => Mage::helper('sales')->__('Tracking number'),\n 'index' => 'tracking_number',\n 'type' => 'input',\n 'width' => '120px',\n 'renderer' => 'SNH_ShipMailInvoice_Block_Adminhtml_Renderer_addTrackingColumnToGrid'\n ));\n\n}\n}\n\nstep 2.b Then we need to populate the field with available tracking info\n\n'renderer' =>\n 'SNH_ShipMailInvoice_Block_Adminhtml_Renderer_addTrackingColumnToGrid'\n\nshould call to addTrackingColumnToGrid.php in /Block/Adminhtml/Renderer/addTrackingColumnToGrid.php\n* CURRENT PROBLEM: ERROR ** \nThis is where I am getting my white page no answer\nstep 2.c Lookup the tracking number per order in row. ", "Currently untested/unconfirmed\n// HOW DO I POPULATE VAR $order for each line? ", "\n$shipmentCollection = Mage::getResourceModel('sales/order_shipment_collection')->setOrderFilter($order)->load();\n\nforeach ($shipmentCollection as $shipment){ \n // This will give me the shipment IncrementId, but not the actual tracking information.", "\n foreach($shipment->getAllTracks() as $tracknum) {\n $tracknums[]=$tracknum->getNumber(); } \n // How to show the tracking information \n // CODE HERE \n }\n}\n\nstep 3 Then when I click on the dropdown option Masssaction (already programmed) the backend should process the selected items only and store the tracking ID to the shipment (that is created shortly after)\n(and after that continue invoice and ship)\nThanks in advance\n\nA:\n\nIf I may suggest something simpler:\n\nAdd a column that shows a tracking number.", "\nIf no tracking number exists, a link that says \"Add tracking.\"", "\nIt tracking number exists, show the tracking number as a hyperlink. ", "Also have an \"Add tracking\" link below it, for multiple tracking numbers per order.", "\nClicking the \"Add tracking\" link converts the link to a text field. ", "Clicking the tracking number (if present), converts the tracking number to a text field prepopulated with the value of the tracking number (for editing).", "\nClicking away converts the text field(s) back to text links after saving. ", "I do recommend a \"loading\" visual cue during the saving process.", "\n\nHow to add a column to the Sales Order grid\nSetup an event observer. (", "You could use a rewrite in your config.xml file, but this can potentially cause conflicts with other modules.)", "\n<adminhtml>\n <events>\n <core_block_abstract_prepare_layout_before>\n <observers>\n <Namespace_Module_Observer_addTrackingColumnToGrid>\n <type>model</type>\n <class>Namespace_Module_Observer</class>\n <method>addTrackingColumnToGrid</method>\n </Namespace_Module_Observer_addTrackingColumnToGrid>\n </observers>\n </core_block_abstract_prepare_layout_before>\n </events>\n</adminhtml>\n\nCreate your observer in ./app/code/local/Namespace/Module/Model/Observer.php. ", "It should look something like this.", "\n<?", "php\nclass Namespace_Module_Model_Observer\n{\n public function addTrackingColumnToGrid($observer)\n {\n // this will return the block name for every block triggered by the observer\n $block = $observer->getEvent()->getBlock();\n\n // filter - we only want the block for the sales order grid\n if ($block instanceof Mage_Adminhtml_Block_Sales_Order_grid){\n\n // well, that was easy!", "\n $block->addColumn('tracking_number', array(\n 'header' => Mage::helper('sales')->__('Tracking number')\n ));\n\n }\n }\n}\n\nTry looking in Mage_Adminhtml_Block_Widget_Grid for clues on how to use the addColumn method. ", "It's pretty much universal for all Magento admin grids, which is nice. ", "If you're looking to add custom functionality (besides just retrieving data), though, there's a pretty good chance you're going to need to figure out how to apply \"renderers.\"", "\nOnce you've got that part figured out, you just need to setup an Ajax controller and drop in a little JavaScript to transmit the update information to your controller.", "\nThis is a pretty broad question, so I can't exactly do it all for you (without writing an extension), but I'll try to help you along the way.", "\nFor what it's worth, you might look into the Tracking Import module over at Creativemgroup.com. ", "Word on the street is a forthcoming version of this module includes the edit-in-place functionality you're looking for.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0.008547008547008548, 0.002103049421661409, 0.0014064697609001407, 0, 0.00392156862745098, 0, 0, 0, 0, 0, 0, 0, 0, 0.013888888888888888, 0, 0.0017123287671232876, 0, 0, 0, 0.0038461538461538464, 0.014084507042253521, 0, 0.005952380952380952, 0, 0.020618556701030927, 0, 0 ]
0.002536
5
[ "---\nauthor:\n- |\n Yuan Lu, Jie Yang\\*\\\n `{joyce.yuan.lu,yangjiera}@gmail.com`.", "\nbibliography:\n- 'references.bib'\ntitle: 'Notes on Low-rank Matrix Factorization'\n---\n\nDedicated to Xiao Baobao and Tu Daye.", "\n\nIntroduction\n============\n\nLow-rank matrix factorization (**MF**) is an important technique in data science. ", "The key idea of **MF** is that there exists latent structures in the data, by uncovering which we could obtain a compressed representation of the data. ", "By factorizing an original matrix to low-rank matrices, **MF** provides a unified method for dimesion reduction, clustering, and matrix completion.", "\n\n**MF** has several nice properties: 1) it uncovers latent structures in the data, while addressing the data sparseness problem [@koren2008factorization]; 2) it has an elegant probabilistic interpretation [@mnih2007probabilistic]; 3) it can be easily extended with domain specific prior knowledge (e.g., homophily in linked data [@tang2013exploiting]), thus suitable for various real-world problems; 4) many optimization methods such as (stochastic) gradient-based methods can be applied to find a good solution.", "\n\nIn this article we review several important variants of **MF**, including:\n\n- Basic **MF**,\n\n- Non-negative **MF**,\n\n- Orthogonal non-negative **MF**.", "\n\nAs can be seen from their names, non-negative **MF** and orthogonal non-negative **MF** are variants of basic **MF** with non-negativity and/or orthogonality constraints. ", "Such constraints are useful in specific senarios. ", "In the first part of this article, we introduce, for each of these models, the application scenarios, the distinctive properties, and the optimizing method. ", "Note that for the optimizing method, we mainly use the alternative algorithm, as similar to [@ding2008nonnegative; @tang2013exploiting]. ", "We will derive the updating rules, and prove the correctness and convergence. ", "For reference, matrix operation and optimization can be referred to [@brookes2005matrix] and [@boyd2009convex] respectively.", "\n\nBy properly adapting **MF**, we can go beyond the problem of clustering and matrix completion. ", "In the second part of this article, we will extend **MF** to sparse matrix compeletion, enhance matrix compeletion using various regularization methods, and make use of **MF** for (semi-)supervised learning by introducing latent space reinforcement and transformation. ", "We will see that **MF** is not only a useful model but also as a flexible framework that is applicable for various prediction problems.", "\n\nTheory\n======\n\nThis section introduces the theory in low-rank matrix factorization. ", "As introduced before, we will go through the following three **MF** variations: basic **MF**, non-negative **MF**, orthogonal non-negative **MF**.", "\n\nBasic **MF**\n------------\n\nWe start with the basic **MF** model, formulated as $$\\underset{\\mathbf{U,V}}{\\hbox{min}} \\ \\|\\mathbf{X-UV}^T\\|+\\mathcal{L}(\\mathbf{U,V)},\n \\label{BasicMF}$$ where $\\mathbf{X}\\in \\mathbb{R}^{m\\times n}$ is the data matrix to be approximated, and $\\mathbf{U}\\in \\mathbb{R}^{m\\times k}, \\mathbf{V}\\in \\mathbb{R}^{n\\times k}$ are two low-dimensional matrices ($k\n\\ll\\hbox{min}(m,n)$). ", "$\\mathcal{L}(\\mathbf{U,V})$ is a regularization part to avoid overfitting. ", "Regularization is usually necessary in prediction for bias-variance trade-off [@hastie2009elements].", "\n\n### Gradient Descent Optimization\n\nWe instantiate Eq. ", "\\[BasicMF\\] as follows $$\\underset{\\mathbf{U,V}}{\\hbox{min}} \\ \\mathcal{O} = \\|\\mathbf{X-UV}^T\\|_F^2+\\alpha\\|\\mathbf{U}\\|_F^2+\\beta\\|\\mathbf{V}\\|_F^2.", "\n \\label{BasicMFinit}$$\n\nThe reason of using Frobenius Norm is that it has a Guassian noise interpretation, and that the objective function can be easily transformed to a matrix trace version:\n\n$$\\underset{\\mathbf{U,V}}{\\hbox{min}} \\ \\mathcal{O} = Tr(\\mathbf{X}^T\\mathbf{X}+\\mathbf{VU}^T\\mathbf{UV}^T-2\\mathbf{X}^T\\mathbf{UV}^T)+\\alpha Tr(\\mathbf{U}^T\\mathbf{U})+\\beta Tr(\\mathbf{V}^T\\mathbf{V}).", "\n \\label{BasicMFinitTr}$$\n\nHere the matrix calculation rule $\\|\\mathbf{A}\\|_F=\\sqrt{Tr(\\mathbf{A}^T\\mathbf{A})}$ is used in the transformation. ", "Note that trace has many good properties such as $Tr(\\mathbf{A})=Tr(\\mathbf{A}^T)$ and $Tr(\\mathbf{AB})=Tr(\\mathbf{BA})$, which will be used in the following derivations.", "\n\nAccording to trace derivatives $\\frac{\\partial Tr(\\mathbf{AB})}{\\partial \\mathbf{A}} = \\mathbf{B}^T$ and the following rules: $$\\begin{split}\n \\frac{\\partial Tr(\\mathbf{A}^T\\mathbf{AB})}{\\partial \\mathbf{A}} = \\mathbf{A}(\\mathbf{B}^T+\\mathbf{B}), \\\\\n \\frac{\\partial Tr(\\mathbf{A}\\mathbf{A}^T\\mathbf{B})}{\\partial \\mathbf{A}} = (\\mathbf{B}^T+\\mathbf{B})\\mathbf{A}\n \\end{split}$$ (see more in [@brookes2005matrix]), we have the following derivatives for $\\mathbf{U}$ and $\\mathbf{V}$,\n\n$$\\begin{split}\n\\frac{\\partial \\mathcal{O}}{\\partial \\mathbf{U}} & = \\frac{\\partial Tr(\\mathbf{VU}^T\\mathbf{UV}^T-2\\mathbf{X}^T\\mathbf{UV}^T)+\\alpha Tr(\\mathbf{U}^T\\mathbf{U})}{\\partial \\mathbf{U}} \\\\\n & = \\frac{\\partial Tr(\\mathbf{U}^T\\mathbf{UV}^T\\mathbf{V}-2\\mathbf{UV}^T\\mathbf{X}^T)+\\alpha Tr(\\mathbf{U}^T\\mathbf{U})}{\\partial \\mathbf{U}} \\\\\n & = 2(\\mathbf{UV}^T\\mathbf{V} - \\mathbf{XV}+\\alpha \\mathbf{U}), \\\\\n\\frac{\\partial \\mathcal{O}}{\\partial \\mathbf{V}} & = \\frac{\\partial Tr(\\mathbf{VU}^T\\mathbf{UV}^T-2\\mathbf{X}^T\\mathbf{UV}^T)+\\beta Tr(\\mathbf{V}^T\\mathbf{V})}{\\partial \\mathbf{V}} \\\\\n & = \\frac{\\partial Tr(\\mathbf{V}^T\\mathbf{VU}^T\\mathbf{U}-2\\mathbf{V}^T\\mathbf{X}^T\\mathbf{U})+\\beta Tr(\\mathbf{V}^T\\mathbf{V})}{\\partial \\mathbf{V}} \\\\\n & = 2(\\mathbf{VU}^T\\mathbf{U} - \\mathbf{X}^T\\mathbf{U}+\\beta \\mathbf{V}).", "\n\\end{split}$$\n\nUsing these two derivatives, we can alternatively update $\\mathbf{U}$ and $\\mathbf{V}$ in each iteration of gradient descent algorithm.", "\n\nNote that the derivation can also be performed elementarily for each entry in matrix $\\mathbf{U,V}$ – this is, in fact, the original definition of matrix calculus. ", "Such element-wise derivation is especially useful in stochastic optimization. ", "We will touch this in a brief discussion of different algorithm schemes next.", "\n\n### Algorithm Schemes in CF and Others\n\nFor collaborative filtering, usually we take one subset of rated entries in $\\mathbf{X}$ as training set, and the rest rated entries as validation set. ", "Detailed algorithm can be found in [@takacs2008matrix]. ", "An important implementation strategy is that, for each rated entry in the training set, we update an entire row of $\\mathbf{U}$ and an entire column of $\\mathbf{V}^T$, as the whole row or column is involved in approximating the rated entry. ", "Same updating mechanism could be applied in stochastic algorithm.", "\n\nIn the meanwhile, similarly to stochastic algorithm, this type of updating does not fully utilize the data matrix in each updating iteration. ", "The reason is that, not only an entire row of $\\mathbf{U}$ ( and a column of $\\mathbf{V}^T$) is involved in a single entry in data matrix $\\mathbf{X}$, but also that a row of $\\mathbf{U}$ (and a column of $\\mathbf{V}^T$) influences an entire row (column) of $\\mathbf{X}$. Therefore for faster convergence, we recommend to update the matrix $\\mathbf{U}$ and $\\mathbf{V}$ by fully using data matrix $\\mathbf{X}$.\n\nAs the objective function is non-convex caused by the coupling between $\\mathbf{U}$ and $\\mathbf{V}$, we can choose to alternatively update $\\mathbf{U}$ and $\\mathbf{V}$ in each iteration as in [@ding2008nonnegative; @tang2013exploiting]. ", "Detailed algorithm is similar to the one in [@tang2013exploiting]. ", "Within any of these matrices, updating should be performed simultaneously as in all gradient-based methods. ", "Note that, we still need to choose a small learning rate to ensure that the objective function is monotonically decreasing. ", "Interestingly, the alternative optimization scheme is even more suitable for non-negative **MF** [@lee1999learning; @lee2001algorithms; @ding2006orthogonal; @ding2008nonnegative], as we will see in the following subsections.", "\n\nNon-negative **MF**\n-------------------\n\nNon-negative **MF** [@lee1999learning] seeks to approximate data matrix $\\mathbf{X}$ with low-dimensional matrices $\\mathbf{U,V}$ whose entries are all non-negative, i.e., $\\mathbf{U,V}\\ge \\mathbf{0}$. The new problem becomes:\n\n$$\\begin{split}\n \\underset{\\mathbf{U,V}}{\\hbox{min}} \\ \\mathcal{O} &= \\|\\mathbf{X-UV}^T\\|_F^2+\\alpha\\|\\mathbf{U}\\|_F^2+\\beta\\|\\mathbf{V}\\|_F^2 \\\\\n s.t. & \\ ", "\\mathbf{U}\\ge \\mathbf{0}, \\mathbf{V}\\ge \\mathbf{0}.", "\n \\label{NMFinit}\n\\end{split}$$\n\nNon-negativity constaint is originated from parts-of-whole interpretation [@lee1999learning]. ", "As we can think of, many real-world data are non-negative, such as link strength, favorite strength, etc. ", "Non-negative **MF** may uncover the important parts, which sometimes can not be achieved by non-constrained **MF** [@lee1999learning].", "\n\nApart from the advantage of uncovering parts, non-negative **MF** has its own computational advantage: there is a relatively fixed method to find a learning rate larger than common gradient-based methods. ", "To illustrate this, we will first derive the updating rule for Eq. ", "\\[NMFinit\\] as an example, then show the general approach for proving the convergence of updating rules derived from the relatively fixed method.", "\n\n### Updating Rule Derivation\n\nThe basic idea is using KKT complementary slackness conditions to enforce the non-negativity constraint. ", "Based on this, we can directly obtain updating rules.", "\n\nThe Lagrangian function of Eq. ", "\\[NMFinit\\] is $$L = \\|\\mathbf{X-UV}^T\\|_F^2+\\alpha\\|\\mathbf{U}\\|_F^2+\\beta\\|\\mathbf{V}\\|_F^2 - Tr(\\Lambda_1\\mathbf{U}^T) - Tr(\\Lambda_2\\mathbf{V}^T).", "\n \\label{NMFLagrangian}$$\n\nWe have the following KKT condition, $$\\begin{split}\n\\Lambda_1 \\circ \\mathbf{U} = \\mathbf{0}, \\\\\n\\Lambda_2 \\circ \\mathbf{V} = \\mathbf{0},\n\\end{split}\n\\label{NMFKKT1}$$ where $\\circ$ denotes the Hadamard product. ", "We then have\n\n$$\\begin{split}\n\\frac{\\partial L}{\\partial \\mathbf{U}} & = \\frac{\\partial Tr(\\mathbf{VU}^T\\mathbf{UV}^T-2\\mathbf{X}^T\\mathbf{UV}^T)+\\alpha Tr(\\mathbf{U}^T\\mathbf{U}) - Tr(\\Lambda_1\\mathbf{U}^T)}{\\partial \\mathbf{U}} \\\\\n & = 2(\\mathbf{UV}^T\\mathbf{V} - \\mathbf{XV}+\\alpha \\mathbf{U}) - \\Lambda_1, \\\\\n\\frac{\\partial L}{\\partial \\mathbf{V}} & = \\frac{\\partial Tr(\\mathbf{VU}^T\\mathbf{UV}^T-2\\mathbf{X}^T\\mathbf{UV}^T)+\\beta Tr(\\mathbf{V}^T\\mathbf{V})- Tr(\\Lambda_2\\mathbf{V}^T)}{\\partial \\mathbf{V}} \\\\\n & = 2(\\mathbf{VU}^T\\mathbf{U} - \\mathbf{X}^T\\mathbf{U}+\\beta \\mathbf{V}) - \\Lambda_2.", "\n\\end{split}$$\n\nLet $\\frac{\\partial L}{\\partial \\mathbf{U}}=0$ and $\\frac{\\partial L}{\\partial \\mathbf{V}}=0$ as another KKT condition, we have\n\n$$\\begin{split}\n\\Lambda_1 & = 2(\\mathbf{UV}^T\\mathbf{V} - \\mathbf{XV}+\\alpha \\mathbf{U}), \\\\\n\\Lambda_2 & = 2(\\mathbf{VU}^T\\mathbf{U} - \\mathbf{X}^T\\mathbf{U}+\\beta \\mathbf{V}).", "\n\\end{split}\n\\label{NMFKKT2}$$\n\nNow we combine Eq. ", "\\[NMFKKT1\\] and Eq. ", "\\[NMFKKT2\\], we have\n\n$$\\begin{split}\n(\\mathbf{UV}^T\\mathbf{V} - \\mathbf{XV}+\\alpha \\mathbf{U})\\circ \\mathbf{U} = \\mathbf{0}, \\\\\n(\\mathbf{VU}^T\\mathbf{U} - \\mathbf{X}^T\\mathbf{U}+\\beta \\mathbf{V})\\circ \\mathbf{V} = \\mathbf{0}.", "\n\\end{split}\n\\label{NMFKKT}$$\n\nfrom which, we have the final updating rules,\n\n$$\\begin{split}\n\\mathbf{U}(i,j) \\leftarrow \\mathbf{U}(i,j) \\sqrt{\\frac{\\mathbf{(XV)}(i,j)}{(\\mathbf{UV}^T\\mathbf{V}+\\alpha \\mathbf{U})(i,j)}}, \\\\\n\\mathbf{V}(i,j) \\leftarrow \\mathbf{V}(i,j) \\sqrt{\\frac{(\\mathbf{X}^T\\mathbf{U})(i,j)}{(\\mathbf{VU}^T\\mathbf{U}+\\beta \\mathbf{V})(i,j)}}.", "\n\\end{split}\n\\label{NMFrule}$$\n\nDetailed algorithm using these rules is similar to the one in [@tang2013exploiting]. ", "We can see that, instead of manually setting small learning rates $\\Lambda$’s, Eq. ", "\\[NMFrule\\] directly offer updating rules that can usually lead to faster convergence.", "\n\nThe correctness of these updating rules is straightforward to find out. ", "Taking $\\mathbf{U}$ as an example, from Eq. ", "\\[NMFrule\\] we have either $\\mathbf{U=0}$ or $\\mathbf{UV}^T\\mathbf{V} - \\mathbf{XV}+\\alpha \\mathbf{U}= \\mathbf{0}$, which combined together, exactly equal to Eq. ", "\\[NMFKKT\\]. ", "The convergence, however, is somehow more difficult to be proved. ", "We leave this to the next subsubsection.", "\n\n### Proof of Convergence\n\nWe prove the convergence of the updating rules in Eq. ", "\\[NMFrule\\] with the standard auxiliary function approach, which is proposed in [@lee2001algorithms] and extended in [@ding2006orthogonal; @ding2008nonnegative]. ", "Our proof is mainly based on [@ding2006orthogonal; @ding2008nonnegative], although the objective function Eq. ", "\\[NMFinit\\] is slightly different.", "\n\nAn **auxiliary function** $G(\\mathbf{U}, \\mathbf{U}^t)$ of function $L(\\mathbf{U})$ is a function that satisfies $$G(\\mathbf{U}, \\mathbf{U}) = L(\\mathbf{U}), \\ G(\\mathbf{U}, \\mathbf{U}^t) \\ge L(\\mathbf{U}).", "\n\\label{AuCondition}$$ Then, if we take $\\mathbf{U}^{t+1}$ such that $$\\mathbf{U}^{t+1} = \\underset{U}{\\hbox{arg min}} \\ G(\\mathbf{U}, \\mathbf{U}^t)\n\\label{AuUpdateVariable},$$ we have $$L(\\mathbf{U}^{t+1})\\le G(\\mathbf{U}^{t+1}, \\mathbf{U}^{t}) \\le G(\\mathbf{U}^{t}, \\mathbf{U}^{t} \\le L(\\mathbf{U}^{t})).$$\n\nThis proves that $L(U)$ is monotonically decreasing.", "\n\nTurn back to our problem, we need to take two steps using auxiliary function to prove the convergence of updating rules: 1) find an appropriate auxiliary function, and 2) find the global minima of the auxiliary function. ", "As a remark, the auxiliary function approach in principle is similar to Expectation-Maximization approach that is widely used in statistical inference. ", "Now let us complete the proof by taking the above two steps.", "\n\n**Step 1 - Finding an appropriate auxiliary function** needs to take advantage of two inequalities,\n\n$$\\begin{aligned}\nz \\ge 1 + logz,& \\ \\forall z>0, \\label{PrInequlity1}\\\\\n\\sum_{i=1}^m \\sum_{j=1}^k \\frac{(\\mathbf{AS'B})(i,j)\\mathbf{S}(i,j)^2}{\\mathbf{S'}(i,j)} &\\ge Tr(\\mathbf{S}^T\\mathbf{ASB}), \\notag \\\\\n\\forall \\mathbf{A}\\in \\mathbb{R}_+^{m\\times m}, \\mathbf{B}\\in \\mathbb{R}_+^{k\\times k}, &\\mathbf{S'}\\in \\mathbb{R}_+^{m\\times k}, \\mathbf{S}\\in \\mathbb{R}_+^{m\\times k}. ", " \\label{PrInequlity2}\\end{aligned}$$\n\nThe proof for Eq. ", "\\[PrInequlity2\\] can be found in [@ding2006orthogonal] (Proposition 6).", "\n\nAfter removing irrelevant terms, the objective function Eq. ", "\\[NMFinit\\] in terms of $\\mathbf{U}$ can be written as $$\\begin{split}\n& Tr(\\mathbf{VU}^T\\mathbf{UV}^T-2\\mathbf{X}^T\\mathbf{UV}^T)+\\alpha Tr(\\mathbf{U}^T\\mathbf{U})\\\\\n= & Tr(\\mathbf{U}^T\\mathbf{U}\\mathbf{V}^T\\mathbf{V}-2\\mathbf{U}^T\\mathbf{X}\\mathbf{V})+\\alpha Tr(\\mathbf{U}^T\\mathbf{U}) \\\\\n\\label{PrOriginal}\n\\end{split}$$\n\nWe now propose an auxiliary function $$\\begin{split}\nG(\\mathbf{U}, \\mathbf{U}^t) & = -2\\sum_{i,j}(\\mathbf{XV})(i,j)\\mathbf{U}^t(i,j)(1+log\\frac{\\mathbf{U}(i,j)}{\\mathbf{U}^t(i,j)}) \\\\\n & + \\sum_{i,j}\\frac{(\\mathbf{U}^t\\mathbf{V}^T\\mathbf{V})(i,j)\\mathbf{U}(i,j)^2}{\\mathbf{U}^t(i,j)} + \\alpha\\sum_{i,j}\\frac{\\mathbf{U}^t(i,j)\\mathbf{U}(i,j)^2}{\\mathbf{U}^t(i,j)}.", "\n\\label{PrAux}\n\\end{split}$$\n\nCombining the two inequalities Eq. ", "\\[PrInequlity1\\], \\[PrInequlity2\\], it is straightforward to see that Eq. ", "\\[PrAux\\] is a legal auxiliary function for Eq. ", "\\[PrOriginal\\], i.e., the two conditions in Eq. ", "\\[AuCondition\\] are satisfied. ", "Now we procceed to find $\\mathbf{U}^{t+1}$ that satisfies condition Eq. ", "\\[AuUpdateVariable\\].", "\n\n**Step 2 - Finding $\\mathbf{U}^{t+1}$** can be achieved by obtaining the *global minima* of Eq. ", "\\[PrAux\\]. ", "First, we have\n\n$$\\begin{split}\n\\frac{\\partial G(\\mathbf{U}, \\mathbf{U}^t)}{\\partial \\mathbf{U}(i,j)} & = -2(\\mathbf{XV})(i,j)\\frac{\\mathbf{U}^t(i,j)}{\\mathbf{U}(i,j)} + 2\\frac{(\\mathbf{U}^t\\mathbf{V}^T\\mathbf{V})(i,j)\\mathbf{U}(i,j)}{\\mathbf{U}^t(i,j)} + 2\\alpha\\mathbf{U}(i,j).", "\n\\end{split}$$\n\nLet $\\frac{\\partial G(\\mathbf{U}, \\mathbf{U}^t)}{\\partial \\mathbf{U}(i,j)} = 0$ we have $$\\begin{split}\n(\\mathbf{XV})(i,j)\\frac{\\mathbf{U}^t(i,j)}{\\mathbf{U}^{t+1}(i,j)} = (\\frac{(\\mathbf{U}^t\\mathbf{V}^T\\mathbf{V})(i,j)}{\\mathbf{U}^t(i,j)} + \\alpha) \\mathbf{U}^{t+1}(i,j),\n\\end{split}$$ from which we directly have $$\\begin{split}\n\\mathbf{U}^{t+1}(i,j) = \\mathbf{U}^t(i,j)\\sqrt{\\frac{(\\mathbf{XV})(i,j)}{(\\mathbf{U}^t\\mathbf{V}^T\\mathbf{V}+\\alpha\\mathbf{U}^t)(i,j)}},\n\\end{split}\n\\label{NMFruleDer}$$ which is exactly the updating rule for $\\mathbf{U}$ in Eq. ", "\\[NMFrule\\]. ", "Similar result can be obtained for $\\mathbf{V}$.\n\n#### General observation\n\nIf we go over the entire derivation process, by comparing Eq. ", "\\[NMFruleDer\\] and Eq. ", "\\[NMFKKT\\], we can observe that the only thing that matters for the final updating rules is the signs of the terms in Eq. ", "\\[NMFKKT\\].", "\n\nOrthogonal Non-negative **MF**\n------------------------------\n\nOrthogonality is another important constraint to **MF**. ", "First of all, we formulate the problem as\n\n$$\\begin{split}\n \\underset{\\mathbf{U,V}}{\\hbox{min}} \\ \\mathcal{O} &= \\|\\mathbf{X-UV}^T\\|_F^2 \\\\\n s.t. & \\ ", "\\mathbf{U}, \\mathbf{V} \\ge \\mathbf{0}, \\mathbf{U}^T\\mathbf{U} = \\mathbf{I}, \\mathbf{V}^T\\mathbf{V} = I.\n \\label{ONMFinit}\n\\end{split}$$\n\nNote that here we do not add regularization due to the orthogonality constraint.", "\n\nIt is proved in [@ding2005equivalence; @ding2006orthogonal] ([@ding2006orthogonal] gives more mature proof) that this problem is equivalent to K-means clustering: $\\mathbf{V'}$ is an indication matrix with $\\mathbf{V'}(i,j) = 0$ if $\\mathbf{x}_i$ belongs to the $j^{th}$ $(1\\leq j \\leq k)$ cluster. ", "Here $\\mathbf{V}=\\mathbf{V'}(\\mathbf{V'}^T\\mathbf{V'})^{-1/2}$, i.e., $\\mathbf{V}$ is a normalized version of $\\mathbf{V'}$: $\\mathbf{V'}$ is a constant scaling of corresponding row of $\\mathbf{V}$, and $\\|\\mathbf{V}(:,j)\\|_2^2 = 1$.\n\n### 3-factor **MF** vs. 2-factor **MF**\n\nWe call Eq. ", "\\[ONMFinit\\] 1-sided 2-factor orthogonal non-negative **MF**, as only one factorized matrix needs to be orthogonal, and there are in total two factorized matrices. ", "It is recommended that, to simultaneously cluster rows and columns in $\\mathbf{X}$, we need 3-factor bi-orthogonal non-negative **MF**, i.e., both $\\mathbf{U}$ and $\\mathbf{V}$ being orthogonal:\n\n$$\\begin{split}\n \\underset{\\mathbf{U,H,V}}{\\hbox{min}} \\ \\mathcal{O} &= \\|\\mathbf{X-UHV}^T\\|_F^2 \\\\\n s.t. & \\ ", "\\mathbf{U}, \\mathbf{H}, \\mathbf{V} \\ge \\mathbf{0}, \\mathbf{U}^T\\mathbf{U} = \\mathbf{I}, \\mathbf{V}^T\\mathbf{V} = I.\n \\label{3ONMFinit}\n\\end{split}$$\n\nIt is proved that, compared to 3-factor bi-orthogonal non-negative **MF**, 2-factor bi-orthogonal non-negative **MF** is too restrictive, and will lead to poor approximation [@ding2006orthogonal].", "\n\n3-factor bi-orthogonal non-negative **MF** is useful in document-word clustering [@ding2006orthogonal], outperforming K-means (i.e., 1-sided 2-factor orthogonal non-negative **MF**). ", "It has been applied for tasks such as sentiment analysis [@hu2013unsupervised].", "\n\n### Updating Rule Derivation\n\nWe now derive updating rules for Eq. ", "\\[3ONMFinit\\], as we did before for non-negative **MF**.", "\n\nThe Lagrangian function for Eq. ", "\\[3ONMFinit\\] is\n\n$$\\begin{split}\n L = & \\|\\mathbf{X-UHV}^T\\|_F^2 - Tr(\\Lambda_U\\mathbf{U}^T) - Tr(\\Lambda_H\\mathbf{H}^T) - Tr(\\Lambda_V\\mathbf{V}^T) \\\\+& Tr(\\Gamma_U(\\mathbf{U}^T\\mathbf{U} - \\mathbf{I})) + Tr(\\Gamma_V(\\mathbf{V}^T\\mathbf{V} - \\mathbf{I}))\n \\label{3ONMFinitLag}\n\\end{split}$$\n\nWe then compute the updating rules for $\\mathbf{H,U,V}$ sequentially.", "\n\n**Computation of** $\\mathbf{H}$ $$\\begin{split}\n\\frac{\\partial L}{\\partial \\mathbf{H}} & = \\frac{\\partial Tr(\\mathbf{VH}^T\\mathbf{U}^T\\mathbf{UHV}^T-2\\mathbf{XVH}^T\\mathbf{U}^T)-Tr(\\Lambda_H\\mathbf{H}^T)}{\\partial \\mathbf{H}}\\\\\n& = 2\\mathbf{U}^T\\mathbf{U}\\mathbf{H}\\mathbf{V}^T\\mathbf{V}-2\\mathbf{U}^T\\mathbf{XV}-\\Lambda_H,\n\\end{split}$$\n\nWe have the following KKT conditions, $$\\begin{split}\n\\frac{\\partial L}{\\partial \\mathbf{H}} & = \\mathbf{0}\\\\\n\\Lambda_H\\circ \\mathbf{H} & = \\mathbf{0}.", "\n\\end{split}$$\n\nCombining the above three equations, we have $$\\begin{split}\n(\\mathbf{U}^T\\mathbf{U}\\mathbf{H}\\mathbf{V}^T\\mathbf{V}-\\mathbf{U}^T\\mathbf{XV})\\circ \\mathbf{H} = \\mathbf{0}.", "\n\\end{split}$$\n\nTherefore we have the following updating rule for $\\mathbf{H}$, $$\\begin{split}\n\\mathbf{H}(i,j) \\leftarrow \\mathbf{H}(i,j) \\sqrt{\\frac{(\\mathbf{U}^T\\mathbf{XV})(i,j)}{(\\mathbf{U}^T\\mathbf{U}\\mathbf{H}\\mathbf{V}^T\\mathbf{V})(i,j)}}.", "\n\\end{split}$$\n\nNote that $\\mathbf{U}^T\\mathbf{U}\\ne \\mathbf{I}$ during the optimizing process.", "\n\n**Computation of** $\\mathbf{U,V}$\n\nDue to the orthogonality constraint, obtaining the updating rules for $\\mathbf{U, V}$ needs to eliminate both $\\Lambda$ and $\\Gamma$ in the final updating rules. ", "This will need the following equality,\n\n$$\\mathbf{U}^T\\Lambda_U = \\mathbf{0} \\Leftarrow \\Lambda_U\\circ\\mathbf{U} = \\mathbf{0}\n\\label{ONMFequality}$$\n\nThe latter will automatically be satisifed according to KKT conditions as we will see below.", "\n\n$$\\begin{split}\n\\frac{\\partial L}{\\partial \\mathbf{U}} & = \\frac{\\partial Tr(\\mathbf{VH}^T\\mathbf{U}^T\\mathbf{UHV}^T-2\\mathbf{XVH}^T\\mathbf{U}^T)-Tr(\\Lambda_U\\mathbf{U}^T) + Tr(\\Gamma_U(\\mathbf{U}^T\\mathbf{U} - \\mathbf{I}))}{\\partial \\mathbf{U}}\\\\\n& = 2\\mathbf{UHV}^T\\mathbf{V}\\mathbf{H}^T-2\\mathbf{X}\\mathbf{VH}^T-\\Lambda_U+2\\mathbf{U}\\Gamma_U,\n\\end{split}$$\n\nWe have the following KKT conditions, $$\\begin{split}\n\\frac{\\partial L}{\\partial \\mathbf{U}} & = \\mathbf{0}\\\\\n\\Lambda_U\\circ \\mathbf{U} & = \\mathbf{0}.", "\n\\end{split}$$\n\nCombining the above three equations we have $$\\begin{split}\n(\\mathbf{UHV}^T\\mathbf{V}\\mathbf{H}^T-\\mathbf{X}\\mathbf{VH}^T +\\mathbf{U}\\Gamma_U)\\circ \\mathbf{U} = \\mathbf{0} \n\\label{ONMFlastbuttwo}\n\\end{split}$$ and $$\\begin{split}\n\\Gamma_U = \\mathbf{U}^T\\mathbf{X}\\mathbf{VH}^T - \\mathbf{HV}^T\\mathbf{V}\\mathbf{H}^T.\n\\label{ONMFlastbutone}\n\\end{split}$$\n\nNote that here we can have $\\mathbf{U}^T\\mathbf{U}=\\mathbf{I}$ as we only want an expression for $\\Gamma_U$. Further note that for $\\Lambda$ we have the constraint $\\Lambda>\\mathbf{0}$ (according to KKT condition) while for $\\Gamma$ we do not have such constraint. ", "Therefore we need to split $\\Gamma$ into two parts, $$\\begin{split}\n\\Gamma_U &= \\Gamma_U^+ - \\Gamma_U^- \\\\\n\\Gamma_U^+ &= (|\\Gamma_U|+\\Gamma_U)/2 \\\\\n\\Gamma_U^- &= (|\\Gamma_U|-\\Gamma_U)/2.", "\n\\end{split}\n\\label{splitruleU}$$\n\nUsing this division we rewrite Eq. ", "\\[ONMFlastbuttwo\\], we then have\n\n$$\\begin{split}\n(\\mathbf{UHV}^T\\mathbf{V}\\mathbf{H}^T-\\mathbf{X}\\mathbf{VH}^T +\\mathbf{U}\\Gamma_U^+ - \\mathbf{U}\\Gamma_U^-)\\circ \\Lambda_U = \\mathbf{0}.", "\n\\end{split}$$\n\nTherefore the final updating rule for $\\mathbf{U}$ is $$\\begin{split}\n\\mathbf{U}(i,j) \\leftarrow \\mathbf{U}(i,j) \\sqrt{\\frac{(\\mathbf{X}\\mathbf{VH}^T+\\mathbf{U}\\Gamma_U^-)(i,j)}{(\\mathbf{UHV}^T\\mathbf{V}\\mathbf{H}^T+\\mathbf{U}\\Gamma_U^+)(i,j)}}.", "\n\\end{split}$$ where $\\Gamma_U^+$ and $\\Gamma_U^-$ is defined in Eq. ", "\\[ONMFlastbutone\\] and \\[splitruleU\\].", "\n\nIf we go over the same process again for $\\mathbf{V}$, we have the following updating rules, Therefore the final updating rule for $\\mathbf{U}$ is $$\\begin{split}\n\\mathbf{V}(i,j) \\leftarrow \\mathbf{V}(i,j) \\sqrt{\\frac{(\\mathbf{X}^T\\mathbf{UH}+\\mathbf{V}\\Gamma_V^-)(i,j)}{(\\mathbf{VH}^T\\mathbf{U}^T\\mathbf{UH}+\\mathbf{V}\\Gamma_V^+)(i,j)}}.", "\n\\end{split}$$ where $\\Gamma_V^+,\\Gamma_V^-$ are defined similarly as in Eq. ", "\\[splitruleU\\] (replace $\\mathbf{U}$ with $\\mathbf{V}$), and $\\Gamma_V$ is defined as $$\\Gamma_V =\\mathbf{V}^T\\mathbf{X}^T\\mathbf{UH}+\\mathbf{H}^T\\mathbf{U}^T\\mathbf{UH}.$$\n\n#### Choice of 2/3-factor **MF**\n\nHow do we choose between 2-factor or 3-factor **MF** in real-world applications? ", "A general principle is that: if we only need to place regularizations on one latent matrix, i.e. either $\\mathbf{U}$ or $\\mathbf{V}$, then we can use 2-factor **MF**; if both $\\mathbf{U}$ and $\\mathbf{V}$ are to be regularized, either explictly or implictly, 3-factor **MF** might be a better choice.", "\n\nAdapatations and Applications\n=============================\n\n**MF** has been used for a wide range of applications in social computing, including collaborative filtering (CF), link prediction (LP), sentiment analysis, etc. ", "It can not only provide as a single model for matrix completeion or clutering, but also as a framework for solving almost all categories of prediction problems.", "\n\nIn this part we will extend **MF** to highly sparse cases. ", "For the cases in which we have additional data, e.g. link data between users (in CF, or addtional links in LP) or description data of users and items, we can incorporate different regularization techniques to enhace the matrix completion performance. ", "Moreover, by properly manipulating latent factors derived from **MF**, we can adapt **MF** to (un-/semi-)supervised learning.", "\n\nSparse Matrix Completion\n------------------------\n\nHere we address the problem of using **MF** for collborative filtering, link prediction and clustering. ", "We start with a basic assumption, which makes the previously introduced models unsuitable. ", "This basic assumption is: high portion of the data is missing, i.e. data matrix is incomplete. ", "Such assumption is very common in real-world cases [@koren2009matrix].", "\n\nThe problem is solved by modeling directly the observed data. ", "Eq. ", "\\[BasicMF\\] is modified as follows: $$\\underset{\\mathbf{U,V}}{\\hbox{min}} \\ \\mathcal{O} = \\|\\mathbf{O\\circ (X-UV}^T)\\|_F^2+\\alpha\\|\\mathbf{U}\\|_F^2+\\beta\\|\\mathbf{V}\\|_F^2,\n \\label{BasicMFinitCF}$$ in which $O$ poses constraints on only these observed data entries, i.e. $\\mathbf{O}(i,j)=1$ if entry $(i,j)$ is observed, and $\\mathbf{O}(i,j)=0$ otherwise.", "\n\nIn this case, the objective function is transformed as follows: $$\\begin{split}\n \\underset{\\mathbf{U,V}}{\\hbox{min}} \\ \\mathcal{O} &= Tr((\\mathbf{O}^T\\circ \\mathbf{X}^T)(\\mathbf{O\\circ X})+(\\mathbf{O}^T\\circ \\mathbf{VU}^T)(\\mathbf{O\\circ UV}^T)\\\\&-2(\\mathbf{O}^T\\circ \\mathbf{X}^T)(\\mathbf{O\\circ UV}^T))+ \\alpha Tr(\\mathbf{U}^T\\mathbf{U})+\\beta Tr(\\mathbf{V}^T\\mathbf{V}).", "\n \\label{BasicMFinitTrCF}\n\\end{split}$$\n\nAnd the gradients become: $$\\begin{split}\n\\frac{\\partial \\mathcal{O}}{\\partial \\mathbf{U}} & = \\frac{\\partial Tr((\\mathbf{O}^T\\circ \\mathbf{VU}^T)(\\mathbf{O\\circ UV}^T)-2(\\mathbf{O}^T\\circ \\mathbf{X}^T)(\\mathbf{O\\circ UV}^T))+\\alpha Tr(\\mathbf{U}^T\\mathbf{U})}{\\partial \\mathbf{U}} \\\\\n & = \\frac{\\partial Tr(\\mathbf{U}^T(\\mathbf{O\\circ O\\circ UV}^T)\\mathbf{V}-2(\\mathbf{O}^T\\circ \\mathbf{O}^T\\circ \\mathbf{X}^T)\\mathbf{UV}^T)+\\alpha Tr(\\mathbf{U}^T\\mathbf{U})}{\\partial \\mathbf{U}} \\\\\n & = 2((\\mathbf{O\\circ O\\circ UV}^T)\\mathbf{V} - (\\mathbf{O}\\circ \\mathbf{O}\\circ \\mathbf{X})\\mathbf{V}+\\alpha \\mathbf{U}), \\\\\n\\frac{\\partial \\mathcal{O}}{\\partial \\mathbf{V}} & = 2((\\mathbf{O}^T\\circ \\mathbf{O}^T\\circ \\mathbf{VU}^T)\\mathbf{U} - (\\mathbf{O}^T\\circ \\mathbf{O}^T \\circ \\mathbf{X}^T)\\mathbf{U}+\\beta \\mathbf{V}).", "\n\\end{split}$$\n\nIn the derivation above we use the following rule of Hadamard product: $$Tr((\\mathbf{O}^T \\circ \\mathbf{A}^T)(\\mathbf{O}\\circ \\mathbf{A})) = Tr(\\mathbf{A}^T(\\mathbf{O}\\circ \\mathbf{O}\\circ \\mathbf{A})).$$\n\nThe upodating rules for non-negative **MF** and orthogonal non-negative **MF** is straightforward: the methods of getting $\\Lambda, \\Gamma$ are exactly the same as what we did in Theory Section. ", "For updating rules of non-negative **MF** and orthogonal non-negative , the reader can refer to [@gao2013exploring] and [@gao2015content], respectively.", "\n\n### Calculating Memory Occupation\n\nNote that the updating rules above are again purely matrix-wise – this is to be consistent with the style of this article. ", "In matrix completion, however, sometimes the size of the data matrix is bigger than memory size, making stochasitc gradient descent algorithm more suitable than the matrix-wise method.", "\n\nThe question here is, how do we calculate the size of a matrix to see if it fits to memory. ", "Here is a easy way to make such a calculation. ", "Assume we have a $10K\\times 10K$ matrix, with each entry allocated a 32bit float (e.g. float32 in python), then the memory allocation for the whole matrix can be roughtly calculated as $$(10^4\\times 10^4\\times 4)/10^6 = 400M.$$\n\nSo for a computer with 4G memory, we can fit a matrix $100K\\times 10K$ matrix into memory. ", "For a computer with 32G memory, we can fit a matrix of size $100K\\times 80K$ ($10\\times8\\times 400M=32G$).", "\n\nEnhanced Matrix Completion\n--------------------------\n\nWe looked at **MF** with different *constraints*, e.g. non-negativity and orthogality, and one type of *regularization* which prevents the entries in low-rank matrices being too large. ", "This subsection considers other kinds of *regularization* when external data source becomes avaiable, i.e. goes beyond the data matrix $\\mathbf{X}$. Usually this is the real-world case, since most social media data contains rich data sources.", "\n\nIn this subsection we consider two types of regularization with corresponding addtional data:\n\n1. ", " **self-regularization** when we have additional linked data between users (in CF, or addtional link type in LP);\n\n2. ", " **2-sided regularization** when we have description data of users and items.", "\n\nWe further point to two publications [@tang2013exploiting] and [@gao2015content], to demonstrate the above two types of regularization, respectively.", "\n\n### Enhancing Matrix Completion with Self-regularization\n\nBy self-reguarization, we refer to the regularization of rows in low-rank matrix $\\mathbf{U}$ or $\\mathbf{V}$. Assume now we are dealing with a LP problem, in which we would like to predict if a user trust another – trust relation are common in review sites like Epinions. ", "Usually there exist another type of links between users, i.e. social relation. ", "Can we use social relation to boost the performance of trust relation prediction? ", "This is exactly the research question proposed in [@tang2013exploiting].", "\n\nIt turns out the answer is yes – as expected, users with social relation tend to share similar preferences. ", "The basic idea to incorporate this into trust prediction is by adding the regularization term Eq.", " \\[Laplacian\\] into the general **MF** framework. ", "In Eq.", " \\[Laplacian\\], $\\xi$ is the entries in the additional link matrix $\\mathcal{Z}$ and $\\mathbf{D}$ is the diagonal matrix with $\\mathbf{D}(i,i)=\\mathcal{Z}_{j=1}^m(j,i)$, thus $\\mathcal{L}$ is the Laplacian matrix of $\\mathbf{D}$. It is interesting that, using trace operator, the regularization Eq.", " \\[Laplacian\\] become such simple.", "\n\nSocial relation is common in social computing, the similarity in people with social relation has a specific name in social theory - ‘homophily’, making this type of regularization applicable to a lot of social computing scenarios. ", "If we generalize a bit, we may assume that many linked objects, not necessarily web users, have similarities, in terms of their entries of data matrix $\\mathbf{X}$ that we would like to predict. ", "For instance, while predicting the sentiment of articles, we may assume that articles authored by the same users tend to express similar sentiment, e.g. political reviewers expressing negative sentiment in their news reviewing articles. ", "We will see that this type of regularization is used in a sentiment analysis paper [@hu2013unsupervised], which we will analyze later.", "\n\n$$\\begin{split}\n &\\frac{1}{2}\\sum_{i=1}^m\\sum_{j=1}^m \\xi(i,j) \\|\\mathbf{U}(i,:)-\\mathbf{U}(j,:)\\|_2^2 \\\\\n= &\\frac{1}{2}\\sum_{i=1}^m\\sum_{j=1}^m\\sum_{d=1}^k \\xi(i,j) (\\mathbf{U}(i,k)-\\mathbf{U}(j,k))^2 \\\\\n= &\\frac{1}{2}\\sum_{i=1}^m\\sum_{j=1}^m\\sum_{d=1}^k \\xi(i,j) (\\mathbf{U}^2(i,k)-2\\mathbf{U}(i,k)\\mathbf{U}(j,k)+\\mathbf{U}^2(j,k)) \\\\\n= &\\sum_{i=1}^m\\sum_{j=1}^m\\sum_{d=1}^k \\xi(i,j)\\mathbf{U}^2(i,k) - \\sum_{i=1}^m\\sum_{j=1}^m\\sum_{d=1}^k \\xi(i,j)\\mathbf{U}(i,k)\\mathbf{U}(j,k) \\\\\n= & \\sum_{d=1}^k \\mathbf{U}^T(:,k)(\\mathbf{D}-\\mathcal{Z})\\mathbf{U}(:,k) \\\\\n= &Tr(\\mathbf{U}^T\\mathcal{L}\\mathbf{U})\n\\label{Laplacian}\n\\end{split}$$\n\n#### Regularization and Sparseness\n\nMore regularization sometimes can conquer the data sparsity problem, to some extent. ", "On the other hand, modelling the error only on observed data entries, as what $\\mathbf{O}$ does in previous subsection, could be also very effective.", "\n\n### Enhancing Matrix Completion with 2-sided regularization\n\nHere we consider placing regularization on both $\\mathbf{U}$ and $\\mathbf{V}$ together, which we call 2-sided regularization.", "\n\nBefore we start, we review orthogonal non-negative a bit. ", "Orthogonality constraint in orthogonal non-negative is similar to a 2-sided regularization: $$Tr(\\Gamma_U^T(\\mathbf{U}^T\\mathbf{U} - \\mathbf{I})), Tr(\\Gamma_V^T(\\mathbf{V}^T\\mathbf{V} - \\mathbf{I}))$$ are two equality constraints over low-rank matrices. ", "Such equality needs to be strictily satisfied. **", "Regularization, differing from constraints, however can be viewed as a soft type of constraints**: it only needs to be satisfied to some extend, while constraints need to be strictly satisified. ", "This is the reason why we consider non-negativity and orthogonality constraints, while call homophily regularization.", "\n\nNow let us turn our attention back to 2-sided regularization, basing the example from [@gao2015content], which considers POI recommendation in location-based social network (LBSN). ", "The first data we have is a check-in data $\\mathbf{X}$ that encodes the interaction between users and POI’s. ", "We are further given some desription data $\\mathbf{A}$ of user interest, and $\\mathbf{B}$ of POI property, both in the form of word vectors. ", "Question here is, how do we make use of $\\mathbf{A}$ and $\\mathbf{B}$ to enhance the matrix completion problem for interacting matrix $\\mathbf{X}$?", "\n\nSince we are coping with 2-sided regularization, we use 3-factor :\n\n$$\\begin{split}\n \\underset{\\mathbf{U,H,V}}{\\hbox{min}} \\ \\mathcal{O} &= \\|\\mathbf{X-UHV}^T\\|_F^2 - Tr(\\Lambda_U\\mathbf{U}^T) - Tr(\\Lambda_H\\mathbf{H}^T) + R's.", "\n\\end{split}$$\n\nThe only thing here is, how to add the 2-sided regularization terms $R$’s, as we did for orthogonality constraints.", "\n\nTo utilize $\\mathbf{A}$ and $\\mathbf{B}$, we assume that there are some connections between them, such that they can be used to regularize $\\mathbf{U}$ and $\\mathbf{V}$. In the context of LBSN, we may assume that $\\mathbf{A}$ and $\\mathbf{B}$ have similar vocabulary, in which the words have similar latent space. ", "Therefore we can approximate $\\mathbf{A}$ and $\\mathbf{B}$ with 2-factor **MF**: $$\\mathbf{A} \\approx \\mathbf{U}\\mathbf{G}^T, \\mathbf{B} \\approx \\mathbf{V}\\mathbf{G^*}^T$$ with connection $$\\|\\mathbf{G}-\\mathbf{G^*}\\|_1 \\approx 0.", "\n\\label{connect}$$\n\nEq.", " \\[connect\\] is important since it really connect $\\mathbf{U}$ with $\\mathbf{V}$, forming a 2-sided regularization. ", "The final objective function now becomes:\n\n$$\\begin{split}\n \\underset{\\mathbf{U,H,V}}{\\hbox{min}} \\ \\mathcal{O} &= \\|\\mathbf{X-UHV}^T\\|_F^2 - Tr(\\Lambda_U\\mathbf{U}^T) - Tr(\\Lambda_H\\mathbf{H}^T) \\\\& + \\lambda_A \\|\\mathbf{A} - \\mathbf{U}\\mathbf{G}^T\\|_F^2 + \\lambda_B \\|\\mathbf{B} - \\mathbf{U}\\mathbf{G^*}^T\\|_F^2 + \\delta \\|\\mathbf{G}-\\mathbf{G^*}\\|_1 \\\\& + \\alpha (\\|\\mathbf{U}\\|_F^2+\\|\\mathbf{V}\\|_F^2+\\|\\mathbf{H}\\|_F^2+\\|\\mathbf{G}\\|_F^2).", "\n\\end{split}$$\n\nThe last line is to regularize in approximating $\\mathbf{A,B}$; note that since here we use regularization, instead of constraints as in non-negative orthogonal **MF**, we can add regualrization to $\\mathbf{U,V,H}$.\n\n#### Factorization vs. Regularization\n\nWe remark here that the idea of co-factoring two matrices ($\\mathbf{X,A}$) with shared factors ($\\mathbf{U}$) originates from collective matrix facterization [@singh2008relational], which has many applications in CF [@shi2014collaborative]. ", "A interesting comparative study between collective facterization and self-regularization can be found in [@yuan2011factorization].", "\n\nFrom Clustering to (Un-/Semi-)supervised Learning\n-------------------------------------------------\n\nAlthough different types of extra data sources can be used in enhanced **MF**, the purpose so far to remains be matrix completion. ", "This subsection, however, considers other types of machine learning problems, i.e. (un-/semi-)supervised learning. ", "The essential assumption of using **MF** for (un-/semi-)supervised learning is that the latent row(column) is or can be predictable for some dependent variables.", "\n\nTo make use of the predictability, we need mechanisms to connect the latent vectors to responses. ", "Following are the two mechanisms:\n\n1. ", " **enforcement** directly enforce the latent space to be the response space;\n\n2. ", " **transformation** transform the latent space to response space. ", "This is similar as what people do in machine learning.", "\n\nWe point to publications [@hu2013unsupervised] and [@gao2014modeling] for the demonstration of the above two methods, respectively.", "\n\n### Enforcing Latent Factor to be Response\n\nIn previous regularizations, we do not force the latent space to be interpretable space. ", "For instance, in the 2-sided regularization, we do not specify the meaning of $\\mathbf{U}$ that is used in both $\\mathbf{X}$ and $\\mathbf{A}$ factorization. ", "However, (un-/semi-)supervised learning requires the latent space to be interpretable. ", "The method, still, is regularization.", "\n\n[@hu2013unsupervised] deals with the problem of sentiment analysis, for which the authors use 3-factor non-negative orthogonal **MF**. ", "The input is a post-word matrix $\\mathbf{X}$. In addition, we are given emotion indication in some of the posts. “", "The key idea of modeling post-level emotion indication is to make the sentiment polarity of a post as close as possible to the emotion indication of the post.”, ", "formulated as $$\\mathbf{G}^u \\|\\mathbf{U-U_0}\\|_F^2,$$ in which $\\mathbf{U}\\in \\mathbb{R}^{m\\times 2}$ is the post-sentiment matrix, i.e. $\\mathbf{U}(i,:)=(1,0)$ representing that the $i$th post has a positive sentiment, and $\\mathbf{U_0}\\in \\mathbb{R}^{m\\times 2}$ is the post-emotion indication matrix, i.e. $\\mathbf{U_0}(i,:)=(1,0)$ meaning the $i$th post contains positive emotion indication. ", "Similar regularization is applied to $\\mathbf{V}$ as well.", "\n\nSuch an idea is quite simple, however it explictly poses a notable question: is it computationally feasible that we strictly enforce the $\\mathbf{U,V}$ to any pre-defined space, i.e. sentiment space in this case. ", "Based on Proposition 1 in [@ding2006orthogonal], we know that the answer is no. ", "However, as we see in this sentiment analysis work [@hu2013unsupervised], **regularization is always possible**!", "\n\nIn fact, the enforcement regularization that we see in this work is the most constrained regularization: it is 2-sided regularization for both $\\mathbf{U,V}$, and it is enforcement without any transformation coefficients. ", "We will see next how to regularize for supervised learning by tranformation.", "\n\n### Transforming Latent Factor to Response\n\nAs we pointed out, the essential idea of supervised learning is to transform the latent variables to some response variable. ", "To see this, we study an example that exploit matrix factorization to boost (sparse) regression. ", "Here we solve the following optimization problem: $$\\small\n\\begin{split}\n\\underset{\\mathbf{U,V}\\ge \\mathbf{0}}{\\hbox{min}}\\ \\ & \\|\\mathbf{X- UV}^T\\|_F^2 + \\lambda\\|\\mathbf{O}\\odot (\\mathbf{UW}^T - \\mathbf{Y})\\|_F^2 \\\\\n & + \\lambda_X(\\|\\mathbf{U}\\|_F^2+\\|\\mathbf{V}\\|_F^2) + \\lambda_Y\\|\\mathbf{W}\\|_1.", "\n\\end{split}$$\n\nOptimizing the objective function accomplishes two goals simultaneously: 1) learning the latent factors; and, 2) predicting the dependent variables based on the learnt latent factors. ", "As the learning of $\\mathbf{U}$ is guided by the prediction of $\\mathbf{Y}$ (proved later), the learned latent factors can be more predictive in the regression. ", "Note that the parameter $\\lambda$ controls the relative importance between matrix factorization and regression – a larger $\\lambda$ indicates that the regression should dominate.", "\n\n$\\mathbf{O}$ is a mask vector with the first $n_{train}$ – the size of training set – entries equal to 1, and the other $n_{test}$ – the size of test set – entries equal to 0. ", "Correspondingly, $\\mathbf{X}$ contains both the training data in the first $n_{train}$ rows and the test data, in the remaining $n_{test}$ rows. ", "$\\mathbf{Y}$ is also composed of two parts, the first $n_{train}$ entries being the complexity values of the training tasks; the other entries can be any values, as they are not involved in model learning, which is controlled by the 0’s in $\\mathbf{O}$. The Lagrangian function of the objective function is $$\\small\n\\begin{split}\nL&=\\|\\mathbf{X- UV}^T\\|_F^2 + \\lambda\\|\\mathbf{O}\\odot (\\mathbf{UW}^T - Y)\\|_F^2 \n\\\\ &+ \\lambda_X(\\|\\mathbf{U}\\|_F^2+\\|\\mathbf{V}\\|_F^2)\n+ \\lambda_Y\\|\\mathbf{W}\\|_1 - Tr(\\Lambda_U\\mathbf{U}^T) - Tr(\\Lambda_V\\mathbf{V}^T).", "\n\\end{split}$$\n\nThe derivative of $\\mathbf{U}$ is: $$\\small\n\\begin{split}\n\\frac{\\partial L}{\\partial \\mathbf{U}} \n&= \\frac{\\partial Tr(\\mathbf{VU}^T\\mathbf{UV}^T-2\\mathbf{X}^T\\mathbf{UV}^T) }{\\partial \\mathbf{U}} \\\\\n& + \\frac{\\partial \\lambda Tr((\\mathbf{O}^T\\odot \\mathbf{WU}^T)(\\mathbf{O}\\odot \\mathbf{UW}^T)-2(\\mathbf{O}^T\\odot \\mathbf{Y}^T)(\\mathbf{O}\\odot \\mathbf{UW}^T))}{\\partial \\mathbf{U}} \\\\\n& + \\frac{\\partial \\lambda_X Tr(\\mathbf{U}^T\\mathbf{U}) - Tr(\\Lambda_U\\mathbf{U}^T)}{\\partial \\mathbf{U}} \\\\\n& = 2(\\mathbf{UV}^T\\mathbf{V} - \\mathbf{XV}+ \\lambda(\\mathbf{O}\\odot (\\mathbf{UW}^T))\\mathbf{W} - \\lambda(\\mathbf{O}\\odot \\mathbf{Y})\\mathbf{W} + \\lambda_X \\mathbf{U}) \\\\\n& - \\Lambda_U.\n \\end{split}$$\n\nThe derivative of $\\mathbf{V}$ is: $$\\small\n\\begin{split}\n\\frac{\\partial L}{\\partial \\mathbf{V}} &= \\frac{\\partial Tr(\\mathbf{VU}^T\\mathbf{UV}^T-2\\mathbf{X}^T\\mathbf{UV}^T)+\\lambda_X Tr(\\mathbf{V}^T\\mathbf{V})- Tr(\\Lambda_V\\mathbf{V}^T)}{\\partial \\mathbf{V}} \\\\\n &= 2(\\mathbf{VU}^T\\mathbf{U} - \\mathbf{X}^T\\mathbf{U}+\\lambda_X \\mathbf{V}) - \\Lambda_V.\n \\end{split}$$\n\nNote that for $\\mathbf{W}$ the problem becomes a classic Lasso problem, we can update it use standard algorithm such as LARS.", "\n\nAccording to the KKT conditions: $$\\small\n\\begin{split}\\frac{\\partial{L}}{\\partial{\\mathbf{U}}}=0 &, \\frac{\\partial{L}}{\\partial{\\mathbf{V}}}=0, \\\\ \n\\Lambda_U\\odot \\mathbf{U}=0 &, \\Lambda_V\\odot \\mathbf{V}=0.", "\n \\end{split}$$\n\nWe have $$\\small\n\\begin{split}\n & (\\mathbf{UV}^T\\mathbf{V} - \\mathbf{XV}+ \\lambda(\\mathbf{O}\\odot (\\mathbf{UW}^T))\\mathbf{W} \\\\\n & - \\lambda(\\mathbf{O}\\odot \\mathbf{Y})\\mathbf{W} + \\lambda_X \\mathbf{U})\\odot \\mathbf{U} = 0,\\\\\n & (\\mathbf{VU}^T\\mathbf{U} - \\mathbf{X}^T\\mathbf{U}+\\lambda_X \\mathbf{V})\\odot \\mathbf{V} = 0. \\\\", "\n \\end{split}$$\n\nIt leads to the following updating rules for $\\mathbf{U,V}$: $$\\small\n\\begin{split}\n\\mathbf{U}(i,j) &\\leftarrow \\mathbf{U}(i,j) \\sqrt{\\frac{(\\mathbf{XV} + \\lambda(\\mathbf{O}\\odot \\mathbf{Y})\\mathbf{W})(i,j)}{(\\mathbf{UV}^T\\mathbf{V}+ \\lambda(\\mathbf{O}\\odot (\\mathbf{UW}^T))\\mathbf{W} + \\lambda_X \\mathbf{U})(i,j)}}, \\\\\n\\mathbf{V}(i,j)& \\leftarrow \\mathbf{V}(i,j) \\sqrt{\\frac{(\\mathbf{X}^T\\mathbf{U})(i,j)}{(\\mathbf{VU}^T\\mathbf{U}+\\lambda_X \\mathbf{V})(i,j)}} .", "\n \\end{split}$$\n\n### A Comprehensive Model\n\nHere we review an application of [@gao2014modeling] that integrates the methods of enforcement and transformation. ", "In this application, we would like to model a user’ attitude towards some controversial topic, reflected by his opinion, sentiment and retweeting action. ", "We are given a retweeting matrix $\\mathbf{X}$ representing users’ retweeting action to some tweets, and we would like to predict users’ opinion $\\mathbf{O}$ and sentiment $\\mathbf{P}$, and the task is to predict these three variables given the user feature $\\mathbf{F}$.\n\nWe first introduce how the model is built in [@gao2014modeling], then discuss other alternatives. ", "To train such a model, the authors propose the following model\n\n$$\\begin{split}\n \\underset{\\mathbf{W,V}}{\\hbox{min}} \\ \\mathcal{O} & = \\|\\mathbf{X}-(\\mathbf{FW}^T)\\mathbf{V}^T\\|_F^2 + \\lambda_1 \\|\\mathbf{FW}^T - \\mathbf{O}\\|_F^2 + \\lambda_2 \\|(\\mathbf{FW}^T)\\mathbf{S} - \\mathbf{P}\\|_F^2\\\\& +\\lambda_3\\|W\\|_1+\\alpha\\|\\mathbf{W}\\|_F^2+\\beta\\|\\mathbf{V}\\|_F^2 +\\gamma\\|\\mathbf{S}\\|_F^2 - Tr(\\Lambda_1\\mathbf{U}^T) - Tr(\\Lambda_2\\mathbf{V}^T),\n \\label{Transform}\n\\end{split}$$\n\nin which $\\lambda_1 \\|\\mathbf{FW}^T - \\mathbf{O}\\|_F^2$ and $\\lambda_3\\|W\\|_1$ models opinion from the user feature by bringing in the classical linear regression. ", "We can see that modeling the sentiment is also straightforward: $\\lambda_2 \\|\\mathbf{FW}^T\\mathbf{S} - \\mathbf{P}\\|_F^2$ simply transfers again the user feature with a linear transformation $\\mathbf{S}$. The retweeting matrix $\\mathbf{X}$, similarily, also using $\\mathbf{FW}^T$ as the latent vectors.", "\n\nTo summarize, the model Eq.", " \\[Transform\\] bases the prediction of retweeting action, opinion and sentiment all on the user features. ", "If we make $\\lambda_1$ to be infinitely large, meaning that we enforce $\\mathbf{FW}^T = \\mathbf{O}$, then in fact, $\\mathbf{X}\\approx \\mathbf{O}\\mathbf{V}^T$ and $\\mathbf{O}\\mathbf{S} \\approx \\mathbf{P}$. Such choice is based on the assumption that opinion drives both the retweeting action and sentiment.", "\n\nModel Eq.", " \\[Transform\\] is an comprehensive model, in the sense that the subtask of matrix completion, cluatering and regression are fused together, by basing all prediction on user feature transformation. ", "What if we are not given the use feature information? ", "Instead, we directly model the relation between retweeting action, opinion and sentiment. ", "A straightforward model could be\n\n$$\\begin{split}\n \\underset{\\mathbf{U,V}}{\\hbox{min}} \\ \\mathcal{O} & = \\|\\mathbf{X}-\\mathbf{U}\\mathbf{V}^T\\|_F^2 + \\lambda_1 \\|\\mathbf{U} - \\mathbf{O}\\|_F^2 + \\lambda_2 \\|\\mathbf{U}\\mathbf{S} - \\mathbf{P}\\|_F^2\\\\& +\\alpha\\|\\mathbf{U}\\|_F^2 + \\beta\\|\\mathbf{V}\\|_F^2 +\\gamma\\|\\mathbf{S}\\|_F^2 - Tr(\\Lambda_1\\mathbf{U}^T) - Tr(\\Lambda_2\\mathbf{V}^T).", "\n \\label{Transform_alt}\n\\end{split}$$\n" ]
{ "pile_set_name": "ArXiv" }
[ 0.03614457831325301, 0.016129032258064516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008064516129032258, 0, 0, 0, 0, 0, 0.004819277108433735, 0.013333333333333334, 0, 0.017857142857142856, 0.006622516556291391, 0.007518796992481203, 0, 0, 0.0030464584920030465, 0, 0, 0, 0, 0.005154639175257732, 0, 0, 0, 0, 0, 0, 0, 0, 0.004464285714285714, 0.0069124423963133645, 0.0196078431372549, 0.007692307692307693, 0, 0.007462686567164179, 0, 0.014925373134328358, 0, 0.0072992700729927005, 0, 0, 0, 0.012345679012345678, 0.0033333333333333335, 0.006230529595015576, 0.0196078431372549, 0.05, 0, 0.00554016620498615, 0, 0.012048192771084338, 0, 0, 0.022727272727272728, 0.012345679012345678, 0, 0, 0, 0, 0, 0.00909090909090909, 0, 0.009569377990430622, 0.008264462809917356, 0, 0.006578947368421052, 0, 0.00625, 0.017857142857142856, 0, 0.016129032258064516, 0.00436046511627907, 0.015384615384615385, 0.013513513513513514, 0.020833333333333332, 0, 0, 0, 0, 0, 0, 0, 0.0017331022530329288, 0, 0.007246376811594203, 0.043478260869565216, 0, 0, 0, 0.012738853503184714, 0.013636363636363636, 0.0033222591362126247, 0.003472222222222222, 0, 0.006389776357827476, 0.0057306590257879654, 0, 0, 0.014492753623188406, 0, 0, 0.008152173913043478, 0.0020325203252032522, 0, 0, 0, 0, 0.004132231404958678, 0.0038910505836575876, 0.0031496062992125984, 0, 0.014285714285714285, 0, 0.003816793893129771, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.014285714285714285, 0, 0, 0.005571030640668524, 0.0026455026455026454, 0.003500583430571762, 0.002398081534772182, 0.006578947368421052, 0, 0, 0, 0, 0, 0, 0, 0.004132231404958678, 0, 0, 0, 0.006622516556291391, 0.006006006006006006, 0, 0, 0, 0, 0.010309278350515464, 0, 0.16666666666666666, 0.006711409395973154, 0, 0, 0, 0, 0, 0.0038860103626943004, 0, 0.005319148936170213, 0, 0, 0, 0, 0, 0.01092896174863388, 0.009174311926605505, 0.0070921985815602835, 0, 0.004291845493562232, 0, 0.0031645569620253164, 0, 0, 0, 0.004454342984409799, 0.003898635477582846, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007518796992481203, 0.014814814814814815, 0, 0, 0, 0, 0, 0, 0.0025188916876574307, 0, 0, 0, 0, 0.004464285714285714, 0, 0.005847953216374269, 0, 0.006600660066006601, 0, 0, 0, 0, 0, 0.0018115942028985507, 0.0049586776859504135, 0.004739336492890996, 0.005813953488372093, 0.004140786749482402, 0.006289308176100629, 0, 0.002702702702702703, 0, 0, 0.034482758620689655, 0, 0, 0.09090909090909091, 0, 0, 0, 0, 0 ]
0.004492
5
[ "Q:\n\nDockerfile environment variables snafoo\n\nI have the following Dockerfile\nFROM openjdk:8-jdk-alpine\nRUN mkdir -p ./webpieces\nCOPY . ", "./webpieces/\nCOPY config/logback.cloudrun.xml ./webpieces/config/logback.xml\nENV PORT=8080\nWORKDIR \"/webpieces\"\nENTRYPOINT [\"./bin/authservice\", \"-http.port=:$PORT\", \"-hibernate.persistenceunit=production\"]\n\nhowever, the string $PORT ends up in my application rather than 8080. ", " I also tried command line to no avail either. ", " any idea what is going on here?", "\nI mean I run my application with \ndocker run --env PORT=8080 -p 127.0.0.1:8080:8080 gcr.io/orderly-gcp/authservice\n\nand in startup it says\n-http.port following usages:\n (optional, default: :8080)Http host&port. ", " syntax: {host}:{port} or just :{port} to bind to all NIC ips on that host\n Value Parsed::$PORT foundKey:true foundValue:true\n\nThe Value Parsed part usually will say :8080 if I am binding to all ports. ", "It works fine if I hardcode to :8080 instead of :$PORT or :${PORT}. ", " I can't see to get variables to work.", "\nthanks,\nDean\n\nA:\n\nConsider the following DockerFile:\nfrom ubuntu\n\nENV PORT=8080\n\nENTRYPOINT [\"/bin/echo\", \"$PORT\"]\n\nThis will print out '$PORT' because environment variables are not expanded when using the array ENTRYPOINT syntax. ", "You can instead use the non-array syntax like so:\nfrom ubuntu\n\nENV PORT=8080\n\nENTRYPOINT /bin/echo $PORT\n\nThis prints out '8080'.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.0035971223021582736, 0, 0, 0, 0.004694835680751174, 0, 0, 0.008620689655172414, 0.007751937984496124, 0 ]
0.002242
5
[ "The ability of the nervous system to adapt to changes in an animal's environment is essential for survival. ", "Such environmental changes are detected at the level of the single neuron primarily through changes in the cell's neural and humoral inputs. ", "This proposal focuses on the effects of such changes on two aspects of synaptic neurochemistry: the biosynthesis of neurotransmitters and the biosynthesis of their receptors. ", "With regard to transmitter synthesis, emphasis is placed on the factors that regulate both the expression of transmitter phenotypes and the modulation of transmitter synthesis rates. ", "The proposed experiments are designed primarily to investigate the effects of increased nerve activity and of increased exposure to adrenal steroids. ", "The model system chosen for these studies is the superior cervical ganglion, for which a large amount of information is available on its anatomy, biochemistry, and pharmacology. ", "In previous studies in this area, attention has focused solely on the preganglionic and postganglionic neurons in the superior cervical ganglion. ", "One key aspect of the proposed studies is to examine, in addition, the role of non-neuronal cells in these regulatory processes. ", "Use is made of the fact that the ganglion can be readily studied in vivo, in explant cultures and in dissociated cell cultures. ", "Advances, particularly in molecular biology, have greatly increased the tools available for such studies. ", "In the present proposal, both nucleic acid and immunological probes will be used for measuring the expression of transmitter-synthesizing enzymes, neuropeptides and receptors both at the mRNA and protein level. ", "The proposal's six specific aims are as follows:(l) to examine the peptidergic phenotype of preganglionic sympathetic neurons innervating the superior cervical ganglion (2) to examine the effects of increased nerve activity on the expression of peptides in postganglionic neurons in this ganglion, (3) to determine whether increased preganglionic nerve activity leads to the activation and/or proliferation of satellite glial cells, (4) to determine whether satellite glial cells in sympathetic ganglia are involved in the transsynaptic or humoral regulation of transmitter synthesis, (5) to determine whether differentiation factors known to affect the expression of transmitter phenotype in developing sympathetic neurons also affect the regulation of transmitter synthesis in the adult, and (6) to investigate the role of neural and humoral factors in regulating the expression of ganglionic nicotinic receptors. ", "The long-term objective of this research is to understand the molecular and cellular mechanisms underlying neurochemical plasticity. ", "The proposed studies should elucidate mechanisms involved in the development of the nervous system and in its modification during adult life, both under normal conditions and in a variety of neurological and psychiatric disorders. ", "Clinically, the results should be particularly relevant to our understanding of changes that occur in the nervous system in response to increased nerve activity such as that produced by stress, epilepsy, and certain kinds of hypertension." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ "/*\n * Copyright 2003-2007 Tufts University Licensed under the\n * Educational Community License, Version 2.0 (the \"License\"); you may\n * not use this file except in compliance with the License. ", "You may\n * obtain a copy of the License at\n * \n * http://www.osedu.org/licenses/ECL-2.0\n * \n * Unless required by applicable law or agreed to in writing,\n * software distributed under the License is distributed on an \"AS IS\"\n * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express\n * or implied. ", "See the License for the specific language governing\n * permissions and limitations under the License.", "\n */\n\npackage tufts.vue;\n\nimport java.awt.*;", "\nimport java.awt.event.*;", "\nimport javax.swing.*;", "\nimport javax.swing.text.", "JTextComponent;\nimport javax.swing.border.*;", "\n\nimport tufts.vue.gui.*;", "\n\n// TODO FIX: the text input fields should save value on focus loss\n\n/**\n * @version $Revision: 1.1 $ / $Date: 2008-06-19 03:46:58 $ / $Author: sfraize $\n */\n\nclass LWCInfoPanel extends javax.swing.", "JPanel\n implements VueConstants,\n //LWSelection.", "Listener,\n LWComponent.", "Listener,\n ActionListener,\n FocusListener\n{\n //private JTextField labelField = new JTextField(15);\n //private JTextComponent labelField = new JTextPane();\n private JTextComponent labelField = new VueTextPane();\n \n //private JLabel resourceField = new JLabel();\n //private JTextComponent resourceField = new tufts.vue.gui.", "VueTextField();\n //private JTextArea resourceField = new JTextArea();\n //private JTextComponent resourceField = new JTextPane();\n private JTextComponent resourceField = new VueTextPane();\n \n private JLabel sizeField = new JLabel();\n \n private JPanel fieldPane = new JPanel();\n private JPanel resourceMetadataPanel = new JPanel();\n private JPanel metadataPane = new JPanel();\n private PropertiesEditor propertiesEditor = null;\n \n private Object[] labelTextPairs = {\n \"Label\", labelField,\n \"Resource\", resourceField,\n \"-Size\", sizeField,\n };\n \n private LWComponent lwc;\n \n\n public LWCInfoPanel()\n {\n super(new BorderLayout());\n \n setOpaque(false);\n \n if (!", "GUI.isMacAqua()) {\n Border textPaneBorder = BorderFactory.createEtchedBorder();\n //Border textPaneBorder = BorderFactory.createLineBorder(Color.lightGray);\n labelField.setBorder(textPaneBorder);\n resourceField.setBorder(textPaneBorder);\n }\n labelField.setEditable(false);\n\n resourceField.setEditable(false);\n resourceField.setOpaque(false);\n resourceField.setBorder(null);\n \n //setBorder(BorderFactory.createEmptyBorder(6,6,6,6));\n GridBagLayout gridBag = new GridBagLayout();\n GridBagConstraints c = new GridBagConstraints();\n fieldPane.setLayout(gridBag);\n fieldPane.setOpaque(false);\n addLabelTextRows(labelTextPairs, gridBag, fieldPane);\n // settting metadata\n setUpMetadataPane();\n metadataPane.setOpaque(false);\n add(fieldPane, BorderLayout.", "NORTH);\n add(metadataPane,BorderLayout.", "CENTER);\n //VUE.ModelSelection.addListener(this);\n VUE.addActiveListener(LWComponent.class, this);\n }\n\n private void setUpMetadataPane() {\n metadataPane.setLayout(new BorderLayout());\n metadataPane.setBorder(BorderFactory.createEmptyBorder(10,0,0,0));\n // todo: bug in properties editor: will never display edit elements unless create editable initially\n propertiesEditor = new PropertiesEditor(false);\n metadataPane.add(propertiesEditor,BorderLayout.", "CENTER);\n validate();\n }\n \n private void addLabelTextRows(Object[] labelTextPairs, GridBagLayout gridbag, Container container)\n {\n GridBagConstraints c = new GridBagConstraints();\n c.anchor = GridBagConstraints.", "EAST;\n int num = labelTextPairs.length;\n boolean lastWasLabelAbove = false;\n\n Border lastBorder = null;\n \n for (int i = 0; i < num; i += 2) {\n \n String txt = (String) labelTextPairs[i];\n boolean readOnly = false;\n boolean labelAbove = false;\n if (txt.charAt(0) == '-') {\n txt = txt.substring(1);\n readOnly = true;\n } else if (txt.charAt(0) == '+') {\n labelAbove = true;\n txt = txt.substring(1);\n }\n txt += \": \";\n \n //-------------------------------------------------------\n // Add the label field\n //-------------------------------------------------------\n\n int topPad = lastWasLabelAbove ? ", "3 : 1;\n \n if (labelAbove) {\n c.insets = new Insets(topPad, 0, 0, 0);\n c.gridwidth = GridBagConstraints.", "REMAINDER; // last in row\n c.anchor = GridBagConstraints.", "WEST;\n } else {\n c.insets = new Insets(topPad, 0, 1, 0);\n c.gridwidth = GridBagConstraints.", "RELATIVE; // next-to-last in row\n c.anchor = GridBagConstraints.", "EAST;\n // this makes labels stay at top left of multi-line fields, tho it throws off\n // baseline alignment for normal cases. ", " What we REALLY want is a baseline\n // alignment against the first line of text in the field.", "\n // c.anchor = GridBagConstraints.", "NORTHEAST;\n }\n c.fill = GridBagConstraints.", "NONE; // the label never grows\n c.weightx = 0.0; // reset\n \n JLabel label = new JLabel(txt);\n gridbag.setConstraints(label, c);\n container.add(label);\n label.setFont(FONT_NARROW);\n\n //-------------------------------------------------------\n // Add the text value field\n //-------------------------------------------------------\n \n c.gridwidth = GridBagConstraints.", "REMAINDER; // last in row\n c.fill = GridBagConstraints.", "HORIZONTAL;\n if (labelAbove)\n c.insets = new Insets(0, 0, 0, 0);\n else\n c.insets = new Insets(0, 0, 1, 0);\n c.weightx = 1.0;\n \n JComponent field = (JComponent) labelTextPairs[i+1];\n //field.setFont(VueConstants.", "SmallFont);\n if (field instanceof JTextField) {\n //((JTextField)field).setHorizontalAlignment(JTextField.", "LEFT);\n ((JTextField)field).addActionListener(this);\n ((JTextField)field).addFocusListener(this);\n }\n //field.setFont(FONT_NARROW);\n gridbag.setConstraints(field, c);\n container.add(field);\n\n if (lastBorder !", "= null && field instanceof JTextPane) {\n field.setBorder(lastBorder);\n }\n \n \n if (readOnly) {\n Border b = field.getBorder();\n //System.out.println(\"LWCInfoPanel: got border \" + b);\n //lastBorder = b;\n if (b !", "= null) {\n final Insets borderInsets = b.getBorderInsets(field);\n System.out.println(\"LWCInfoPanel: got border insets \" + borderInsets + \" for \" + field);\n field.putClientProperty(VueTextField.", "ActiveBorderKey, b);\n Border emptyBorder = new EmptyBorder(borderInsets);\n field.putClientProperty(VueTextField.", "InactiveBorderKey, emptyBorder);\n field.setBorder(emptyBorder);\n }\n //field.setBorder(new EmptyBorder(1,1,1,1));\n if (field instanceof JTextComponent) {\n JTextComponent tc = (JTextComponent) field;\n tc.setEditable(false);\n tc.setFocusable(false);\n }\n if (VueUtil.isMacPlatform()) {\n //field.setBackground(SystemColor.control);\n field.setOpaque(false);\n }\n }\n\n lastWasLabelAbove = labelAbove;\n }\n /**\n * JLabel field = new JLabel(\"Metadata\");\n * c.gridwidth = GridBagConstraints.", "REMAINDER; //end row\n * c.fill = GridBagConstraints.", "HORIZONTAL;\n * c.anchor = GridBagConstraints.", "WEST;\n * gridbag.setConstraints(field, c);\n * container.add(field);\n */\n }\n \n \n public void LWCChanged(LWCEvent e) {\n if (this.lwc !", "= e.getSource())\n return;\n \n if (e.key == LWKey.", "Deleting) {\n this.lwc = null;\n setAllEnabled(false);\n } else if (e.getSource() !", "= this)\n loadItem(this.lwc);\n }\n \n// public void selectionChanged(LWSelection selection) {\n// if (selection.isEmpty() || selection.size() > 1)\n// setAllEnabled(false);\n// else\n// loadItem(selection.first());\n// }\n\n public void activeChanged(ActiveEvent e, LWComponent c) {\n if (c == null)\n setAllEnabled(false);\n else\n loadItem(c);\n }\n \n \n private void loadText(JTextComponent c, String text) {\n String hasText = c.getText();\n // This prevents flashing where fields of\n // length greater the the visible area do\n // a flash-scroll when setting the text, even\n // if it's the same as what's there.", "\n if (hasText !", "= text && !", "hasText.equals(text))\n c.setText(text);\n }\n private void loadText(JLabel c, String text) {\n String hasText = c.getText();\n // This prevents flashing where fields of\n // length greater the the visible area do\n // a flash-scroll when setting the text, even\n // if it's the same as what's there.", "\n if (hasText !", "= text && !", "hasText.equals(text))\n c.setText(text);\n }\n \n private void setAllEnabled(boolean tv) {\n int pairs = labelTextPairs.length;\n for (int i = 0; i < pairs; i += 2) {\n JComponent field = (JComponent) labelTextPairs[i+1];\n field.setEnabled(tv);\n }\n resourceMetadataPanel.setEnabled(tv);\n metadataPane.setEnabled(tv);\n propertiesEditor.setEnabled(tv);\n }\n \n private void loadItem(LWComponent lwc) {\n if (this.lwc !", "= lwc) {\n if (this.lwc !", "= null)\n this.lwc.removeLWCListener(this);\n this.lwc = lwc;\n if (this.lwc !", "= null) {\n this.lwc.addLWCListener(this, LWKey.", "Label, LWKey.", "Resource, LWKey.", "Deleting);\n setAllEnabled(true);\n } else\n setAllEnabled(false);\n }\n \n //System.out.println(this + \" loadItem \" + lwc);\n LWComponent c = this.lwc;\n if (c == null)\n return;\n \n setAllEnabled(true);\n //System.out.println(this + \" loading \" + c);\n\n final Resource r = c.getResource();\n \n if (r !", "= null)\n loadText(resourceField, r.getSpec());\n else\n loadText(resourceField, \"\");\n \n loadText(labelField, c.getLabel());\n\n String ss = VueUtil.abbrevBytes(r.getByteSize());\n sizeField.setText(ss);\n \n //loading the metadata if it exists\n if (c.getResource() !", "= null) {\n PropertyMap properties = c.getResource().getProperties();\n if (properties !", "= null) {\n if (c.getResource().getClientType() == Resource.", "ASSET_FEDORA)\n propertiesEditor.setProperties(properties, false);\n else\n propertiesEditor.setProperties(properties, true);\n }\n \n } else {\n propertiesEditor.clear();\n }\n \n \n }\n \n public void actionPerformed(ActionEvent e) {\n if (this.lwc == null)\n return;\n String text = e.getActionCommand();\n Object src = e.getSource();\n LWComponent c = this.lwc;\n updateLWComponent(text,src,c);\n }\n public void focusGained(FocusEvent e) {\n }\n \n public void focusLost(FocusEvent e) {\n if (this.lwc == null)\n return;\n String text = ((JTextField)e.getSource()).getText();\n Object src = e.getSource();\n LWComponent c = this.lwc;\n updateLWComponent(text,src,c);\n \n }\n \n public void updateLWComponent(String text,Object src,LWComponent c) {\n try {\n boolean set = true;\n if (src == labelField)\n c.setLabel(text);\n else if (src == resourceField)\n c.setResource(text);\n else\n set = false;\n if (set)\n VUE.getUndoManager().mark();\n else\n return;\n } catch (Exception ex) {\n System.err.println(ex);\n System.err.println(\"LWCInfoPanel: error setting property value [\"+text+\"] on \" + src);\n }\n }\n public String toString() {\n return \"LWCInfoPanel@\" + Integer.toHexString(hashCode());\n }\n\n public static void main(String args[]) {\n\n VUE.init(args);\n\n LWCInfoPanel p = new LWCInfoPanel();\n LWComponent node = new LWNode(\"Test Node\");\n node.setNotes(\"I am a note.\");", "\n node.setResource(\"file:///System/Library/Frameworks/JavaVM.framework/Versions/1.4.2/Home\");\n Resource r = node.getResource();\n for (int i = 1; i < 6; i++)\n r.setProperty(\"field_\" + i, \"value_\" + i);\n if (args.length > 1) {\n //ToolWindow w = VUE.createToolWindow(\"LWCInfoPanel\", p);\n DockWindow w = new DockWindow(\"LWCInfoPanel\", p);\n w.setVisible(true);\n } else\n tufts.", "Util.displayComponent(p);\n VUE.getSelection().setTo(node); // setLWComponent does diddly -- need this\n\n // Must have at least ONE active frame for our focus manager to work\n new Frame(\"An Active Frame\").setVisible(true);\n \n /*\n p.setAllEnabled(true);\n p.labelField.setEditable(true);\n p.labelField.setEnabled(true);\n p.resourceField.setEditable(true);\n p.resourceField.setEnabled(true);\n */\n }\n \n \n \n}\n" ]
{ "pile_set_name": "Github" }
[ 0.010309278350515464, 0.00964630225080386, 0.009900990099009901, 0, 0, 0, 0, 0, 0, 0.010050251256281407, 0.03076923076923077, 0, 0.0027247956403269754, 0.00909090909090909, 0.0033222591362126247, 0.021739130434782608, 0.0019723865877712033, 0.004098360655737705, 0.0036188178528347406, 0, 0.013888888888888888, 0.007575757575757576, 0, 0.00641025641025641, 0, 0, 0.015384615384615385, 0.00199203187250996, 0.014285714285714285, 0.006514657980456026, 0, 0, 0.0030581039755351682, 0, 0, 0.0027210884353741495, 0.015625, 0.018867924528301886, 0.017142857142857144, 0.0136986301369863, 0, 0.0013386880856760374, 0, 0.09090909090909091, 0, 0, 0.09090909090909091, 0.003952569169960474, 0, 0, 0, 0.07692307692307693, 0.125, 0.002386634844868735, 0.008902077151335312, 0.009259259259259259, 0.02702702702702703, 0.003316749585406302, 0.0021691973969631237, 0 ]
0.011608
5
[ "'use strict';\r\n\r\n// eslint-disable-next-line @typescript-eslint/no-var-requires\r\nconst gulp = require('gulp');\r\n// eslint-disable-next-line @typescript-eslint/no-var-requires\r\nconst build = require('@microsoft/sp-build-web');\r\n\r\nbuild.initialize(gulp);\r\n" ]
{ "pile_set_name": "Github" }
[ 0.011811023622047244 ]
0.011811
5
[ "Effects of corticosteroids on articular cartilage: a review of the literature.", "\nPhysical therapists evaluate and treat patients who simultaneously may be receiving corticosteroid compounds to reduce inflammation and pain associated with certain diseases such as rheumatoid arthritis and osteoarthritis. ", "Both beneficial and deleterious effects of corticosteroids on articular cartilage have been reported. ", "Physical therapists and others treating joints with pathological conditions should understand these effects and use this knowledge to establish and modify therapeutic management programs for patients with joint dysfunction. ", "A review of the literature is presented." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.004464285714285714, 0, 0, 0 ]
0.000893
5
[ "Minutes before a new accuser came forward with allegations against Alabama Senate candidate Roy Moore, his campaign issued a statement describing it as a \"witch hunt.\"", "\n\nCelebrity attorney Gloria Allred announced Monday morning that a new accuser would come forward in New York. ", "The announcement is scheduled for 1:30 p.m. CST.", "\n\nThe new accuser, Beverly Young Nelson, is the fifth woman to accuse more of having a sexual or romantic encounter with them when they were teens. ", "Nelson said she thought would try to \"rape me\" as he fondled her breasts while they were in a car together. ", "Moore, Nelson said, had offered to give her a ride home from the restaurant where she worked in Gadsden.", "\n\nNelson said she was 16 years old at the time.", "\n\nThe Moore campaign issued its response at 1:28 p.m. in an emailed statement to reporters.", "\n\n\"Gloria Allred is a sensationalist leading a witch hunt, and she is only around to create a spectacle,\" said the statement, attributed to Moore campaign chair Bill Armistead. \"", "Allred was the attorney who claims credit for giving us Roe v. Wade which has resulted in the murder of tens of millions of unborn babies.\"", "\n\nThe Moore campaign also issued a denial to allegations published Thursday in The Washington Post via a statement to Breitbart News prior to The Post story's publishing.", "\n\nThe rest of Moore's statement from Armistead:\n\n\"We've said this before and we'll say it again: Judge Moore is an innocent man and has never had any sexual misconduct with anyone. ", "This is a witch hunt against a man who has had an impeccable career for over 30 years and has always been known as a man of high character. ", "Let it be understood: the truth will come forward, we will pursue all legal options against these false claims and Judge Moore will be vindicated.\"", "\n\nAs the press conference in New York was ongoing, the Moore campaign sent a fundraising email to supporters. ", "The subject line of the email: \"well-coordinated hit job.\"", "\n\n\"Friend, sometimes I grow tired and weary from the strain of moving directly from slugging it out with the GOP establishment to fighting off the powerful Obama-Clinton Machine's constant stream of nasty and vicious attacks,\" the fundraising email said in part.", "\n\n\"But our nation is at a crossroads right now -- both spiritually and politically.", "\n\n\"Our children and grandchildren's futures are on the line.", "\n\n\"So rest assured --\n\nI will NEVER GIVE UP the fight\n\n!", "\n\nWill you stand and fight with me by chipping in a donation to my campaign's Victory Fund?\"", "\n\nUpdated today, Nov. 13, 2017, at 2:26 p.m. with information about Moore's fundraising email." ]
{ "pile_set_name": "OpenWebText2" }
[ 0.011976047904191617, 0.009009009009009009, 0, 0.006756756756756757, 0.009259259259259259, 0.009615384615384616, 0.02127659574468085, 0.01098901098901099, 0.016853932584269662, 0, 0.023529411764705882, 0.016574585635359115, 0, 0.006802721088435374, 0, 0, 0.007633587786259542, 0, 0, 0, 0.010869565217391304, 0.010638297872340425 ]
0.007808
5
[ "Enhanced intracortical inhibition in cerebellar patients.", "\nThe aim of the study was to examine intracortical excitability in cerebellar patients. ", "Short-latency intracortical inhibition (SICI), long-latency intracortical inhibition (LICI) and intracortical facilitation (ICF) to paired transcranial magnetic stimulation (TMS) were investigated in 8 patients with 'pure' cerebellar syndromes and in 14 age-matched normal controls. ", "The conditioning stimulus for short-latency intracortical inhibition and intracortical facilitation was set at 70% of the resting motor threshold (RMT) and preceded the test stimulus (110-120% of the resting motor threshold) by interstimulus intervals (ISIs) of 1-30 ms. ", "For the long-latency intracortical inhibition determinations, the conditioning stimulus was set at 120% of the resting motor threshold and preceded the test stimulus (also 120% of the resting motor threshold) by interstimulus intervals of 30-500 ms. ", "No statistically significant differences were found between patients and controls as regards either short-latency intracortical inhibition or intracortical facilitation. ", "A significant prevalence of long-latency intracortical inhibition was present in cerebellar patients at interstimulus intervals of 200-500 ms (conditioned MEP amplitude=29-41% of test MEP) as compared to controls (71-96% of test MEP). ", "The amplitude of conditioned MEPs was persistently less than 45% of the test MEP in six patients, who were studied at interstimulus intervals up to 1000 ms. ", "Long-latency intracortical inhibition was prevalent and abnormally longer-lasting in patients. ", "Tonic hyperactivation of a subpopulation of GABAergic interneurons in the motor cortex of patients may be the mechanism responsible for this abnormality. ", "Our findings seem to be specific to cerebellar diseases and are the opposite of those found in movement disorders such as dystonia and Parkinson's disease. ", "These data suggest that the cerebellum and the basal ganglia may have opposite influences in tuning the excitability of the motor cortex." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.007067137809187279, 0, 0, 0, 0.01276595744680851, 0.006369426751592357, 0, 0.006493506493506494, 0, 0 ]
0.002725
5
[ "Baby By Simone - Prenatal Workout DVD\n\nThe Body By Simone Prenatal Workout is brought to you by Body By Simone creator and celebrity trainer Simone De La Rue. ", "Simone is a NASM certified PT and a Pre- and Postnatal specialist.", "\n\nUpon discovering that she was pregnant with her first child at age 43, Simone searched for safe, yet challenging workouts that she could do throughout her pregnancy. ", "She discovered there really were not a lot of offerings for women who have been active and wanted to remain active. ", "Hence, Baby By Simone was created.", "\n\nThis Prenatal series includes workouts for your first, second and third trimester. ", "There are 6 workouts in total. ", "Each full body workout is 20 minutes in length, so you can choose to do them separately, or combine them for a longer more challenging workout.", "\n\nThe collection was created with an introduction and stamp of approval from her own OBGYN Dr. Jason Rothbart. ", "This Prenatal series will provide you with the tools to engage your TVA muscles and strengthen your pelvic floor. ", "It will help you move, feel good and love your body throughout the most incredible time in your life." ]
{ "pile_set_name": "Pile-CC" }
[ 0.006289308176100629, 0.015151515151515152, 0.005952380952380952, 0, 0, 0.011764705882352941, 0, 0, 0.018018018018018018, 0.017543859649122806, 0 ]
0.006793
5
[ "Subscribe\n\nArchive for the ‘civil procedure’ Category\n\nAnother B.C. case dealing with enforcement of foreign judgments came to my attention today. ", "It is a two-part decision by Mr. Justice Myers in Marx v. Balak. ", "The first part addresses the defendant’s applications to refuse enforcement because of breaches of natural justice and fraud (2008 BCSC 195). ", "The second addresses an application to stay or defer the proceeding while the defendant applies to set aside the original default judgment in Utah (2008 BCSC 222).", "\n\nMany thanks to Mr. Pribetic, who has directed my attention to Liu v. Huang, 2008 BCSC 288, a recent decision of the BCSC declining jurisdiction in favour of Taiwan. ", "While the parties resided in Vancouver, at least part time, the dispute concerned debt that arose and was supposed to be repaid in Taiwan.", "\n\nWhat do chicken legs have to do with forum non conveniens? ", "Not much, except that they led me to learn that Delaware forum non conveniens rules appear to be fundamentally different from our own. ", "The case of Certain Underwriters at Lloyds … v. Tyson, 2008 WL 660485 (Del. Super. ", "March 7, 2008) dealt with the defendant insured’s motion to dismiss or stay the plaintiff underwriter’s Delaware declaratory action to deny coverage, as its own claim for coverage was proceeding in Mississippi. ", "The main subject matter of the claim was “damages totaling $113,529,815 [arising out of hurricane Katrina] … allegedly lost in the global chicken leg quarter markets [and] … property loss or damage to hatcheries, equipment, and disposal of dead chickens.”", "\n\nTyson’s motion was based on two forum non conveniens arguments: (1) Delaware action should be stayed because both actions were contemporaneously filed and thus the plaintiff cannot rely on the first to file rule; and (2) if Delaware action was filed first, then it should be dismissed or stayed as imposing an “undue hardship” on Tyson. ", "The court dismissed both arguments, finding that the Delaware action was filed first and that forum non conveniens factors favoured the plaintiff.", "\n\nIn Suncom, the plaintiff brought a Rule 18 application for summary judgment to recognize and enforce a default judgment obtained in Nevada. ", "The relatively unusual aspect of this case was that it was brought under Rule 18, rather than Rule 18A, showing that the plaintiff had a very high degree of confidence in its case, arguing that “there is no defence to the whole or part of a claim, or no defence except as to amount” and deposing that it “knows of no fact which would constitute a defence to the claim.” ", "To successfully defend against this application, the defendants merely had to show a “bona fide triable issue”.", "\n\nThe defendants in fact argued three triable issues, all rooted in Beals v. Saldanha, 2003 SCC 72: (1) lack of real and substantial connection between the Nevada court and the defendants, despite the presence of a jurisdiction selection clause; (2) defence of fraud; and (3) defence of public policy.", "\n\nMaster Scarth held that none of the defendant’s arguments raised a bona fide triable issue. ", "With respect to jurisdiction simpliciter of the Nevada court, relying on Beals and Z.I. Pompey Industries v. ECU-LineN.V., 2003 SCC 27, she held that a jurisdiction selection clause demonstrates a prima facie real and substantial connection and must be enforced by the court in the absence of “strong cause to the contrary”. ", "The defendants’ argument that the work under the contract was not performed in Nevada did not raise a “strong cause” as a triable issue. ", "Relying on Zaidenberg v. Hamouth, 2005 BCCA 356, she concluded “that there is no triable issue relating to the defence of fraud, in that it is clear that there is no new evidence supporting the fraud defence which was not discoverable with due diligence prior to the default judgment being granted.” ", "Finally, with respect to the argument that the Nevada judgment was contrary to the “Canadian concept of justice” because it included prima facie compensatory punitive damages, relying onOld North State Brewing Co. v. Newlands Services Inc. (1998), 58 B.C.L.R. (3d) 144, she concluded that “whether punitive damages are included in the judgment or not, there is no issue which merits a trial on that point” as “award of … punitive damages, cannot be considered to be contrary to the public policy of British Columbia”.", "\n\nIn the common law provinces, chaining of foreign judgments may be possible. ", "I.e., find a province that has a reciprocation agreement with the state from which you have a judgment, register the judgment in that province, and then register and enforce the now provincial judgment in your home province as a Canadian judgment. ", "At least that’s the theory.", "\n\nThe practical problem is that across Canada, provinces have a very limited numbe of reciprocation agreements with U.S. states and other countries. ", "A while back I had to investigate the possibility of chaining and as a result compiled a handy table, which includes all provinces (except Quebec), their applicable acts, and the states/countries with which they have reciprocation agreements.", "\n\nOf interest is that B.C. has can register judgments from the greatest number of states: Washington, Alabama, California, Oregon, Colorado and Idaho, as well as Australia, Germany, Austria and UK; Alberta has agreements with Montana; and Manitoba is the only Canadian province with a reciprocation agreement with France.", "\n\nIn my naiveté, I thought that it was now trite law in Canada that limitation periods are substantive law and thus are governed by lex loci delicti, i.e. the law of the place where the wrong has occurred. ", "However, life is never this simple. ", "As a recent decision of the Nova Scotia Court of Appeal in Vogler v. Szendroi, 2008 NSCA 18shows, even when it comes to limitation periods, some things can still be deemed to be procedural and thus be governed by lex fori.", "\n\nAt issue in this case was not a foreign limitation period, which the parties conceded was a matter of substantive law and thus governed by lex loci delicti, i.e. Wyoming, but rather the rules for service and commencement of an action. ", "Specifically, R. 3(a) of the Wyoming Civil Procedure Rules provided that “for purposes of statutes of limitation, an action shall be deemed commenced on the date of filing the complaint … If … service is not made within 60 days the action shall be deemed commenced on the date when service is made.” ", "As service was not made within 4 years of the accident, the defendant succeeded in chambers in arguing that the claim was statute barred because the action was not commenced within the limitation period.", "\n\nOn appeal, the court disagreed. ", "After reasonably holding that the distinction between procedural and substantive law is evaluated from the perspective of lex fori, the court concluded that because the Wyoming rule described the how, rather than when the action was to be commenced, from the perspective of Nova Scotia law it was properly characterized as procedural and thus inapplicable in N.S. courts:\n\n26 Returning to the ultimate question of whether Rule 3(b) is substantive or procedural, we must draw our attention to the true subject matter of the impugned provision. ", "In other words, is s. 3(b) about timing as the respondents suggest, i.e., concerning when an action must be commenced? ", "If so, and given its alignment with Wyoming’s four-year statutory rule, it would appear to be more substantive than procedural in nature. ", "On the other hand, the appellant suggests that this provision is not about timing but about methodology. ", "In other words, it describes the manner in which an action is (or is deemed to have been) commenced. ", "That would be a subject matter more akin to procedure.", "\n\n…\n\n28 Respectfully, I believe that the Chambers judge erred by misreading the provision’s true subject matter. ", "He found that Rule 3(b) prescribed when an action had to be commenced. ", "In other words, he found it to be integral to the four-year limitation provision and thus substantive in nature. ", "Respectfully, despite its title, “When commenced”, I do not read the provision that way. ", "Instead I view it as simply directing the manner in which an action is commenced. ", "Let me elaborate.", "\n\n…\n\n34 … In my view, this introductory phrase in Rule 3(b) simply identifies the rationale for the provision. ", "In other words, Rule 3(b) sets out the process for complying with statutory deadlines for filing actions. ", "In this case, the limitation period is four years and that is prescribed by statute. ", "Nothing in Rule 3(b) changes that. ", "Again, it simply directs how one can comply with this prerequisite. ", "In summary, Rule 3(b) is not about how long you have to file a claim; it is about how a plaintiff commences a claim.", "\n\nAlas, it is exactly as my conflict of laws professor told us: there is always more than one way to characterize a matter, even if apparently the same matter has been characterized before.", "\n\nUpdate: this case has also been discussed at conflictoflaws.net, an international conflict of laws journal/blawg." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0.046153846153846156, 0, 0, 0.017964071856287425, 0, 0, 0, 0.024096385542168676, 0, 0, 0.0029498525073746312, 0, 0.007042253521126761, 0, 0, 0, 0.010638297872340425, 0.003076923076923077, 0, 0.0033333333333333335, 0.0038684719535783366, 0, 0, 0, 0, 0, 0, 0, 0, 0.013513513513513514, 0, 0.0033333333333333335, 0, 0, 0.001841620626151013, 0, 0, 0, 0, 0, 0.008849557522123894, 0, 0, 0, 0, 0, 0, 0.009433962264150943, 0, 0, 0, 0.008620689655172414, 0, 0.008695652173913044 ]
0.003153
5
[ "Q:\n\nwordCounts.dstream().saveAsTextFiles(\"LOCAL FILE SYSTEM PATH\", \"txt\"); does not write to file\n\nI am trying to write JavaPairRDD into file in local system. ", "Code below:\n JavaPairDStream<String, Integer> wordCounts = words.mapToPair(\n new PairFunction<String, String, Integer>() {\n @Override\n public Tuple2<String, Integer> call(String s) {\n return new Tuple2<String, Integer>(s, 1);\n }\n }).reduceByKey(new Function2<Integer, Integer, Integer>() {\n @Override\n public Integer call(Integer i1, Integer i2) {\n return i1 + i2;\n }\n });\nwordCounts.dstream().saveAsTextFiles(\"/home/laxmikant/Desktop/teppppp\", \"txt\");\n\nI am trying to save the logs or the wordcount in file. ", "But it is not able to save in a local file (NOT HDFS).", "\nI also tried to save on HDFS using \nsaveAsHadoopFiles(\"hdfs://10.42.0.1:54310/stream\",\"txt\")\n\nThe above line does not write to file. ", "Can anybody tell the solution?", "\nVarious solutions on stackoverflow dont work.", "\n\nA:\n\nTry to write output as an absolute path:\nsaveAsTextFiles(\"file:///home/laxmikant/Desktop/teppppp\", \"txt\");\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.011111111111111112, 0, 0, 0, 0, 0 ]
0.001587
5
[ "Hyperglycemia and brain tissue pH after traumatic brain injury.", "\nHyperglycemia occurring after head injury is associated with poor neurological outcome. ", "We tested the hypothesis that blood glucose levels are associated with brain tissue pH (pH(b)) and that the correction of hyperglycemia would result in an improvement in pH(b). ", "This is a retrospective analysis of a prospectively collected database. ", "Thirty-four patients in a tertiary care neuroscience critical care unit with major traumatic brain injury underwent pH(b) monitoring. ", "A total of 428 glucose measurements were recorded during pH(b) monitoring. ", "Mean glucose level was 7.1 mmol/L (range, 2.8-21.7 mmol/L) and median (interquartile range) pH(b) was 7.11 mmol/L (7.00-7.19 mmol/L). ", "To account for the correlated, unbalanced nature of the data, a linear generalized estimating equation model was created. ", "This model predicted that for each 1 mmol/L increase in blood glucose, pH(b) changed by -0.011 mmol/L (95% confidence interval, -0.016 to -0.005 mmol/L; P < 0.001). ", "This relationship remained significant in a multivariable model that included cerebral perfusion pressure, brain tissue oxygen and carbon dioxide tension, and brain temperature. ", "Twenty-one episodes of significant hyperglycemia (>or=11.1 mmol/L) treated with intravenous insulin were identified. ", "Insulin therapy significantly reduced blood glucose concentration from a median (interquartile range) of 11.9 mmol/L (range, 11.4-13.6 mmol/L) to 8.8 mmol/L (range, 7.3-9.6 mmol/L; P < 0.001). ", "Baseline pH(b) was not significantly different from pH(b) associated with the subsequent glucose reading of less than 11.1 mmol/L (P = 0.29), but there was a suggestion of improvement if the change in blood glucose was large. ", "Blood glucose is associated with brain tissue acidosis in patients with major head injury. ", "Prospective studies are required to confirm these results and to determine whether treatment of hyperglycemia improves outcome." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.015873015873015872, 0.011235955056179775, 0, 0, 0, 0, 0.029850746268656716, 0, 0.012121212121212121, 0, 0, 0.010362694300518135, 0.004424778761061947, 0, 0 ]
0.005591
5
[ "Q:\n\npip install mysql-python throws error\n\nI am on MacOS Mojave 10.14.6 (18G103).", "\nWhen I try to install mysql-python it throws an error :\n$ pip install --upgrade setuptools\nRequirement already up-to-date: setuptools in /usr/local/lib/python2.7/site-packages (41.5.1)\n$ pip install mysql-python\nCollecting mysql-python\n Using cached https://files.pythonhosted.org/packages/a5/e9/51b544da85a36a68debe7a7091f068d802fc515a3a202652828c73453cad/MySQL-python-1.2.5.zip\n Complete output from command python setup.py egg_info:\n sh: mysql_config: command not found\n Traceback (most recent call last):\n File \"<string>\", line 1, in <module>\n File \"/private/var/folders/90/6l6jqf191f74hg282swdz5080000gn/T/pip-install-RetBjz/mysql-python/setup.py\", line 17, in <module>\n metadata, options = get_config()\n File \"setup_posix.py\", line 43, in get_config\n libs = mysql_config(\"libs_r\")\n File \"setup_posix.py\", line 25, in mysql_config\n raise EnvironmentError(\"%s not found\" % (mysql_config.path,))\n EnvironmentError: mysql_config not found\n\n ----------------------------------------\nCommand \"python setup.py egg_info\" failed with error code 1 in /private/var/folders/90/6l6jqf191f74hg282swdz5080000gn/T/pip-install-RetBjz/mysql-python/\n\nA:\n\nYou can install mysqlclient or pymysql,I prefer the latter:\n\npip install pymysql\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0.012345679012345678, 0.0015600624024961 ]
0.006953
5
[ "Another eye-popping lottery prize of $456.7 million was claimed over the weekend, cracking our list of the 20 largest jackpots in US history.", "\n\nA single winning ticket was sold in Pennsylvania, but there's no word yet on who the lucky winner is.", "\n\nThe grand prize clocked in as the 11th largest of all time. ", "That includes jackpots racked up by both the Powerball and Mega Millions games, which are the two most widely played lotteries in the United States.", "\n\nHere's where the rankings stand now.", "\n\n1. ", "$1.6 billion Powerball\n\nJanuary 13, 2016: The record-shattering jackpot was split three ways by Mae and Marvin Acosta from Chino Hills, California; John and Lisa Robinson of Munford, Tennessee; and Maureen Smith, a 70-year-old from Melbourne Beach, Florida.", "\n\nThe Robinsons appeared on NBC's \"Today\" show before cashing in their ticket. ", "They opted to take their $528.8 million share of the prize in one lump-sum payment of $327.8 million. (", "Jackpot prize amounts are the annuity jackpots paid out over 30 payments, even though almost all winners chose to take a lesser lump sum of cash).", "\n\nSmith told the Florida Lottery that she had played the lottery -- and bought tickets with the same six numbers -- for years before winning the jackpot.", "\n\nThe Acostas refused to speak to the media. ", "They assembled a team of advisers and waited six months before claiming the prize.", "\n\n2. ", "$758.7 million Powerball\n\nAugust 23, 2017: The winning ticket was sold in Chicopee, Massachusetts, to Mavis Wanczyk, who won the largest jackpot with a single winner in American history. ", "The 53-year old said she would retire early and that she immediately quit her job.", "\n\n3. ", "$656 million Mega Millions\n\nMarch 30, 2012: This jackpot had three winners.", "\n\nA retired couple from Illinois, Merle and Patricia Butler, received one of the slices of the top prize. \"", "We are just everyday people who have worked hard all our life...We just happened to hit it big,\" Merle said. ", "Patricia added that they planned to use \"part of the winnings to do some real good.\"", "\n\nAnother winning ticket was divided among a group of friends in Maryland who dubbed themselves the \"Three Amigos.\"", "\n\nThe third winner is still unknown. ", "That ticket was purchased in Kansas, which is one of the states that allows lottery winners to remain anonymous.", "\n\n4. ", "$648 million Mega Millions\n\nDecember 17, 2013: Two winners split this jackpot, including Ira Curry, a Georgia woman, who said she bet on a combination of family birthdays.", "\n\nThe other winner, Steve Tran, was working as a delivery driver when he bought a Mega Millions ticket in San Jose, California. ", "Tran said he called his boss after he won to say, \"I hit the jackpot. ", "I don't think I'm going to come in today, tomorrow, or ever.\"", "\n\n5. ", "$590.5 million Powerball\n\nMay 18, 2013: 84-year-old Gloria Mackenzie of Florida had the one-and-only winning ticket, but it could've easily gone to someone else. \"", "While in line at Publix, another lottery player was kind enough to let me go ahead of them in line to purchase the winning quick-pick ticket,\" Mackenzie said.", "\n\n6. ", "$587.5 million Powerball\n\nNovember 28, 2012: Two winning tickets -- Matthew Good of Arizona and Cindy and Mark Hill of Missouri.", "\n\n7. ", "$564 million Powerball\n\nFebruary 11, 2015: Three winners -- Marie Holmes of North Carolina; Andrew Weber, who claimed it on behalf of a trust in Texas; and an anonymous player in Puerto Rico.", "\n\n8. ", "$559.7 million Powerball\n\nJan. 6, 2018: A single ticket was sold at Reeds Ferry Market in Merrimack, NH. ", "The winner was announced just one day after there was a winning ticket announced for a $450 million Mega Millions jackpot. ", "The winning ticket holder has yet to come forward.", "\n\n9. ", "$536 million Mega Millions\n\nJuly 8, 2016: A single winning ticket was sold in Indiana.", "\n\n10. ", "$487 million Powerball\n\nJuly 30, 2016: The lone winning ticket was sold in New Hampshire.", "\n\n11. ", "$456.7 Million Powerball\n\nMarch 17, 2018: One winning ticket was sold in Pennsylvania.", "\n\n12. ", "$451 million Mega Millions\n\nJan. 5, 2018: The single winning ticket was sold at a 7-Eleven in Port Richey, Florida. ", "It was the first jackpot winner after new rules were put in place in October that made it harder to win Mega Millions. ", "The holder of the winning ticket has yet to come forward.", "\n\n13. ", "$448.4 million Powerball\n\nAugust 7, 2013: Three winning tickets -- a project engineer in Minnesota, a 70-year-old man in New Jersey, and a group of 16 victims of Superstorm Sandy.", "\n\n14. ", "$447.8 million Powerball\n\nJune 10, 2017: One winner -- Jeff Lindsay of California, who bought his Powerball ticket with the funds from a winning scratch ticket.", "\n\n15. ", "$435 million Powerball\n\nFebruary 22, 2017: An anonymous ticket holder in Indiana was the sole winner of this massive jackpot.", "\n\n16. ", "$429.6 million Powerball\n\nMay 7, 2016: The one jackpot winner was drawn in New Jersey, held by the Smith family lottery pool.", "\n\n17. ", "$425.3 million Powerball\n\nFebruary 19, 2014: B. Raymond Buxton of California was the drawing's sole winner.", "\n\n18. ", "$420.9 million Powerball\n\nNovember 26, 2016: A group of 20 longtime co-workers in Tennessee bought the winning ticket in Lafayette, Tennessee.", "\n\n19. ", "$414 million Mega Millions\n\nMarch 18, 2014: Two winning tickets -- an anonymous player in Maryland and Floridians Raymond Moyer and Robyn Collier.", "\n\n20. ", "$399.4 million Powerball\n\nSeptember 18, 2013: An anonymous winner in Lexington, South Carolina." ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0, 0.006756756756756757, 0, 0, 0.019455252918287938, 0.012658227848101266, 0, 0.00684931506849315, 0.006535947712418301, 0.022222222222222223, 0, 0, 0.0053475935828877, 0, 0, 0.013333333333333334, 0.009345794392523364, 0.009174311926605505, 0.011904761904761904, 0, 0, 0, 0, 0.011695906432748537, 0.0078125, 0.014285714285714285, 0, 0, 0.006134969325153374, 0.006329113924050633, 0, 0.015625, 0, 0.010471204188481676, 0, 0.01904761904761905, 0.008130081300813009, 0, 0, 0.011627906976744186, 0, 0, 0, 0, 0, 0.008620689655172414, 0.008403361344537815, 0, 0, 0.00558659217877095, 0, 0.00625, 0, 0, 0, 0.008, 0, 0.009345794392523364, 0, 0, 0, 0.02054794520547945, 0, 0 ]
0.004568
5
[ "ISLAMABAD: Supreme Court Chief Justice Anwar Zaheer Jamali observed on Tuesday that the concept of secret ballot is alien to Islam and is rather, derived from the west. “", "The method of secret ballot is a western concept and has nothing to do with Islam,” the chief justice observed, adding that the open ballot system discourages hypocrisy.", "\n\nThe observation came during the hearing of an appeal instituted by the Sindh government against the Sindh High Court’s Feb 10 judgment which, while deciding the applications of the Muttahida Qaumi Movement and the PML-F, had declared as void the recent amendments in the local government law, whereby secret balloting was replaced with a show of hands for electing mayors, deputy mayors and other local government representatives in the province.", "\n\nOn Feb 17, a three-judge Supreme Court bench headed by the chief justice had stayed the upcoming elections in Sindh to elect mayors, deputy mayors, chairmen, vice chairmen and members of reserved seats in the recently-elected local government bodies.", "\n\nThe last three years have seen a raging debate on whether the local government elections should be held in an open manner or through secret balloting, the chief justice regretted, while also questioning the need for amendments in the Sindh Local Government (Amendment) Act 2013.", "\n\nThree-judge SC bench hearing Sindh government’s appeal against high court’s judgment that annulled the third amendment in Sindh’s LG law\n\nLaws should be enacted for greater public good and welfare of the State, but governments have made legislative business a mockery since they introduced laws that only suited them and in the end, shifted the entire burden on the judiciary to resolve the controversy that emerged later, the chief justice said. ", "The real purpose of amending laws should not be to cause destruction, but provide relief and welfare to the people, he added.", "\n\nOne party claims that certain laws were introduced in the statute book with a mala fide intent while the other defends by asserting that they pushed forward the law on good intentions. ", "Such a situation creates mistrust among the people, the chief justice observed.", "\n\nMeanwhile, senior counsel Farooq H Naek, who represents the Sindh government, insisted in his closing arguments that the greatest pillar in a democratic system was holding of free, fair and transparent elections.", "\n\nMr Naek regretted that the petitioners had only challenged before the high court certain provisions of the June 17, 2016, notification in the SLGA, under which indirect elections of mayors and deputy mayors were substituted by show of hands instead of secret ballot, but the high court had scrapped the entire third amendment.", "\n\nThus with a one stroke of the pen, the entire procedure of appointing tribunals for resolving election disputes had also been sent home, he said.", "\n\nIn its judgment, the high court had also not given any reason for virtually eliminating the representation of women as well as youth on reserved seats by holding the Sindh Local Government (Third Amendment) Act 2016 as ultra vires without any prayer, he said.", "\n\nThe counsel explained that the initial elections of the local government were direct elections in which voters or electors cast their votes to elect independent candidates. ", "While the elections of the chairman, vice chairman etc were indirect where the common citizen or electors had no role, adding it was the party that nominated a person to contest the polls.", "\n\nThe counsel said that the power to make laws for the purpose of devolution of administrative and financial powers rested with the province, questioning whether the show of hands will negate the Constitution and encourage corruption.", "\n\nIt is not the job of the Election Commission of Pakistan to make laws since such power lies with the provincial governments, the counsel said.", "\n\nLater, Additional Attorney General Muhammad Waqar Rana told the court that the federal government was opposed to the SHC judgment and that Article 226 of the constitution, which directed to conduct elections other than that of the prime minister by secret ballot, does not apply to the local government elections. ", "Similarly, Article 140A, which pertained to the conduct of local government elections, did not envisage polls through secret ballot.", "\n\nKhyber Pakhtunkhwa Advocate General Abdul Latif Yousafzai argued that any decision of the Supreme Court should not affect the already-concluded local government elections in KP where even the elections of nazim and naib nazim had been finalised.", "\n\nPublished in Dawn, April 6th, 2016" ]
{ "pile_set_name": "OpenWebText2" }
[ 0.023529411764705882, 0.005917159763313609, 0.004464285714285714, 0.003968253968253968, 0.0035714285714285713, 0.011135857461024499, 0, 0, 0, 0.009345794392523364, 0.003048780487804878, 0, 0.0038314176245210726, 0, 0, 0, 0.006944444444444444, 0.006329113924050633, 0, 0.008097165991902834, 0 ]
0.004294
5
[ "// 26.1.14 Reflect.setPrototypeOf(target, proto)\nvar $export = require('./_export')\n , setProto = require('./_set-proto');\n\nif(setProto)$export($export.", "S, 'Reflect', {\n setPrototypeOf: function setPrototypeOf(target, proto){\n setProto.check(target, proto);\n try {\n setProto.set(target, proto);\n return true;\n } catch(e){\n return false;\n }\n }\n});" ]
{ "pile_set_name": "Github" }
[ 0.01948051948051948, 0 ]
0.00974
5
[ "A study of the metabolism of the branched-chain amino acids has revealed a pathway of metabolism of leucine that is catabolic in bacteria and appears to be synthetic in humans. ", "The pathway depends upon the activity of the enzyme leucine 2,3-aminomutase, which requires adenosylcobalamin as a cofactor. ", "Other enzymes which function in the pathway are Beta-leucine transaminase, coenzyme A transferase, and thiolase. ", "The relationship between enzyme activity and various disease states such as pernicious anemia and inborn errors of metabolism will be examined." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0, 0, 0, 0 ]
0
5
[ "Responsiveness of different dynamic contrast-enhanced magnetic resonance imaging approaches: a post-hoc analysis of a randomized controlled trial of certolizumab pegol in rheumatoid arthritis.", "\nObjective: The aim was to explore dynamic contrast-enhanced magnetic resonance imaging (DCE-MRI) as an early marker of therapeutic response in patients with rheumatoid arthritis (RA) starting treatment with certolizumab pegol (CZP). ", "Method: In 40 RA patients initiating CZP (27 patients) or 2 weeks of placebo (PCB) followed by CZP (13 patients), DCE-MRI of the metacarpophalangeal (MCP) and proximal interphalangeal (PIP) joints was performed at weeks 0, 1, 2, 4, 8, and 16. ", "Using semi-automated software, three methods for drawing volume regions of interest (ROIs) in MCP2-5 and PIP2-5 were applied: 'Standard' (slices: all; joints: MCP2-5 together and PIP2-5 together), 'Detailed' (slices: slices with high-quality visualization; joints: as Standard), and 'Single-joint' (slices: as Detailed; joints: each joint separately). ", "The number of enhancing voxels (Nvoxel), initial rate of enhancement (IRE), and maximum enhancement (ME) were extracted and analysed for each method. ", "Results: Nvoxel in MCP2-5, and IRE and ME in PIP2-5 decreased statistically significantly (Wilcoxon rank-sum test, p < 0.02-0.03) after 16 weeks of treatment for the Standard method. ", "Nvoxel and ME decreased significantly more in the CZP group than in the PCB group after 1 week of treatment, but not at later time-points. ", "There were no significant changes for DCE-MRI parameters for the Detailed and Single-joint methods. ", "Conclusions: Certain DCE-MRI parameters detected decreased inflammation during CZP treatment in RA patients. ", "Using specific criteria for ROIs, as in the Detailed and Single-joint methods, decreased the statistical power and could not show any changes over time." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.005208333333333333, 0.01282051282051282, 0.012345679012345678, 0.002840909090909091, 0.006666666666666667, 0.01639344262295082, 0.014388489208633094, 0.02, 0.01834862385321101, 0 ]
0.010901
5
[ "DETROIT – A man was shot and killed just after 8 a.m. Tuesday during an apparent home invasion in the 3900 block of Wabash Street on Detroit's west side.", "\n\nPolice sources say a 21-year-old man broke into his ex-girlfriend's home by kicking in the door. ", "He was armed. ", "The 31-year-old woman's 32-year-old brother was at the apartment and shot the intruder multiple times in the chest.", "\n\nPolice recovered both guns from the scene. ", "Sources said the man reportedly had been stalking his ex-girlfriend.", "\n\nThe shooting happened about 8:10 a.m.\n\nStay with ClickOnDetroit for more information as it becomes available.", "\n\nSign up for ClickOnDetroit breaking news alerts and email newsletters" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0, 0, 0, 0, 0.009009009009009009, 0.014084507042253521 ]
0.002887
5
[ "Elijah Sherman Farm\n\nElijah Sherman Farm is a historic tobacco farm complex and national historic district located near Berea, Granville County, North Carolina. ", " The farmhouse was built about 1887, and is a two-story, three bay, frame I-house, with a one-story full facade porch. ", " Also on the property are two log corn cribs, stone well, two garage/sheds, a privy, smokehouse, woodhouse, corn crib, washhouse, stable, packhouse, striphouse, four tobacco barns, and a family cemetery.", "\n\nIt was listed on the National Register of Historic Places in 1988.", "\n\nReferences\n\nCategory:Tobacco buildings in the United States\nCategory:Farms on the National Register of Historic Places in North Carolina\nCategory:Historic districts on the National Register of Historic Places in North Carolina\nCategory:Houses completed in 1887\nCategory:Houses in Granville County, North Carolina\nCategory:National Register of Historic Places in Granville County, North Carolina\nCategory:Farms in North Carolina" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.006211180124223602, 0, 0.009852216748768473, 0.014705882352941176, 0.006993006993006993 ]
0.007552
5
[ "\n# **THE CURSE OF BRINK'S-MAT** \n **TWENTY-FIVE YEARS OF MURDER AND MAYHEM**\n\n**THE INSIDE STORY OF THE TWENTIETH CENTURY'S \nMOST LUCRATIVE ARMED ROBBERY**\n\n**WENSLEY CLARKSON**\n\nFirst published in Great Britain in 2012 by \nQuercus \n55 Baker Street \nSeventh Floor, South Block \nLondon \nW1U 8EW\n\nCopyright © Wensley Clarkson 2012\n\nThe moral right of Wensley Clarkson to be identified as the author of this work has been asserted in accordance with the Copyright, Designs and Patents Act, 1988.", "\n\nAll rights reserved. ", "No part of this publication may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopy, recording, or any information storage and retrieval system, without permission in writing from the publisher.", "\n\nA CIP catalogue record for this book is available from the British Library\n\neBook ISBN 978 1 84916 650 8\n\nPrint ISBN 978 1 84916 305 7\n\nYou can find this and many other great books at: \nwww.quercusbooks.co.uk\nWensley Clarkson is recognized as one of Britain's most knowledgeable writers when it comes to the underworld. ", "He first covered the Brink's-Mat robbery as a newspaper reporter more than twenty-five years ago and has watched its tentacles spread out across the underworld ever since. ", "Clarkson has written numerous true-crime books, including biographies of Brink's-Mat defendant Kenneth Noye, ex-Great Train Robber Charlie Wilson and legendary south London criminal Jimmy Moody. _", "Kenny Noye: Public Enemy Number 1_ was one of the ten bestselling true crime titles of the 1990s.", "\n_'It's a curse because everyone connected to Brink's-Mat stands to get topped sooner or later.'_", "\n\n– Legendary south London villain Georgie Francis, \nshortly before he was shot dead by a hit man.", "\n\n_'People are pointing the finger at one particular character who is virtually a one-man killing machine.'_", "\n\n– One Brink's-Mat associate, following the latest murder \nof one of the criminals involved in the heist.", "\n\n_'Like so many of them, Brian knew he had it coming. ", "He crossed the wrong people.'_", "\n\n– Gangster Gordon McShane, describing the hit-man \nkilling of Brink's-Mat robber Brian Perry.", "\n\n_'He offered me a one-million-pound bribe that I happily turned down.'_", "\n\n– Scotland Yard detective Brian Boyce, describing \nBrink's-Mat mastermind Kenneth Noye.", "\n_'One by one those involved are being picked off like targets in \na funfair shooting gallery. ", "It's bloody terrifying that this sort \nof thing still goes on in a so-called civilized society.'_", "\n\n– Retired senior Brink's-Mat investigator\n_What's a jemmy compared with a share certificate? ", " \nWhat's breaking into a bank compared with founding one?_", "\n\n– Bertolt Brecht, _The Threepenny Opera_\n_This book is dedicated to ALL the victims \nof the Curse of Brink's-Mat_\n\n## **CONTENTS**\n\nAuthor's Note: The Root of All Evil\n\nCast of Characters\n\nPrologue\n\nPart One: It's in the Blood\n\nPart Two: The Aftermath\n\nPart Three: All the Cards Come Tumbling Down\n\nEpilogue\n\nThe Dead\n\nThe Living\n\n## **AUTHOR'S NOTE: THE ROOT OF ALL EVIL**\n\n**_GOLD:_** _Precious yellow non-rusting malleable ductile metallic element of high specific gravity, used as a fundamental monetary medium._", "\n\nThe _Concise Oxford English Dictionary_ doesn't quite capture the magic of the word, nor its ability to fascinate and corrupt. ", "For 6,000 years it has been hewn from veins of quartz and pyrites, and panned from the rivers and streams. ", "Today those nations lucky enough to count it as a major resource – South Africa, Russia, Canada, the United States, Brazil and Australia – mine the precious commodity with relentless efficiency. ", "Even in countries where the amounts to be found can't support a highly developed industry, gold fever is just as strong.", "\n\nOnly in the last of the sixty centuries that it has been sought by man have gold's chemical properties been put to uses other than coinage and jewellery. ", "These days it is an essential ingredient in dentistry and the hi-tech industries, providing high electrical conductivity in printed circuits and improving the tonal image of photographic film.", "\n\nBut such is its rarity that even now ninety per cent of all the gold ever produced – estimated to amount to some 2,000 million ounces – can still be confidently accounted for. ", "Forty-five per cent lies in central banks such as the Bank of England and the Bundesbank in Germany, where it is kept as a guarantee of economic stability for the governments in question. ", "The Bank of England (other-wise known as the Old Lady of Threadneedle Street) never lets her reserves drop below 500,000 kilograms. ", "Another twenty-five per cent of the world's gold is in private hands – either those of powerful international conglomerates or hugely wealthy individuals – while the remaining twenty per cent has been used in jewellery, religious artefacts and dentistry.", "\n\nEven the ten per cent that is missing has not vanished without trace. ", "Much of it is stuck in a time warp, entombed on the ocean's floor in sunken galleons and more modern ships, victims of either the elements or marine warfare, where it waits to be rediscovered.", "\n\nBut the Brink's-Mat robbery changed all that. ", "Nobody in the history of British crime has ever got hold of so much of this precious, incredibly rare metal at once. ", "In one fell swoop £28 million worth of bullion was 'liberated' from a warehouse outside Heathrow airport. ", "Nobody, least of all the robbers themselves, expected to get their hands on this amount of loot. ", "Nor could they have predicted the job's extraordinary consequences.", "\n\nHowever I word this note I'm going to upset somebody. ", "One of my main sources for this book put it bluntly: 'There are people who will be fuckin' angry that I've talked to you. ", "They are evil characters and I don't want to upset _any_ of them.'", "\n\nThere are few readily available written records covering much of the activities of the Brink's-Mat participants, so I have had to trust the judgment and recollections of numerous people, many of whom would rather not have their names reproduced in this book. ", "It has been dependent on the memories of individuals – fallible, contradictory, touched by pride and capable of omission – but I believe them because these are upfront men, and there are no hidden agendas in this story.", "\n\nI make no apologies for the strong language, either.", "\n\nSo to all the 'faces' I've met down the years and the 'cozzers' who've given me a helping hand, I say, 'Thank you.'", "\n\nWithout their help, this book would not have been possible.", "\n\nMuch of the book is based on a long series of interviews, conversations and recollections supplied, at times unwittingly, by dozens of individuals over the past fifteen years. ", "I've spent many hours in formal and informal conversations with them. ", "Of course some vital names are missing, and that will frustrate those who were involved in the eras mentioned here. ", "But ultimately I've tried to recreate a story that twists and turns from the mean streets of south London to even harsher prison corridors to Spain's so-called Costa del Crime and across the globe. ", "It's been a fascinating journey which I hope you are going to enjoy and relish as much as I have.", "\n\nSome of the dialogue presented in this book was constructed from documents, some was drawn from courtroom testimony and some was reconstituted from the recollections of participants.", "\n\nWensley Clarkson, 2012\n\n## **CAST OF CHARACTERS**\n\n### **The Bad Guys**\n\nBIG AL – Grassing up a face is never a good idea.", "\n\nBIG JOHN – Underworld legend who couldn't resist a piece of the action.", "\n\nBIG PAT – Pumped-up, steroid-addicted psycho who took on the Big Boys and lost.", "\n\nBRIAN – Being greedy and turning your mates over is never a good idea.", "\n\nTHE BRIEF – Lawman with a crooked angle.", "\n\nCLIFFY BOY – Found out too late that crime definitely doesn't pay.", "\n\nTHE COLONEL – Ex-squaddie with a real eye for detail who had the inside track on the 'Crime of the Century'.", "\n\nTHE FOX – Mysterious financier who stepped back into the shadows at just the right moment.", "\n\nGARTH – Back-up man without a plan.", "\n\nGENTLEMAN GEORGE – A real pro who pushed his luck just a little too far.", "\n\nGOLDEN MOLE – Inside man who lost his bottle and now has to watch his back.", "\n\nHIT MAN SCOTT – Chilling _Goodfellas_ ice man from across The Pond.", "\n\nJOEY BOY – Master con man, adept at talking his way into anyone's fortune.", "\n\nKING OF CATFORD – Suspected 'masterblagger' who got too flash for his own good.", "\n\nLITTLE LEGS – Old-school East End robber armed with muscle and grit.", "\n\nMAD MICKEY (aka THE GENERAL) – The brains – with a short fuse and a mission to destroy anyone who got in his way.", "\n\nMATTY THE GREEK – Old-time fence who thought he knew it all.", "\n\nTHE MILKMAN – Kilburn Irishman who always delivered on time.", "\n\nKENNETH NOYE – So-called middleman who killed his way to notoriety.", "\n\nPADDY – 'Active' in every sense of the word, but somehow escaped justice.", "\n\nTHE PENGUIN – Irish mobster with all the right connections.", "\n\nTHE PIMPERNEL – The most artful dodger of them all.", "\n\nPORKY – Escaped convict with blood on his hands.", "\n\nSANE MICKEY – Tried to keep everyone happy but ended up with more trouble than he could handle.", "\n\nSCARFACE – Psycho shooter with a death wish.", "\n\nSID THE WINK – Double-dealing ex-cop turned merchant of death.", "\n\nSTEVIE THE BUTCHER – 'Carve-up man' who helped hide the bodies.", "\n\nTERRY THE CHIEF – Head of a modern-day family of criminals who are the most notorious London has ever seen.", "\n\n### **The Good Guys**\n\nBRIAN BOYCE – Stickler for discipline and completely 'unbendable'.", "\n\nTONY BRIGHTWELL – Fair-minded but eagle-eyed detective who had a face-off with some of the gang.", "\n\nSTEPHEN CAMERON – Had the dreadful misfortune to encounter a cop killer on the road.", "\n\nJOHN CHILDS – Undercover man who was first on the scene of the crime that rocked the boys in blue.", "\n\nPHIL CORBETT – Tenacious officer with a down-to-earth attitude.", "\n\nTONY CURTIS – The last cop standing.", "\n\nJOHN FORDHAM – Hard-nosed police surveillance man whose devotion to the cause ended in tragedy.", "\n\nALAN 'TAFFY' HOLMES – Sensitive detective constable who allowed the pressure to get to him.", "\n\nTONY LUNDY – Gritty northerner who _never_ took no for an answer.", "\n\nBOB MCCUNN – Relentless insurance investigator who refused to bow to the hard men of crime.", "\n\nHENRY MILNER – Hard-working brief who made his name representing some of Britain's most notorious villains.", "\n\nDANIEL MORGAN – Delved too deeply into the Brink's-Mat aftermath and paid for it with his life.", "\n\nNEIL MURPHY – Fordham's softly spoken partner who witnessed horror first hand.", "\n\nROY RAMM – Astute, old-school copper who relentlessly pursued his prey.", "\n\n## **PROLOGUE**\n\n### **BBC TV NEWS BULLETIN, SATURDAY 26 NOVEMBER 1983**\n\n_'An armed gang has carried out Britain's largest-ever robbery at London's Heathrow airport._", "\n\n_Over £25m worth of gold bullion bound for the Far East was stolen from the Brink's-Mat warehouse, about one mile (1.6km) outside the airport perimeter, between 0630 and 0815 GMT._", "\n\n_Police have said a group of at least six men overcame the guards and successfully disabled a huge array of electronic security devices._", "\n\n_Insurers have offered a reward of £2m for information leading to the recovery of the 6,800 gold bars – which are all identifiable by refiners' stamps._", "\n\n_The members of the gang – who were all armed and wearing balaclavas – also stole £100,000 worth of cut and uncut diamonds._", "\n\n_They dressed in security uniforms to get into the warehouse and then terrorized the guards into giving them the alarm codes._", "\n\n_All the guards were handcuffed, one was hit on the head with a pistol and two had petrol poured over them._", "\n\n_Once inside the safes, the robbers used the warehouse's own forklift trucks to transport the 76 boxes of gold into a waiting van._", "\n\n_The alarm was raised by one of the guards at 0830 GMT after the gang had left._", "\n\n_Scotland Yard Flying Squad chief Commander Frank Cater is leading the hunt for the thieves._", "\n\n_He said: \"There is no doubt they had inside information and were a highly professional team.\"'_", "\n\nThe Brink's-Mat gang had expected rich pickings but they'd never imagined the extraordinary level of wealth they stumbled upon that day. ", "Their audacious plot, ruthless in its conception and brilliant in its execution, had just landed them the biggest haul in British criminal history. ", "The Brink's-Mat robbery would go on to make the names and fortunes of many of today's most notorious gangsters. ", "It's become the stuff of legends, and its bloody tentacles provoked a vicious gang war in the underworld that is still raging to this day.", "\n\nLike the British archaeologists said to have been cursed after they unearthed Tutankhamun's tomb in 1922, the lives of those who were involved in Brink's-Mat would be blighted forever.", "\n\nBut where did it all begin? ", "Why were those robbers drawn to such a high-risk crime? ", "To try and find the answers one must first delve right back into the history of the south London underworld.", "\n\n## **PART ONE: \nIT'S IN THE BLOOD**\n\n'Train up a child in the way he should go, \nAnd when he is old, he will Not depart from it.'", "\n\nProverbs 22:6\n\n### **ONE**\n\nAcross the Thames from the City of London lies the borough that for centuries was effectively the second-largest city in England: the Borough of the South Works of London Bridge, or Southwark. ", "Borough High Street runs directly from London Bridge.", "\n\nIn 1197 two 'tycoons' swapped a pair of manors from their real estate portfolios. ", "The Archbishop of Canterbury accepted Lambeth, on the Thames bank about a mile west of the Borough, in exchange for Dartford, in Kent. ", "He decided to use it as his town house instead of adding it to his investments, and Southwark innkeeping profited by the increase in travel between Canterbury and London.", "\n\nAlong the bank of the river between east Lambeth and Southwark, the bishops of Rochester and Winchester bought properties which their successors leased out. ", "In Henry VIII's reign, Rochester's cook, Richard Ross, poisoned the soup at a banquet, and became the sole victim of Henry's new penalty for poisoners. ", "He was boiled alive.", "\n\nWinchester's property soon became notorious for its brothels. ", "The carnival atmosphere of the Bankside was further enhanced by a bear-baiting ring, theatres, and the first of the south bank pleasure gardens. ", "All these attractions encouraged the criminals of the day to head into the crowds to pickpocket and scavenge off the rich visitors. ", "Then they headed back to their homes in the dreadful slum areas around Mint Street ('the Mint') and south of Union Street ('Alsatia').", "\n\nTo the east, numerous leatherworks centred on the district of Bermondsey. ", "But the drawback to the tanning industry was the obnoxious odour that drifted across the entire area. ", "As a result, Bermondsey developed atrocious slums, and by the 1840s Jacob's Island was the worst area of urban deprivation in London. ", "It was from these south-bank slums that the great nineteenth-century cholera epidemics sprang.", "\n\nWith the arrival of the railways, Waterloo station dominated east Lambeth to such a degree that it dragged the residential neighbourhood down even further. ", "The riverside became a dismal region of filthy, rundown warehouses. ", "Squalid Bermondsey became the epicentre of violence and ill-health amongst the poor and deprived, mainly due to dreadful overcrowding.", "\n\nThe nineteenth century's most appalling infanticide took place in the Old King's Head Tavern in Greenbank, Tooley Street, close to where London Bridge station stands today. ", "In 1843, brush salesman Edward Dwyer – whose propensity for violence had already resulted in one heavy jail sentence – was putting in a hard day's drinking at the tavern. ", "By nine in the evening, his wife and mother-in-law had come in and started abusing him in front of his friends for being drunk. ", "They slapped him and left him to look after his three-month-old baby. ", "He left the child on the street outside until his drinking friends persuaded him to fetch it in. ", "Increasingly inebriated, Dwyer began making bizarre drunken remarks to his pals.", "\n\n'Blood on a brick,' he said 'would look very funny. ", "Blood on the wall would look very queer. ", "If a bullock's head was beat against the wall there would be plenty of blood on it.'", "\n\nThen before anybody could stop him, Dwyer picked up the baby by its thigh and smashed its head on the bar counter over and over again.", "\n\nBermondsey never shook off the stench of real poverty until more than a hundred years later when the combined efforts of Hitler's bombing raids and the economic realities of life in postwar Britain effectively flattened much of the Thameside slums. ", "After the war, the descendants of many of those disease-ridden ghetto victims finally turned their backs on the cobbled streets and were encouraged to start afresh in the suburbs that were gradually sprouting up in the cleaner air and wider fields on the edge of southeast London.", "\n\nAnd that is where the Curse of Brink's-Mat begins...\n\nWithout smog, the concrete jungles of housing developments or shocking extremes of wealth and poverty, these suburbs were supposed to represent the acceptable new face of Middle England, with many appealing features but few of the old inner city's bad habits.", "\n\nPeople were desperate to move to these previously nondescript locations between central London and the so-called 'Garden of England' in Kent. ", "And by the time many of the Brink's-Mat gang were born just after the end of the Second World War, these places were starting to assume a comfortable reputation all of their own.", "\n\nNone of the suburbs like Bromley, Bexleyheath and numerous other places that developed around this time were particularly picturesque, but compared with the harsh, dilapidated streets of Bermondsey, Walworth, Rotherhithe and Waterloo they were sheer luxury. ", "In any case, these new suburbs also retained some traditional reminders of London life – a fine range of pubs, chippies and pie and eel shops, and enough memories of the capital and its history to make sure they still felt like home.", "\n\nBasking in relatively clear air away from the smoky industrial docklands close to the river, the image of these suburbs and their neat gardens as aspiring lower middle class and conservative was very true to a large extent. ", "However many of the new residents found it strange to have swapped those rundown rows of riverside terraced houses in which they'd grown up for the characterless square bungalows that were the essential feature of the south-east London suburbs.", "\n\nSome of those residents' children would grow up to become the most feared and notorious characters in British criminal history. ", "Yet many had what appeared on the surface to be enviable childhoods in those very same suburbs, even though many of their families still lived on the edge of the underworld, thanks to their connections back in 'the Smoke', as London was known to all and sundry back then.", "\n\nMost fathers worked hard at 'straight' jobs in the hope they'd provide a more secure livelihood than all the ducking and diving which had become such an integral part of life until and including the years of the Second World War. ", "Despite the vein of dishonesty that seemed to run through so many of these characters, many of them retained a true love for King and Country. ", "They were fierce patriots, yet essentially still imbued with the ethos of thievery, which had been instilled in them by the communities in which they'd grown up. ", "Being totally honest wasn't much of an option when you were growing up in a slum in Bermondsey or some rundown Thameside tenement. ", "It was all about surviving, and many of them took this attitude with them to the suburbs.", "\n\nAs one old south-east London resident put it: 'You can take the boy out of Bermondsey but you can never take Bermondsey out of the boy.'", "\n\nVillainy was ingrained in many of these families. ", "When their fathers worked in the docks stealing was accepted – virtually encouraged – because it helped impoverished people boost their income to support their families. ", "It was the same in the newspaper print industry, which was booming after the war as circulations sky-rocketed and newspaper owners would do virtually anything to guarantee their publications got out on the streets on time every day. ", "Printers enjoyed a whole raft of 'extras' such as the 'Mickey Mouse syndrome' where at least once a week they'd pick up an extra day's shift money by submitting a fake claim for a day's wages in the name of Mickey Mouse. ", "It was all accepted practice back then, and these same dodgy habits were handed down to their children.", "\n\nCorner sweetshops were fair game to kids. ", "Many would loiter outside them after school most afternoons. ", "Frequently they'd steal empty bottles of Tizer by slipping through the side gates where all the empties were stored. ", "Then they'd walk brazenly into the front of the shop and claim the penny per bottle they could expect for returning them, and buy sweets with it.", "\n\nThese 'cheeky Charlies' grew up fully alert to everything that was going on around them. ", "They were perceptive and streetwise from a young age. ", "And those remarkably sharp powers of observation would be put to good use in later years.", "\n\nBut in the middle of all this, most families were immensely proud of the way they worked hard and survived, regarding it as a badge of honour. ", "There was rarely any question of scrounging off the state; how you supported your brood was up to you.", "\n\nNaturally, school was looked on as a chore, and most kids couldn't wait to leave and head off into the real world to try their luck at whatever took their fancy.", "\n\nInterestingly, many of the boys who grew up to become notorious professional criminals say they were victims of bullies at school, something that, more than anything else, turned them into hard-nosed loners prepared to take enormous risks. ", "It seems that they learned to defend themselves from an early age, and the bigger, older boys at their schools soon left them alone. ", "As with so many things in their lives, these characters would one day exploit those experiences to their own advantage.", "\n\nAnother element to this was that the experience of being bullied at such an early age made many of these youngsters determined to get their own back on society. ", "It was as if they were saying to their peers: 'You didn't look after me when it mattered so I'm going to do what the fuck I want.'", "\n\nOf course at school that meant regular beatings. ", "In the years after the Second World War, teachers were allowed to hand out corporal punishment with impunity. ", "But all that did was harden the resolve of these youngsters and convince them that they were right to ignore all the usual rules when it came to morals and honesty. ", "In their minds, there was no such thing as being poor and happy. ", "At home, things were little different. ", "They continued to be regularly disciplined by their fathers or whoever happened to be living with their mothers at that time, but this had little effect on curbing their energetic behaviour since it was never accompanied by an explanation of what they'd actually done wrong.", "\n\n'You just got a good slap and then got on with things. ", "No one talked it through. ", "It was just part of growing up,' one old south London villain explained.", "\n\nThere is no doubt that the violent atmosphere in which so many of these would-be young criminals grew up simply encouraged their aggressive personalities to emerge. ", "Many of them found it difficult to establish a relationship between themselves and the world outside the care they received from their mothers and siblings.", "\n\nThese children who were growing up with an unhealthy urge to steal their way to fame and fortune remained especially close to their mothers. ", "With fathers who worked long hours and spent most evenings at the local pub or at the dogs, not to mention the lengthy periods many had been away during the war, it was hardly surprising. ", "The mums were the ones who slipped their sons a few bob when dad wasn't looking. ", "The mums were the ones who would often come to the rescue of their little boys, _whatever_ they were accused of.", "\n\nMany of these youngsters worked mundane part-time jobs long before they left school, which simply fuelled their obsession with earning big money when they grew up. ", "Nearly all of them cut their teeth on dodgy sidelines such as handling stolen bicycle parts, nicking radios out of cars and even shoplifting. ", "Everything was fair game: cigarettes, spirits and clothing. ", "Often railway containers were raided at night and their contents would end up on local street markets the following day. ", "The docklands were still a breeding ground for criminals, even if some of them had moved with their families out to the suburbs on the border of south-east London and Kent. ", "Many of the husbands and fathers of families in these new suburbs spent much of their time back at their old familiar haunts near the Old Kent Road: stealing remained a way of life.", "\n\nWhen talking to some of those involved with the Brink's-Mat job, they agreed that from an early age they'd boast to anyone who would listen about what they wanted to do when they grew up. '", "Earn a big fat wedge of cash,' was always their biggest ambition.", "\n\nBut few of these youngsters saw their future in joining the job ladder and climbing their way slowly upwards. ", "Their ambition was connected to the one thing they believed could help them escape their lives of relative poverty – committing crimes. ", "It was much more lucrative than having a job in Civvy Street.", "\n\nBy vowing to be wealthy they were effectively putting themselves under severe pressure, which meant they would find it virtually impossible to back down if things didn't go their way. ", "As former Kray twins' associate the legendary Freddie Foreman explained years later: 'You went out and you took chances and did all the villainy and put your life on the line, your liberty on the line, but there would be a nucleus of people around you who'd make sure you survived.'", "\n\nThat was the way it was.", "\n\nOften these youngsters would form a gang and go up to central London to steal wallets and people's belongings from tourist coaches parked in places like Constitution Hill, near Buckingham Palace. ", "Naturally, no one took much notice of kids, often deliberately dressed in shorts and a school cap so as to appear harmless. ", "These scallywags could make as much as five pounds in just one day by selling everything they'd stolen on to a fence. ", "Knowing a fence was the most profitable – and safest – way of making money out of crime. ", "Fences were superbly well organized and considered respectable businessmen in these communities back in in the postwar era. ", "Being a fence was a very profitable and crafty way to make good money out of crime without getting your hands dirty. ", "Everyone – even the youngest children – noticed the aura surrounding them. ", "According to Freddie Foreman: 'They got great respect because of their mannerism and their obvious affluent lifestyle. ", "They always looked smart. ", "They knew how to dress well. ", "They'd have a little business going, they'd drive a decent car and they'd spend their money wisely.'", "\n\nMickey McAvoy (who would go on to be the Brink's-Mat robbery leader) and his mates nicked lead off roofs and collected scrap to sell down at the yards which had sprung up where Hitler's bombs had flattened buildings ten years earlier. ", "The youngsters led by McAvoy were soon making ten to fifteen shillings a day from local fences in the Camberwell area where these young scallywags grew up. ", "But McAvoy and many others growing up in southeast London preferred to be out and about on the mean streets, looking for opportunities, not scrabbling around on rooftops. ", "One of McAvoy's oldest friends later explained: 'Even as a kid Mickey had these sharp, beady little eyes that darted around in all directions, scanning the streets on the lookout for trouble or a chance to do a bit of thieving. ", "We looked up to him, even back then. ", "He had an aura about him. ", "You knew he was capable of anything.'", "\n\nBy the mid-1950s, dockworkers on both sides of the Thames – east and south – started losing their jobs as the postwar recession bit even harder. ", "That meant they had to find ways of replacing the high wages (and bungs) they'd been earning over the years. ", "Soon the only really high wages (and bungs) that still existed were as a printer in Fleet Street, where all the national newspapers continued to be produced in their millions. '", "The print' was a lucrative trade often passed down through families. ", "But in time even print jobs began to be axed, something that sparked a feeling amongst many that they had to go back to their roots in order to 'make a crust'. ", "The area's new heroes were the 'pavement artists' – robbers – who'd scoop a few thousand pounds on a job and then buy everyone a round of celebratory drinks in their local pub.", "\n\nTrue, they'd sometimes get caught by police, stand trial at places like the Old Bailey and go down for a long stretch. ", "But at least they lived in style. ", "Many in these communities frequently got angry about the long sentences handed down to villains, who were in many ways considered latterday Robin Hoods. ", "No one ever asked whether the crimes being committed were morally wrong; often robbers were seen as simply providing for their families.", "\n\nDespite this, on the surface the relationship between the police and petty criminals remained a civilized one. ", "Often they'd meet each other in the local pub and exchange pleasantries, even though they might have been 'nicked' the previous week. ", "A lot of coppers and villains had been brought up in the same neighbourhoods and some even went to school together.", "\n\nIn the 1950s and early 1960s bank raids were usually carried out in the dead of night, with a master safecracker pitting his wits against whatever security arrangements happened to be in operation at the time. ", "But as lock design and other security improved, tackling a safe became a much tougher challenge. ", "Even the use of gelignite was no longer a sound bet: a device had been developed that, if triggered by the force of an explosion, simply threw extra bolts across the safe door. ", "Villains introduced oxyacetylene torches to get around this problem, but these proved to be slow and cumbersome and, on occasion, would actually reduce the contents of a safe to charred paper before the door could even be forced open.", "\n\nIn the place of bank raids the armed robbery scene developed into an even more lucrative criminal enterprise. ", "Wages had increased in the post-war boom and firms had to hire companies to transport their cash to factories and offices on pay day – usually Fridays. ", "There were no professional security companies back in those days. ", "More often than not, two or three trusted workers in a company would be given a few extra bob to pick up the cash from a nearby bank. ", "If they were lucky they were armed with a cosh.", "\n\nInevitably, some workers began informing their associates about this transportation of relatively large sums of money, giving the villains the sort of essential inside info they needed. ", "As one robber from those days explained: 'It was easy pickings because these \"guards\" were just ordinary workers and they didn't want to get bashed up or put up a fight to protect the firm's money.'", "\n\nAt that time most wages were carried in canvas cricket bags that could be snatched in seconds, thrown into a waiting car and driven around the corner to a quiet cul-de-sac, usually near a railway path or bridge where a changeover car would be waiting on the other side. ", "Often the takings from such crimes were then quickly 'reinvested' into honest businesses. '", "The objective was to get enough money to retire after building up your straight business,' explained one veteran robber. '", "Then you could put your kids through good schools, buy your own home and get a decent motor, even maybe manage a holiday abroad.'", "\n\nRobbers eventually graduated to across-the-counter bank raids. ", "Old-style attacks on bank safes hadn't required any confrontation on the part of the robbers, but going into a bank in broad daylight did. ", "So it was essential for the robbers to be able to guarantee _control_ – and that's when firearms began appearing with alarming regularity on the streets of London.", "\n\nBanks responded by installing reinforced glass screens to protect their cashiers. ", "The risk in such armed raids was obviously higher but the rewards were generally lower. ", "So once again those intent on robbery began looking for new methods. ", "Cash in transit seemed the answer. ", "Because of the increased use of credit and debit cards, Britain has become almost a cashless society, but back in those days consumers still needed ready money and plenty of it.", "\n\nSo it was no surprise that, during the 1960s, specialized security firms began emerging to take on the responsibility of transferring money. ", "Armoured vans replaced vulnerable clerks carrying briefcases. ", "It was these vans and their guards that became the new breed of robbers' primary targets. ", "And it was south-east London 'firms' – gangs of robbers – who soon dominated such crimes throughout the capital. ", "Often wealthy, older criminals financed these jobs but they rarely told the experts how to go about their work. ", "These robbers were thorough professionals.", "\n\nBut as the money in transit industry grew, so did the risks. ", "Post office vans were considered a soft target because they often had just one driver, and he usually didn't even know how much cash he was carrying. ", "The _blaggers_ usually had a snitch inside the main post office who'd be able to tell them which days there was a lot of cash on board such vans. ", "A popular target was the pension run to post offices, but that only tended to be if the villains were hard up that week, as the pickings were not usually much more than a few hundred pounds.", "\n\nThe ultimate reward for a career as a robber – besides the cash – was underworld fame. ", "There was nothing like picking up the evening paper, seeing the banner headline POST OFFICE VAN HIJACK and knowing that the local big-time faces would immediately be able to tell who'd carried out the job.", "\n\nIn the middle of this heady environment, prison became the natural breeding ground for even bigger robberies as criminals linked up with new partners inside while serving time. '", "Inside clink [prison] was where you met different people and heard different stories and you learned your trade, so to speak. ", "Prison's like a breeding ground. ", "It's like going to university or going to college,' explained one old face. ", "Many of these young south-east London villains would soon be graduating with 'full honours'.", "\n\n### **TWO**\n\nSome young villains tried to go straight by enrolling in apprenticeships to learn a trade such as carpentry or bricklaying, but the pay was never enough to give them the sort of wealth they craved, many being already obsessed with avoiding the financial struggles of their parents.", "\n\nPlaces like the Scala dance hall in Dartford, Kent, were popular with young south-east London tearaways such as Mickey McAvoy and his old mate Tony White. ", "They liked travelling out to the suburbs because there were more young girls around in places like the Scala. ", "No one ever paid the entrance fee. ", "Instead, they'd clamber over the back fence and go through a back door. ", "That's when McAvoy first came across characters like Kenneth Noye, another ducker and diver, but not in the same class as McAvoy because he was 'a softy from the suburbs'. ", "In McAvoy's mind you could only be really hard if you'd grown up in the inner-city areas.", "\n\nIn the early 1960s, a lot of the youngsters from in and around south-east London dressed as Mods with smart, short haircuts, Hush Puppies shoes and black mohair suits, _if_ they could afford them. ", "The Mods drove scooters, and their arch-enemies were the Rockers – greasy motorbike fanatics who grew their hair relatively long and wore tatty jeans and leathers.", "\n\nThe Mods and the Rockers were the two main opposing youth social groups who emerged at the time, ahead of the skinhead cult which came a few years later and was fuelled by football crowd violence. ", "There were frequent clashes between Mods and Rockers at weekends when they descended on south coast seaside resorts such as Brighton and Margate.", "\n\nIn the 1960s being a Mod, and many of these aspiring south-east London hoods were, was a serious business. ", "Their favourite bands were The Who and The Spencer Davis Group, and many eventually graduated to The Small Faces. ", "Naturally, the cozzers – as the police were known throughout south-east London and Kent – tried to keep a close eye on the various gangs of the day. ", "But these youths were already well used to the police. ", "Their attitude often manifested itself in a complete and utter disregard for rules and regulations, almost a contempt for society. ", "A few youngsters back then took drugs such as purple hearts (a mixture of amphetamine and barbiturates), but the hard-nosed criminal types like Mickey McAvoy steered well clear of them. ", "Drugs were unknown territory in every sense, and the profits weren't very high because the market was so small.", "\n\nIn their mid-teens many of these characters graduated to the local greyhound track (known as 'going to the dogs'), where they could make themselves a few bob. ", "The dog tracks were usually a hotbed of local villainy, and these ever-observant and perceptive youngsters like McAvoy and others soon worked out which members of the criminal underworld were really on the up. ", "One villain later confided how he'd often slide into a bar at the track and sit in a corner listening to the 'dodgy deals' going down, and then use the information he'd gleaned to make money for himself. ", "McAvoy and his old mate Tony White were fascinated by these tough, edgy older characters in their sheepskin coats who seemed to carry endless bundles of five-pound notes around in their pockets.", "\n\nThe twisted values they learned impacted upon these teenagers' lives with increasing frequency and sent them into something of a moral vacuum. ", "It seems from interviews with countless associates and friends of the Brink's-Mat gang that many of them grew frustrated as youths and developed bad tempers. ", "If they didn't get what they wanted immediately there would be hell to pay.", "\n\nOften a hair-trigger reaction could be provoked by the smallest incident. ", "But instead of taking a deep breath and walking away from potentially difficult situations, many of these characters would steam straight into their opponents. ", "It was almost a 'shoot now, ask questions later' mentality.", "\n\nThese tough young scallywags went out of their way to develop reputations as hard men. ", "They wanted their contemporaries to know they wouldn't compromise in any way. ", "Part of the fault lay with their parents because they did nothing to teach their children how to control their aggression. ", "They never gave clear guidelines to their sons, and as a result they were allowed to believe they could get away with virtually anything.", "\n\nAnd most of the time they did precisely that.", "\n\nYet their minds – like those of so many youths brought up in tough, uncompromising environments – were creative instruments which veered off in certain directions depending on their surroundings. ", "These characters would see a situation in a completely different way to others who'd had a more respectable kind of background. ", "People's personalities are said by psychologists to reflect a characteristic set of behaviours, attitudes, interests, motives and feelings about the world. ", "It includes the way people relate to others. ", "Extreme forms of abnormal behaviour are supposed to be easy to recognize but that doesn't mean they can be instantly rectified. ", "The over-generosity to certain people, the need for admiration and complete lack of empathy towards those outside their own exclusive circle displayed by these young hoods are all classic indicators of narcissism. ", "Nearly all of them also had a sprinkling of obsessive-compulsive disorder thrown in for good measure – a preoccupation with orderliness, perfectionism and control.", "\n\nSome of them – like Mickey McAvoy and Kenneth Noye – were already showing themselves to be what one might call born leaders. ", "With that came a number of other attributes, such as a heavy build, often developed in the local gym, street-wisdom and confidence beyond their years. ", "The message was loud and clear: 'Don't fuck with me.'", "\n\nYoung Mickey McAvoy and his friend Tony White worked weekends as porters at the Covent Garden fruit and veg market where they all humped crates around to 'earn a few extra bob'. ", "As they got older they stopped going to the suburbs and started going to the heavier south London clubs on Friday and Saturday nights where McAvoy in particular sometimes ended up having a 'right tear-up' with rival youths. ", "Another favourite hangout for these young hoods and their chums was at a mobile snack bar on the south side of Albert Bridge, next to Battersea Park. ", "During the hotter summer months, hundreds of south London youths would turn up there, until the police tried to move them along because their presence caused major traffic problems.", "\n\nThe 'hit first, ask later' attitude displayed by teenagers like McAvoy helped them gain confidence and power within their group of peers. ", "One childhood friend explained: 'Mickey was quiet but you knew instinctively he was a powerful character. ", "He had a real work ethic and wanted to earn big money from an early age.'", "\n\nThe other youths who went on to make their names in the south London underworld shared this intense work ethic. ", "They expected to do some graft to earn a crust, but the difference with McAvoy and his pals was that they were after richer pickings than a paltry weekly salary. ", "They wanted the good life and all its trappings.", "\n\nThe desperate poverty that had enveloped his family back in Ireland before they'd moved to Camberwell heavily influenced McAvoy's home environment. ", "London's postwar youths were emerging from their parents' abject poverty as a restless, rebellious generation determined to make a mark for themselves in the world. ", "But while McAvoy and his mates were committing numerous petty crimes, they still retained certain standards and even had codes to abide by. ", "Targeting a man walking along the street and stealing his watch was frowned upon, while raiding a cigarette wholesalers' lock-up or breaking into shops at night was totally legit. '", "You don't rob your own – ever,' McAvoy told one south London contemporary when he was a teenager. ", "Not grassing up your mates was taken for granted. ", "As one old south London criminal associate explained: 'If you went on a job and you got nicked and another fella who was on the job with you didn't grass you up, then he'd just done exactly what he was supposed to have done. ", "I'd never look at someone and think: \"Oh he didn't grass me up, what a lovely fella.\" ", "I wouldn't be with him in the first place if I thought he was gonna turn grass on me. ", "Grassing is a terrible, despicable thing. ", "People like myself and my friends would rather fuckin' die than be a grass.'", "\n\nBy his mid-teens, McAvoy and many of his pals had little need for any further education. ", "They were bright, quick-witted youths with an eye for the main chance, and many of them were already earning money by ducking and diving. ", "To adults who employed them in the markets, McAvoy and his mates seemed humorous, happy-go-lucky characters, bursting with energy and deeply proud of their south-east London roots.", "\n\nAccording to some of his contemporaries back in the late sixties, McAvoy's aggressive personality really thrived in this semi-criminal environment. ", "McAvoy was fast becoming the kind of person who only saw things from his own perspective. ", "Other family members noticed how fearless McAvoy became in his teens, as well as the way he'd try to manipulate situations to suit himself at others' expense. ", "He also often seemed incapable of realizing when he'd hurt other people's feelings. ", "He felt little remorse and certainly no sympathy for the victims of his early scams and crimes.", "\n\nYet beneath this rock-hard exterior lay an inner sadness. ", "McAvoy found it difficult to take part in the normal activities like team sports that his peers were involved in. ", "Being a teenager is supposed to be a time in which the developing individual learns how to be happy and derive happiness from as many situations as possible. ", "This wasn't the case for McAvoy.", "\n\nOut on the streets of south-east London as a teenager, McAvoy carefully hid his true feelings. ", "One old pal explained: 'Mickey didn't like to give anything away about himself. ", "He seemed a bit tense a lot of the time but his mind was always turning over, thinking about what he could get away with. ", "He was incredibly observant. ", "He'd spot things in the street before anyone else and that made him someone you always wanted on your side.'", "\n\nAn example of his sharp entrepreneurial eye were the road races to coastal resorts like Ramsgate and Whitstable organized by McAvoy and his crew. ", "Like all kids back then, the characters who would eventually grow up to pull off the most lucrative crime of the twentieth century were obsessed with cars, often because their fathers couldn't afford one. ", "With war rationing and low wages, they were still considered a luxury. ", "That naturally made cars an object of great curiosity – and envy – to kids. ", "As they grew older their fascination would turn many of them into juvenile car thieves. ", "These trips went a bit further. ", "They featured young 'drivers' who were already experts behind the wheel, even though they were under the legal driving age of seventeen. ", "McAvoy and his mates all put heavy bets on who would win before the vehicles – always stolen – set off through London and into the countryside of south-east England. ", "McAvoy, in his mid-teens at the time, was the 'ringmaster' of these trips and handled all the bets when they came in.", "\n\nMany of McAvoy's contemporaries may have been petty thieves, but to become a real outlaw you had to do everything _your_ way. ", "Nobody and nothing else mattered, apart from your loved ones of course, and that ruthlessness made you more feared and respected. ", "No one could get away with pulling a fast one on Mickey McAvoy because beneath that suspicious expression lurked a cold, calculating individual capable of making split-second decisions that could mean the difference between life or death to certain individuals.", "\n\nNaturally the young Mickey McAvoy played up to his growing reputation. ", "When he walked into certain taverns the place really did go quiet like it does in the movies. ", "But McAvoy wanted to be more than just a bit of local muscle; he saw himself as a leader of men, a skilful criminal capable of taking on and beating anyone, especially the archenemy, the cozzers. ", "McAvoy, who had boxed at a local club where he'd gained a reputation as a ferocious fighter, remained, according to his childhood friends, 'very handy with his fists, so no one dared take him on'. ", "Those who knew him back then say McAvoy was 'solid, not particularly tall, not a bully by any means, not even frightening. ", "He would never take any liberties but he was a right fuckin' hard bastard.'", "\n\nWhile Mickey McAvoy was undoubtedly a hard-as-nails character, he also showed great loyalty to those he liked. ", "He knew when to help rather than hinder. ", "He was shrewd yet arrogant, and wanted wealth so badly that he was happy to take advantage of his own popularity. ", "McAvoy was highly charismatic – even as a teenager he was capable of ordering his contemporaries to carry out minor crimes such as stealing milk off doorsteps and bottles of pop from shops. ", "It was a sign of what was to come. ", "He was, in the words of one of his contemporaries, 'a strange combination of hard heart and soft mind. ", "Capable of beating a man, but also just as likely to help an old lady cross the street.'", "\n\nMcAvoy was a genuine creature of circumstance, a product of his tough upbringing and a complex, contradictory man who was utterly dangerous because he did not recognize the traditional boundaries in life. ", "And he'd undoubtedly become addicted to crime from a very early age.", "\n\nBy the time they'd left school McAvoy and his pals were already burgling and carrying out raids on the nearby docks, so it was inevitable they'd graduate to bank robberies. ", "These were the jobs that cemented a south London villain's reputation more than anything else. ", "Once word got round that McAvoy was 'going across the pavement' then he really would be a 'made man' as far as the rules of the underworld were concerned.", "\n\nThis move into more organized crime represented a real step up for a young hoodlum. ", "As one of his childhood friends recalled: 'When you're on a blag, it's like being part of a football team. ", "Each person has their role and you count on the rest of them to pull their weight. ", "It's a fantastic feeling when it works out. ", "We'd get tip-offs about likely targets and the normal percentage for that kind of information was ten per cent of whatever you get. ", "It was all a game but a fuckin' lucrative game when it worked.'", "\n\nOnce McAvoy and his gang had picked a day to commit a blagging, they'd work on getting all their tools together and steal a car to ensure a fast getaway. ", "A classic blagging for McAvoy and his young pals would be a man collecting takings from betting shops. ", "McAvoy's crew would usually be armed with at least a cosh, and just the mere threat of it would be enough to 'persuade' their victims to hand over the cash.", "\n\nAs one veteran robber who worked with McAvoy back then explained: 'Mickey was well known as being a good man to go to \"work\" with because he was very sound, game, and if you went across the pavement, Mickey would be the first one out of the car and the first one in to grab the dosh.'", "\n\nAs a young hood with a few bob in his pocket, McAvoy and others such as his close friend Tony White began frequenting the clubs, dives, spielers (illegal gambling clubs), pubs and hotels 'up West'. ", "The two youths sometimes worked as enforcers for the violent and unscrupulous characters who ran protection rackets in the West End. ", "Though they were nothing more than hired hands trying to earn some extra cash between robberies, they started to meet older, more experienced villains, including a quiet but impressive character called Brian Robinson, who had a reputation as a 'real pro' and also came from the same south-east London manor as McAvoy.", "\n\nThe older, more conservative Brian Robinson had spent a few years in the army, where it seems he honed his skills before getting out and developing into a very smart, supposedly independent 'entrepreneur' of crime.", "\n\nAll these young villains also quickly learned the importance of 'greasing palms', especially when it came to the local cozzers. ", "That type of bribery and corruption undoubtedly coloured their attitude towards the police in later life. ", "Their argument was simple: 'How can you trust a copper if most of them want a backhander? ", "They're all the enemy, and most of them are less honest than we are.'", "\n\nCharacters like McAvoy, Robinson and White didn't recognize _anyone_ in authority – apart from perhaps the occasional criminal name – as they developed into fearsome villains on the streets of south-east London. ", "As far as they were concerned, policemen, judges and Home Office officials were nobodies. ", "This new generation of villains were on their way up the ladder and nothing was going to stop them.", "\n\nWhen Mickey McAvoy had a violent clash with a much older south-east London criminal, it looked like he was going to get his comeuppance. ", "But even as a youngster, McAvoy didn't hide from anyone. ", "He said later that taking on this particular face and 'giving him a right hiding' had been a good bit of 'PR'. ", "In other words he'd sent out a message to other criminals that he was already a top dog.", "\n\nA number of south-east London pubs became hotbeds for local criminals, and these younger hoods – observant and perceptive as ever – watched closely. ", "Just like they'd done years earlier at the dogs, they'd often slide into a bar and sit in a corner listening to the dodgy deals going down.", "\n\nAs Mickey McAvoy's circle of acquaintances grew, so did his criminal habits. ", "One friend from his school days got himself a job in a meat warehouse and immediately became involved with McAvoy in smuggling out carcasses of beef on lorries. ", "McAvoy had numerous such 'little earners' on the go, and was constantly on the lookout for new targets.", "\n\nThe criminal ascendancy of men like McAvoy, Robinson, White and many others besides owed much to the period of transition that Britain was going through during the sixties and early seventies. ", "There weren't so many spivs on the streets to talk to if you wanted a decent piece of meat for tea because the Arthur Daley-type characters had faded out when wartime rationing ended in the mid-1950s. ", "Now people – especially the poor – had to fend for themselves. ", "That forced characters like Mickey McAvoy and his pals to go out on the streets and look for new challenges – and banks were obviously the most lucrative targets.", "\n\n### **THREE**\n\nBy the time they were in their late teens, streetwise, muscular hoods like Mickey McAvoy and Tony White looked a lot older than their age. ", "They'd long since infiltrated the legendary clubs and bars in and around the Old Kent Road in the heart of south-east London, and now they were constantly on the lookout for 'work'.", "\n\nIt was no surprise that, as their circle of acquaintances grew, so did their criminal activities. ", "Crime was endemic. ", "It was part of the fabric of the society they came from. ", "South-east London had always been a law unto itself. ", "Why should things change just because a lot of the families had moved out to the suburbs?", "\n\nIt was little wonder that by this time the area had developed into London's acknowledged epicentre of armed robbery, especially since these youths often stayed at home with their families because they didn't want to end up in crummy bedsits. ", "They'd wait and buy their first property once they had stolen themselves enough cash. ", "The criminal influence could be traced back to a subculture which, in many ways, still exists to this day.", "\n\nThe Great Train Robbery of 1963 played a part in this process because most of the robbers came from south-east London. ", "The heroic status those criminals achieved in the eyes of many was nowhere more evident than on the streets where young hoods like McAvoy and White grew up. ", "Armed robbery had taken on a romantic hue all of its own, and by the early seventies it was positively glamorous. ", "People still saw these local villains as budding Robin Hoods striking blows against the traditional enemy: the police, the filth, the cozzers and all the other derogatory names they were called. ", "Criminals were celebrated and talked about in the youth clubs and pubs because they were seen to be getting one back on the Establishment. ", "When, in 1978, an armed police officer shot two gun-toting robbers dead in Peckham, south-east London, and wounded a third as they tried to snatch £50,000 from a security van, extra police had to be drafted into the area to prevent a riot. ", "Women shouted abuse at police officers from the balconies of their flats; children taunted them in the street; and seven people at a pub frequented by the robbers were arrested on charges ranging from threatening behaviour to assault. ", "South-east London pubs like the Frog and Nightgown, the Connoisseur, the Prince of Wales and the Beehive in Peckham all became notorious haunts for young hoods like McAvoy and White, and a number of pubs were places where guns could be obtained almost over the counter. ", "Many of those very same taverns were now considered virtual no-go areas by the police.", "\n\nBack in those early days only a brave and foolish man would try and muscle in on legendary criminals such as south-east London's most feared family, the Richardsons, who were treated like royalty south of the Thames. ", "During the sixties, the Richardsons ran a hugely profitable empire stretching from south London scrapyards and West End drinking clubs to gold mines in South Africa. ", "Their leader Charlie Richardson was known as the hardest man in south London. ", "Even the Krays were wary about venturing onto his turf.", "\n\nBut when, in the late 1960s, Richardson was eventually brought to court and found guilty of fraud, extortion, assault and grievous bodily harm, a trial during which a judge called him 'a disgrace to society', some of the up-and-coming younger hoods noticed gaps appearing inside the south-east London underworld. ", "As one senior Flying Squad officer from that era explained: 'The whole place opened up. ", "People with strong personalities decided to move in.'", "\n\nAs these new 'faces' began feeling their way through what had once been considered Richardson 'territory', all sorts of new criminal enterprises began springing up. ", "Billy Hayward, one of the most feared gangsters in south-east London, had already secured a place in gangland folklore by engaging in a nightclub battle with the Richardson gang over who should control local protection rackets. ", "One of Hayward's men – Dickie Hart – was shot dead in the 1966 clash, which became known as 'the Battle of Mr Smith's Club'. ", "This event effectively led to the gradual destruction of the Richardsons' criminal empire, since it prompted a public outcry about gangsters on the streets of London, something the Metropolitan Police were forced to crack down on heavily. ", "Despite this extra police pressure, 'Mr Smith's' turned Billy Hayward into an underworld legend.", "\n\nHayward encouraged aspiring villains like Mickey McAvoy, Tony White, Brian Robinson and others to commit crimes on behalf of himself and other older criminals who would then invest the stolen goods and money in small businesses such as minicab companies, launderettes and sometimes even the stock market.", "\n\nInevitably the police began taking a closer look at these emerging villains. ", "Many younger criminals reacted by having running feuds with certain local cozzers, who were forever trying to arrest them for a variety of petty offences. ", "In some cases the police got so desperate to lock them up they would resort to illicit 'fit-ups' to ensure they took some of these faces off the streets.", "\n\nThe old-school villains warned the up-and-coming youngsters that they needed to keep certain policemen on their side. ", "Eventually, they started winning over a few 'friendly coppers' by tipping them off on certain stolen shipments they'd heard about, so they'd then be left to their own devices on other, bigger jobs. ", "It was a classic case of back-scratching. ", "But Mickey McAvoy was no grass, and swore he would never play that game.", "\n\nNevertheless, characters like Mickey McAvoy, Brian Robinson and Tony White had encountered enough 'big names' by this stage to know that if they were going to infiltrate the upper echelons of the south-east London underworld, they'd have to share warm pints of bitter with some hard characters. ", "As legendary former Krays associate Freddie Foreman later explained: 'You'll meet a certain person and you'll get a rapport with them, you'll like them and the best way to know that they're okay is through the belly of that man. ", "You get drunk with them. ", "You have a night out and then you see the way they perform and handle themselves. ", "If he doesn't get soppy and start running off at the mouth and get insulting to women and he can conduct himself with or without a drink, then you know he's a good guy.", "\n\n'Once you've formed a relationship with another criminal he would have your unquestioned loyalty. ", "You got involved with them because they were, in a twisted way, completely trustworthy. ", "You knew they wouldn't turn you over. ", "You had their trust and they had yours.' ", "These were the kind of values that appealed to people like Mickey McAvoy.", "\n\nIt is now clear that control of what the popular newspapers liked to call London's 'underworld' switched to a new kind of villain in the late 1960s. ", "The older underworld heroes who emerged immediately after the Second World War were larger-than-life characters that Fleet Street crime reporters dubbed with names such as the 'King of the Underworld' and the 'King of the Dog Dopers'. ", "But eventually these so-called big names were replaced by professional robbers, organized in carefully selected teams constantly on the lookout for lucrative targets. ", "These characters didn't run clubs in Soho and protection rackets or pimp women. ", "They were real pros who saw the less glamorous but more lucrative robbing of banks and security vans as their chosen career.", "\n\nCrime in the late sixties was heading for epidemic proportions, especially in London. ", "Tens of millions of pounds' worth of stolen property changed hands every week. ", "Violent offences were up by more than ten per cent each year from 1965, and the number of drug convictions was slowly beginning to rise, although it was not yet the profitable business it would eventually become.", "\n\nMany believed that the jailing of London's two most notorious criminal families – the Krays and the Richardsons – in the late sixties would destroy the menace of organized crime. ", "They couldn't have been more wrong. ", "New, better organized crime networks quickly emerged which were often run by outsiders, rather than blood relatives. ", "They were prepared to finance everything from bank robberies to drug deals. ", "Hijacked goods lorries were another particularly popular source of income at the time, with the driver usually being bunged a few bob in advance to ensure a successful raid.", "\n\nIt seemed as if no amount of police activity could stem the tide of crime that was sweeping the nation at this time. ", "The older crime bosses had been happy to hide behind hard-core do-or-die young villains for too long. ", "Now those so-called 'kids' were vowing to run their own operations without any interference from the 'old boys'. ", "These characters resented all authority, even in the shape of older, supposedly wiser villains.", "\n\nMickey McAvoy and many of his contemporaries effortlessly crossed the line from being cheeky Charlies into cold-blooded out-and-out criminals, prepared to end a man's life if they had to. ", "They'd long since lost touch with the law-abiding world and so-called normal behaviour, choosing a life of crime from which nothing was going to deter them.", "\n\nThere was also another side to criminals like McAvoy that made them virtually fearless. ", "They were not afraid of going to prison. ", "In fact they accepted that it would happen sooner or later and if it did, they'd take their 'bird' (sentence) and deal with it. ", "After all, it was part and parcel of their chosen profession.", "\n\nThe late sixties was a time of great unrest in prisons across Britain. ", "In Parkhurst, on the Isle of Wight, a huge riot erupted after inmates began protesting about conditions. ", "For forty terrifying minutes on 24 October 1969, seven members of staff were in fear of their lives as riotcrazed inmates held them captive. ", "One prisoner came within a whisker of slitting the throat of an officer. ", "Nine prisoners – including some legendary south-east London faces – eventually surrendered. ", "Accounts of their daring behaviour spread like wildfire through the pubs and drinking clubs south of the Thames.", "\n\nVillains believed the authorities were trying to break their spirit and stop them planning new crimes with other inmates whenever they were banged up. ", "Most criminals' other main preoccupation inside prison was keeping fit. ", "They exercised furiously, narcissistically pumping up their already vast physiques with punishing regimes that many of them would maintain for the rest of their lives. ", "Every time they did a press-up they saw it as a mark of defiance against the system. ", "They'd never be beaten. ", "Ever.", "\n\nBy the time the early 1970s hit south-east London, it was also filled with sharp-eyed detectives determined to win back the streets after all those gangster-filled years of the sixties, dominated by the Krays and the Richardsons. ", "In 1973 Scotland Yard's Detective Chief Superintendent Albert Wickstead, aka 'The Grey Fox', head of the Yard's Serious Crimes Squad, sanctioned raid after raid, which resulted in 235 officers taking 93 men and one woman into custody. ", "One senior detective told the _Daily Express_ at the time: 'The other side have never been hit so hard.'", "\n\nThe operation had been carried out by Scotland Yard's much-feared Flying Squad, based at Limehouse police station in the middle of the East End. ", "They were single-mindedly trying to take on the south London robbers. ", "It would lead to cat-and-mouse games that would last for at least two decades and be peppered with accusations ranging from bribery to the alleged participation of certain officers in actual robberies.", "\n\nThe Flying Squad had been in existence for so long that the Squad's nickname in rhyming slang, The Sweeney (from Flying Squad/Sweeney Todd, the notorious Fleet Street barber who turned his customers into meat pies), was already regarded as a cliché. ", "The Squad was set up at the end of the First World War, when London experienced a crime wave as large numbers of men recently released from the armed forces emerged onto the streets of the capital, many of them hardened to violence after the carnage on the Western Front.", "\n\nThe Sweeney enjoyed rapid crime-busting success, and in 1920 was provided with two motor tenders, capable of a top speed of 35mph. (", "The speed limit at the time was just 20mph.) ", "Then a _Daily Mail_ journalist referred to them as 'a flying squad of picked detectives' and the name stuck. ", "Their exploits went on to figure in a number of British films, and in the mid-1970s the squad would be immortalized in a TV series, _The Sweeney_ , starring John Thaw and Dennis Waterman.", "\n\nBut the glamorous, hard-nosed image of the Flying Squad left detectives wide open to accusations of corruption, either through turning a blind eye to what was going on in return for a cut of the action or – if the information led to the recovery of stolen property – pocketing some of the reward money that the detective claimed on the informant's behalf.", "\n\nA strategically placed officer could also, for a fee, ensure bail was granted, hold back evidence and details about past convictions from a court, or pass on to a person under investigation details of a case being made against him or warnings about police operations in which he could become compromised.", "\n\nIn the mid-1970s – just as villains like McAvoy, Robinson and White were making a name for themselves – the newly appointed Deputy Assistant Commissioner David Powis ordered a crackdown to stop corrupt policemen from creaming off reward money meant for informants. ", "He insisted on meeting all the informants as part of a vetting process and that, in the future, all payments amounting to more than £500 would be handed over by the DAC himself.", "\n\nThe Flying Squad itself had already come under close scrutiny. ", "In November 1971, the _Sunday People_ revealed that Commander Kenneth Drury, then head of the Flying Squad, had been on holiday in Cyprus where an infamous Soho pornographer – a man with nine convictions to his name, including a spell in Dartmoor prison – had been his host. ", "Drury was served with disciplinary papers and suspended. ", "He immediately resigned rather than face a full disciplinary hearing. ", "But before doing so he wrote an article for the _News of the World_ claiming that a criminal called Jimmy Humphreys had been one of his informants.", "\n\nThe furious pornographer – aware of the effect that such a claim could have on his many contacts – responded a week later through the columns of the same newspaper, saying he had never received any money from Drury and had in fact wined and dined the police chief on a total of fifty-eight occasions during which Humphreys always picked up the bill. ", "At his eventual trial, Flying Squad chief Drury said it was 'absolutely essential' for Flying Squad officers to mix socially with people connected with the criminal fraternity.", "\n\nDrury claimed: 'During my career, I made a point of mixing with criminals. ", "It is essential that you do so. ", "You cannot expect them to give information about crimes if you ostracize them except when you want information from them.' ", "The problem with the Drury philosophy was that it left detectives wide open to accusations of corruption. ", "Drury himself was convicted on five counts of corruption and jailed for eight years. ", "Not surprisingly, the Flying Squad was then completely overhauled. ", "Instead of dealing with serious crimes in general, they would in future tackle armed robberies only, with the squad's officers forming a central robbery squad run from a co-ordinating unit at Scotland Yard and four smaller groups strategically placed around London. ", "The message was loud and clear to blaggers: 'We are out to get you.'", "\n\nBut the biggest problem – as far as the villains were concerned – were the so-called 'supergrasses', who'd become the key to police success. ", "These characters were a cut above the usual 'grasses' and 'snouts' who helped the police with their inquiries in exchange for a free pint or a fiver. ", "The stakes were much higher, and often that meant immunity from prosecution in exchange for the inside track on major robberies. ", "It was a breakthrough for the police but, inevitably, it came at a cost.", "\n\nHard-hitting detectives from the Flying Squad were actively persuading some members of close-knit gangs to inform on robberies in advance. ", "Perhaps the most notorious of all supergrass cases was the controversial 'chit-to-freedom' that bank robber Bertie Smalls negotiated from Britain's law-keepers. ", "Characters like Smalls played their cards close to their chest. ", "His chips were times, places, hauls and Christian names. ", "Smalls and other grasses believed that what they had to offer would be enough to win the most important gamble of their lives – freedom. ", "Smalls became one of the most hated men in the London underworld as a result of 'joining the other side'. ", "Many villains shared the opinion of one of their own number who said he'd 'gladly kill that bastard for nothing. ", "He's vermin and should be wiped off the face of this earth.'", "\n\nIn May 1974, Smalls helped convict seven men at the Old Bailey of robbing the Barclays Bank at Ilford of £237,736 and Barclays' Wembley branch of £138,111. ", "After that, he was guarded by twelve armed detectives at a secret hideout twenty-four hours a day, knowing full well that a £60,000 contract had been put on his head. ", "Back in south-east London, Mickey McAvoy and others were outraged. '", "This ain't about money. ", "It's about respect and not grassin' up people. ", "It's the ultimate sin, ain't it?' ", "he told one associate.", "\n\nThe Flying Squad regularly hauled in up–and-coming young villains like McAvoy, suspecting that they were connected to particular crimes, but with no way of actually proving it. ", "McAvoy and some of his contemporaries were even approached by crime bosses to help frame high-ranking police officers, just before the police were due to give evidence in major trials. ", "The aim was to smear their names to such an extent that their evidence would be seriously questioned in court. ", "But McAvoy didn't fancy that sort of work. ", "He still much preferred robberies to framing 'the filth'. ", "He knew that was asking for trouble. ", "McAvoy had big plans to turn himself into a major-league criminal carrying out only the biggest, most lucrative robberies. ", "He already had a reputation to maintain, and he certainly wasn't prepared to start grassing up other villains to the cozzers. ", "But some of his criminal contemporaries had other ideas. ", "They believed that swapping certain information with the enemy might actually give them more space to develop their own criminal enterprises.", "\n\nAnd in the middle of this virtual war between the cops and the robbers, security van hold-ups and bank robberies were getting a lot harder to pull off. ", "Guards equipped with batons and truncheons were now being used much more regularly to escort large quantities of cash, which meant the robbers were going to have to step up the levels of threats and maybe resort more frequently to violence if they were to continue robbing with abandon on the streets of London.", "\n\n### **FOUR**\n\nThe seventies saw the ethnic make-up of the old London criminal manors completely transformed by the arrival of hundreds of thousands of immigrants, particularly from Asia. ", "Mickey McAvoy didn't really like what he saw. ", "He believed in the good old-fashioned ethos that England was for the English, conveniently forgetting that his family were originally from Ireland. ", "The Mister Patels running the street-corner stores in his home manor of Camberwell and the West Indian bus conductors were a source of constant irritation to McAvoy and his mates. ", "Overt racism was rife, and there were few who would refrain from openly slagging off other races.", "\n\nThere had also been other, even bigger changes afoot in south and east London. ", "Much of the capital was gradually being gentrified. ", "Some areas were even being colonized by office blocks. ", "The old faces really had faded away; the Krays and the Richardsons had been inside prison for a while and many of their old associates had fled to Spain's Costa del Sol, safe in the knowledge that they couldn't be extradited back to the UK. ", "The shadowy, secretive figures who'd taken over the underworld were not interested in flashy cars or hobnobbing with the rich and famous. ", "They were ambitious, greedy and extremely cold-blooded, and they believed that keeping a low profile would guarantee them a much longer reign in the underworld than the loud-mouthed crime families of old. ", "Many of these deadly characters were even building property empires on a bed of 'black' money by financing major crimes and then pouring their cash into major London building developments. ", "These would eventually include the Docklands area near Wapping, later to be turned into the financial centre of the capital.", "\n\nBy this time Mickey McAvoy and his mates Brian Robinson and Tony White had pulled together a classy team of robbers more than capable of stealing from the supposedly robber-proof security vans that were being built to withstand armed raiders. ", "These vehicles were factory-tested with pick axes and cutters. ", "Even shots were fired at them. ", "The idea was to turn the vans into fortresses on wheels, complete with a supposedly sophisticated alarm system. ", "A whole industry had developed around finding the means to stop robbers getting their hands on the money while it was on the move. ", "Security firms even copied the military by having their staff wear uniforms.", "\n\nSo it was no surprise that by the mid-seventies blaggers began shooting at guards much more frequently. ", "Most villains would swear blind that they never intended to injure anyone but simply used the 'fear factor' of firing a gun to scare their victims into surrendering their money.", "\n\nHowever the police – especially the Flying Squad – saw this as the villains openly stepping up the war on the streets of London. ", "They became obsessed with catching robbers preying on security vans, which meant they spent much of their time chasing their tails. ", "On payday – which at this time was on Thursdays – many Flying Squad detectives were simply sent onto the streets of London to look out for robbers. ", "The reality was that the police simply weren't prepared or equipped for the latest surge in the crime of robbery. ", "It was a perfect time for young robbers like McAvoy and his associates to thrive. ", "The police were stretched at the best of times and had always relied on solving crimes after they were committed rather than preventing them. ", "It was an uphill struggle that inevitably led to a closer relationship between criminals and the police, something which in itself would lead to even bigger problems later with police corruption and bribery.", "\n\nIn the summer of 1976, McAvoy, Tony White and Brian Robinson met up with a couple of well-respected, older armed robbers in a pub in south-east London. '", "That's when Mickey hit the big time,' explained one old south London face. '", "It's all about a man who knows a man who knows a man.' ", "The three hard men were asked outright if they were interested in being part of a team of robbers looking to expand beyond London and hit the lucrative south-east England market. ", "It sounded more like a sales job than a recruitment pitch for a gang of armed blaggers.", "\n\nMcAvoy, Robinson and White saw this as a definite step up the criminal ladder. ", "The two old-timer financiers in the pub were offering to back McAvoy and his associates with cash in exchange for a percentage of the takings from every robbery. ", "The gang's total haul would eventually exceed £2m, making them at that time one of the most successful teams of robbers ever seen in the UK.", "\n\nThe robbers were soon operating nationwide: from London to Essex, across to the Midlands and as far north as Dundee in Scotland. ", "McAvoy wasn't the main brains behind the gang, but he was a highly influential team member. ", "In fact there was no overall 'Mr Big' in charge as such, because a hard-core committee of criminal faces financed and selected the jobs to be done, checked details of layout and security, and then suggested the right men for the job. ", "Brian Robinson – older than McAvoy and White – eventually became the self-proclaimed 'Colonel' – the man who'd pull each job together. ", "Robinson was well built, with a round, deadpan face that gave little away. ", "He'd served in the army before returning to the mean streets of south London. ", "The former painter and decorator was so proficient at organization that police later said he could have become a millionaire businessman if he'd used his talents more honestly. ", "One detective recalled: 'Brian was a modest, unpretentious fellow who kept a really low profile. ", "There was no flash car or flash house. ", "God knows what he did with his money but we never found any of it.'", "\n\nOther robbers came in and out of the gang as it sparked terror and stole fortunes up and down the country, but McAvoy, Robinson and White were at the core of most raids. ", "McAvoy and the other two often suggested new targets they'd seen on their travels. ", "The team initially had one golden rule: try to pick the most isolated spot for the actual robbery, whether it was a moving target – a van – or at a factory. '", "The quieter the better because then we knew the cozzers would take a lot longer getting there,' one team member later explained.", "\n\nFast and efficient getaway vehicles were a vital tool for any big robbery. ", "The gang would go on to steal literally hundreds of them during their reign. ", "A well-stocked arsenal of weapons was also essential. ", "There was a jester-like range of disguises, including ginger wigs, coloured spectacles, false beards and large moustaches. ", "Some robbers were even prepared to dress up as women to confuse potential witnesses.", "\n\nMcAvoy and the gang's other strong-arm men were expected not to hesitate to fire their weapons – usually revolvers and shotguns – although the intention was to warn people off rather than actually do them harm. ", "They used sledge-hammers and iron bars to shatter windscreens. ", "The gang's weapons were initially obtained by breaking into gun shops. ", "But there were a number of shady criminal gun dealers emerging in the underworld at this time, including one notorious character who, even though he had once been a policeman, would eventually become their favourite 'merchant of death'.", "\n\nThe gang often relied on bent security guards, who'd tip them the nod when a van was carrying a particularly large amount of money. ", "If security guards didn't respond well to approaches from the gang then sometimes one of them would pay a little visit to the guard's family as a 'friendly reminder' that they were not to be crossed.", "\n\nMeanwhile the Flying Squad's message to the robbers of south London was clear: You'll be shot dead if you carry arms. ", "To some criminals at that time, the police had become judge and executioner all rolled into one. ", "But all it really did was stiffen their resolve to beat the police _by whatever means_.", "\n\nIn the late 1970s, a number of south-east London professional villains known to McAvoy and Robinson joined a Freemasons' lodge in west London following an introduction from a well-known Kent criminal who had big 'connections' inside the Freemasons. ", "According to one police source inside this shadowy organization, one villain's membership was actually proposed and seconded by a serving police officer.", "\n\nThe Masons' lodge they joined included members who were police and dealers in gold bullion and other precious metals. ", "The criminals saw it as a perfect opportunity to ease their way into an important group of new contacts. ", "They began smoothing their passage in by making some substantial donations to several charities.", "\n\nMembership of a Freemasons' lodge was a natural step for any ambitious south-east London criminal keen to infiltrate a circle of acquaintances that crossed all social divides and included several judges and magistrates. ", "The Freemasons are a controversial society, not least because of the vast number of policemen who are members. ", "Though many look upon the Masons as a mysterious and secretive organization, others claim they are nothing more than a very discreet gentlemen's club with tens of thousands of members across Britain. ", "How much power and influence they wield amongst this country's politicians and lawmakers will probably never be known.", "\n\nBut there was absolutely no doubt that it was the presence of senior policemen in the Masons that fuelled the villains' interest in joining. ", "As one police officer later explained: 'These criminals cynically manoeuvred themselves into the Masons as if it was the right pub for them to be seen at.' ", "Some police officer members of the west London lodge were outraged by the presence of known criminals in their ranks. ", "But others saw it as an ideal opportunity to pick up new informants.", "\n\nMcAvoy and others encouraged their criminal associates to be Masons because they saw membership as further evidence of their status within the London underworld. ", "It could also have more practical benefits. ", "On a number of occasions, criminals wriggled out of an arrest for handling stolen goods thanks to their membership of the Masons. ", "One police source recalled the day he arrested one notorious south-east London villain who later played a big role in laundering the Brink's-Mat gold.", "\n\n'He's on the square,' a Mason detective told the arresting officer at a Kent police station.", "\n\n'So?'", "\n\n'Can't you help out?'", "\n\n'Where are you coming from on this?'", "\n\n'Oh, it's like that is it?'", "\n\n'Too bloody right it is.'", "\n\nA number of Freemason police officers began happily lying and vouching for the villains who were members because they genuinely believed that to a certain degree membership put these characters above the law.", "\n\nAnd of course all of the villains in the Masons swiftly mastered the art of the Freemasons' handshake. ", "This involved putting the thumb between the first and second finger and pressing the knuckle on the middle finger, which would indicate that the person in question was on the third degree – Mason-speak for being a member.", "\n\nWhenever these criminals met a policeman they thought was a Mason they'd make a point of speaking to him very carefully to ascertain his membership. ", "The conversation would have bizarre overtones:\n\n'You ever been taught to be cautious?'", "\n\n'Yeah, well my mother always taught me to look left and right before I cross the road.'", "\n\nIf the person they were speaking to said yes then that would be followed up with passwords.", "\n\n'Are you a regular attender?'", "\n\n'Yeah.'", "\n\nThe moment someone said that back they knew they'd connected with a fellow Mason.", "\n\n### **FIVE**\n\nMickey McAvoy, Brian Robinson and Tony White – not to mention dozens of other south-east London blaggers – clearly considered themselves highly professional criminals. ", "Robberies on banks and armoured vans carrying wages were still booming during the late seventies, despite the latest technology, which was supposed to make it harder for the villains to strike. ", "The criminals even started using new secret weapons all of their own. ", "Take the argon arc gun, a high-powered electric torch that could cut its way through metal. ", "The guns weren't available in shops, and could only be ordered, which should have made it easier for the police to trace them back to their owners. ", "But McAvoy and his associates eventually found a factory in west London that stored the argon guns and broke in and stole six of them.", "\n\nOne typical job was the audacious 1977 hijacking of an armoured van on the streets of Croydon after inside information was provided to the gang, making them aware that at least £100,000 in cash was up for grabs. ", "The gang pulled in front of the armoured van before turning around to ram it head-on. ", "The terrified guards flung open the doors and were immediately hauled out of the van and coshed by the group of masked men, although one of the gang later insisted they were 'only glancing blows, designed to mark, not injure them'.", "\n\nOne robber jumped in the back of the van and ripped open the wages compartment before the blaggers formed a chain and began slinging boxes from hand to hand into the boot of their getaway car. ", "Within a few minutes they'd quit the scene and swapped their first car for another one half a mile away. ", "It was the sort of job that got the south London underworld sitting up and taking notice of McAvoy, Robinson and their brash young band of robbers.", "\n\nThere were at least two or three substantial robberies every week in London and south-east England at this time. ", "One of the most legendary was a classic blagging in the Blackwall Tunnel on 29 September 1977. ", "It caught the eye of just about every south London villain at that time.", "\n\nThis particular job was a huge boost to a legendary southeast London hard man called Jimmy Moody, who even went so far as to dress as a policeman to hold back the traffic, which brought this reaction from a lawyer who later defended him in court: 'Those were the days when an awful lot of policemen came from the same background as the villains they were chasing. ", "It was hard to tell the Flying Squad guy and the armed robber apart, and Jim made a very plausible copper!' ", "There were even rumours a detective had provided the police uniforms for the job. ", "Other officers were later said to have been given 'pay-offs' from the takings of the Blackwall Tunnel job to ensure the robbers weren't apprehended.", "\n\nIn the Blackwall Tunnel raid 'PC' Moody created a gap in the traffic and forced a security van to stop just past the bend about two-thirds of the way into the tunnel. ", "At the same time, two of the robbers staged a crash behind them to block the tunnel just before the bend. ", "The gang used three stolen cars and a stolen van to surround the security wagon. ", "The team had done their homework because once inside the tunnel, the security van's radio was useless.", "\n\n'PC' Moody then leapt out of his car and 'confiscated' the keys of several motorists behind them in the tunnel at gunpoint so they couldn't drive off and raise the alarm.", "\n\nIn the pubs and clubs of south-east London, the Black-wall Tunnel hijack went down as a brilliantly executed job. ", "It helped popularize a new four-letter word, which summed it all up – the _buzz_. ", "As Moody's co-robber Bernie Khan later explained: 'The buzz on that job was better than any drugs. ", "All that adrenalin pumping through you was fuckin' incredible and the feelin' of elation once you'd snatched that cash was out of this world.' ", "Moody was eventually arrested for his part in the crime as well as his involvement in other raids. ", "In 1979 he was sent on remand to Brixton prison to await trial for armed robbery. ", "He escaped before the trial was heard, only to be murdered by a hit man while he was on the run.", "\n\nNevertheless, McAvoy, Robinson, White and others had great admiration for jobs like the Blackwall Tunnel robbery. ", "All three actively sought bigger and more lucrative targets. ", "Groups of heavy-looking men regularly called round for meetings with McAvoy at the house his family had moved to in Dulwich, south-east London. ", "He told his family the visitors were just part of a betting syndicate. ", "McAvoy's loyalty to his 'associates' was almost as strong as his devotion to his wife and children.", "\n\nWhen keep-fit fanatic McAvoy turned his garden shed into a mini-gym complete with weights, chest expanders and a punch bag so he could be in prime condition for jobs, his wife would only jokingly ask him: 'Going in for the next Olympics?'", "\n\n'No, just keeping fit for my job,' would come the response. ", "But it was a different job from the one his family no doubt wished he had. ", "McAvoy's obsession with keeping fit had started in his teens thanks to a genuine belief that a healthy body led to a healthy, clear mind. ", "He believed his fitness meant he was much less likely to make any costly mistakes when he was out robbing and thieving.", "\n\nThe two sides of Mickey McAvoy's character were already clearly defined. ", "If you saw him out with his young wife Kathy and two young children on a sunny Sunday afternoon in south-east London, you'd never guess he was a ruthless criminal already responsible for many robberies across the capital. ", "Often when he got home after a job Kathy would be watching a TV news item about a robbery. ", "But if she carefully asked McAvoy about it, his reply would always be the same: 'Good luck to 'em.'", "\n\nThere were rules in south London and one of the most important ones was to never directly admit your crimes to anyone, not even your own wife and family. ", "Wives were often infuriated when their husbands so blatantly ignored their attempts to find out more about their husbands' activities. ", "That's when villains like Mickey McAvoy would usually take a deep breath and reply along the lines of: 'Darlin', don't worry. ", "I won't let you down. ", "Just don't ask questions.'", "\n\nLike so many other south London villains before him, McAvoy seemed to thrive on his 'two lives'. ", "As one old friend later explained: 'Mickey was essentially a loner. ", "He rarely got too close to people. ", "It's a funny thing to say but he was also a very good family man.' ", "McAvoy thoroughly enjoyed the security of a stable home to return to after days and nights of partying and thieving. ", "He knew he couldn't survive in the real, 'bad' world if he didn't have a bit of the 'good' world as well.", "\n\nMickey McAvoy managed to be an even-tempered character _most_ of the time. ", "But when he did lose his temper the sparks would really fly and that was why he was known as 'Mad Mickey' to so many criminal associates by this time. ", "McAvoy revelled in this nickname because it was like a warning sign to other criminals not to cross him under any circumstances. ", "Wherever McAvoy went, there was always a hint of the 'other side' in his expression. ", "Said one south London villain: 'McAvoy had this scowl which was permanently etched across his face. ", "He already had a lot of enemies so he never fully switched off.'", "\n\nNonetheless, many south London villains were already impressed by McAvoy: 'He'd always have money in his pocket but he wasn't flash. ", "Mickey didn't trust no one, and that's the best way to be in this business. ", "I think the only person he ever truly trusted was himself. ", "You see, Mickey was already well-known but he wasn't really _known_ by anyone, if you see what I mean.'", "\n\nBrian Robinson's reputation was as one of those classic villains renowned as 'a man with a plan'. ", "One of his oldest south London friends explained: 'Brian loved the planning stages of any job. ", "He mapped things out very carefully and often came up with something a bit different that would catch people off guard.'", "\n\nRobinson was respected by all who came into contact with him. ", "He was a professional villain but he also – like McAvoy – had a normal home life with a wife and children whom he clearly valued more than anything, apart from his work. ", "One old associate explained: 'Brian kept things low-key but he was tenacious and hard-working. ", "He saw blagging as his profession and he was quietly proud of his skills, although he never ever blew his own trumpet.'", "\n\nIt was during the early planning stages of yet another new job that McAvoy met a man known as 'The Fox' at a West End nightclub. ", "The Fox – who would eventually play a pivotal role in the life of so many of the Brink's-Mat robbers – had a resonant, gravelly voice with a very slight cockney accent. ", "He told McAvoy he'd easily be able to find some extra financial backing for any 'special' jobs, which might potentially net them a fortune.", "\n\nThe Fox had once been a top blagger himself, as well as being a renowned fixer for criminals as far back as the late 1940s. ", "There were even rumours that The Fox had been involved in helping finance the Great Train Robbery nearly twenty years earlier. ", "He said he was in close touch with a bunch of other big-time villains, all of whom were keen to invest some cash in the right type of job.", "\n\nMcAvoy and his older associate Brian Robinson knew perfectly well that in order to move up the ladder of southeast London villainy they needed to hit a really big target, one that would cement their criminal infamy and maybe even assure them the sort of riches that might mean an early and happy retirement.", "\n\nMcAvoy's obsessive quest for cash even led to him getting involved in a sideline that many other villains back then would have frowned upon: he was arrested after his brother and another man were found with a quarter of a million pounds' worth of cocaine at Heathrow airport. ", "McAvoy had allegedly wanted to sell on the cocaine to help finance bigger and more lucrative robberies, or at least that's what he later claimed to associates.", "\n\nA search of various premises by detectives following the Heathrow arrest also uncovered a large number of shotguns and pistols, as well as two chainsaws. ", "McAvoy was not just an armed robber, police suspected, but possibly even an underworld armourer as well. ", "McAvoy naturally later claimed he was 'fitted up' by the cozzers, but whatever the truth of the matter, he'd now marked himself out as a player in the first division of robbers, which meant he would be given constant attention by his sworn enemy – The Sweeney.", "\n\nBy a strange twist of fate, McAvoy's alleged involvement with the drugs haul at Heathrow brought him into contact with a couple of characters who had extensive knowledge of London's premier airport and the industrial estates that surrounded it. ", "McAvoy was told in no uncertain terms that they represented lucrative targets since many of the warehouses were used to store valuable goods between flights in and out of Heathrow.", "\n\nMcAvoy mentioned this to his old mate Brian Robinson. ", "This information reminded Robinson that his irritating brother-in-law Tony Black worked at the Brink's-Mat warehouse near Heathrow. ", "Brink's-Mat were one of the best-known security companies in the world at the time so it was a safe bet that some very interesting cargoes were stored on their premises. ", "Robinson approached Tony Black very casually, and his sister's husband immediately began talking openly about the vast amounts of gold and cash and travellers' cheques that were frequently stored in the warehouse overnight between flights in and out of the United States.", "\n\nRobinson knew that Black was hard up because he was a gambling addict, and there was no way his relatively low security guard's salary would cover his debts. ", "That made Black vulnerable, or in the words of one detective, 'a sitting fuckin' duck'.", "\n\nThe Brink's-Mat warehouse looked as if it had the potential to be the biggest target of Robinson and McAvoy's criminal careers. ", "So for many weeks the team used an empty building near the warehouse to allow them to watch the movements of vans in and out of the Brink's-Mat building. ", "They hadn't yet told Black of their robbery plans because they didn't want him to know they were serious until it was too late for him to change his mind about being involved in the heist.", "\n\nDay after day McAvoy and his associates built up a second-by-second work schedule for the Brink's-Mat guards as they peered through the windows of the abandoned warehouse. ", "It was crucial to know the exact movements of the Brink's-Mat staff so the robbers could work out the point in the day when the warehouse, stuffed with cash and gold, was most vulnerable.", "\n\nMcAvoy, Robinson and their main other partner in crime, Tony White, even tried to finance this complex, risky job themselves by carrying out the robbery of a security van which they believed would be carrying a quarter of a million pounds in cash. ", "They didn't want to share the spoils from this new 'Big Job' with people like The Fox and his band of armchair villains.", "\n\nBut after the relatively simple hold-up, McAvoy and the gang were bitterly disappointed to discovery they'd only managed to steal about £30,000 in total. ", "Each member of the team was given a few thousand pounds to tide him over until the next big job, while the remaining money was kept in reserve to put towards the raid on the Brink's-Mat warehouse.", "\n\nMcAvoy, Robinson and his other fellow robbers were just as addicted to the 'buzz' of committing robberies as their underworld heroes from the Chainsaw Gang, who caused havoc by robbing several security vans during the 1970s and early 1980s. ", "They earned their nickname because they used a chainsaw to open the back of security vans, almost as easily as if they'd used a tin opener on a can of baked beans. ", "They'd long since proved beyond doubt they had the bottle to carry out spectacular jobs. ", "The only disappointment was the money, which often fell hundreds of thousands of pounds short of expectation. ", "Nevertheless their reputations in south London remained intact, since it was acknowledged that they had no control over how much money was on offer. ", "It was simply a question of bad luck.", "\n\nMcAvoy's underworld associates even seemed to believe the rumour that he only got involved in the earlier cocaine deal with his brother because he was planning to use the profits to finance more robberies. ", "But no one on the fringe of the south London underworld knew precisely where or when the Big Job was going to be carried out.", "\n\nMeanwhile the police stepped up the pressure by knocking on McAvoy's front door in south-east London, inquiring about his movements on the day of certain robberies. ", "McAvoy was always so confident they had no evidence that he'd agree to go down to police stations to 'try and clear up any misunderstandings'. ", "A few times he was even asked to appear in identity parades but he was never once picked out as a serious suspect. ", "McAvoy later recalled that many ID parades were comical. '", "They [the police] were just testin' the water and they'd try and make me wear something different from the others in the lineup just so they knew I'd be more likely to be picked out. ", "Talk about fuckin' bent.'", "\n\nHardened south London villains like McAvoy and his gang never made any statements to the police, even after they were charged. ", "They'd later insist that 'once a few bob had been thrown in the right direction', they'd usually get bail, despite the serious nature of their alleged crimes.", "\n\nIn the middle of all this police 'harassment' as they liked to call it, McAvoy and Robinson were carefully and expertly planning the Big Job – the raid on the Brink's-Mat warehouse near Heathrow airport.", "\n\nIn the aftermath of any raid that didn't go completely according to plan McAvoy would become obsessed by the idea that someone inside his gang must have been a police informant – a grass. ", "McAvoy told another gang member that if he ever found out one of his team members was a grass there was only one way to deal with him. '", "I'd have him fuckin' done.' ", "And Mad Mickey meant it. ", "Like so many of his fellow south London villains, he remained convinced informants were 'Judases who should have been drowned at birth'.", "\n\nAside from the chance to make money and glory, another reason why McAvoy became so desperate to pull off the Big Job at the Brink's-Mat warehouse at Heathrow was that he and his criminal associates knew that van hijacks and going across the pavement (bank robberies) were going to get too dangerous one day. ", "Drugs looked like the safer option when it came to earning fortunes from crime.", "\n\nEventually the time came for Brian Robinson to fully reveal to his brother-in-law Tony Black their intention to rob Black's employers at Brink's-Mat. ", "Black, still desperately in debt, jumped at the chance to help the gang in exchange for a share of the proceeds.", "\n\nThe gang had thoroughly established the movements of the Brink's-Mat staff through Black, as well as their careful surveillance operation. ", "Initially McAvoy had found it hard to believe that such a small, relatively lightly guarded warehouse could hold such extraordinary amounts of cash and gold overnight. ", "Back in those days, most robbers still presumed banks were the places really worth raiding. ", "Now the Big Job looked like a dead cert.", "\n\nHowever McAvoy and Robinson had little option but to accept that they needed some serious financial backing after the disastrously low amount of cash obtained from the previous robbery. ", "McAvoy got in contact with the same character he'd met earlier – The Fox – who'd pledged upfront cash to the gang if they ever went after any really big targets. ", "There would have to be some serious investment of cash in certain items before they would be fully ready to pull off the Brink's-Mat raid.", "\n\nThe Fox introduced McAvoy and Robinson to a family of north London criminals called the Adamses (known in the underworld as 'the A-Team'). ", "They had been quietly but firmly asserting themselves as the capital's most powerful clan of villains since the Krays and the Richardsons. ", "The Fox insisted that the A-Team were London's most proficient money launderers and as such they would be a vital cog in the team's machinery when it came to dispersing all the cash immediately after the robbery.", "\n\nThe A-Team were headed by Terry Adams and his brothers Sean (known as Tommy) and Patrick (Patsy). ", "They were the three eldest of eleven children who'd been brought up as Irish Catholics in a north London council flat. ", "They'd first broken through in the underworld by using their fists to extort money from market stallholders. ", "This had been followed by a meteoric rise to power in the late 1970s and early 1980s thanks to drug trafficking, extortion, hijackings, security fraud and large-scale blaggings. ", "Based in Clerkenwell, north London, the Adams family managed to evade prosecution for years by running their syndicate at arm's length. ", "Their reputation for violence meant that detectives had long since labelled them as being 'far worse than the Krays'.", "\n\nMeanwhile other 'professionals' in south London made themselves available to McAvoy and Robinson as word of the Big Job spread through the upper echelons of the underworld. ", "Amongst others 'circling' were three members of the legendary 1963 Great Train Robbery gang, who were keen to invest some of their money in this new opportunity. ", "Two of them even pressed to be on the actual robbery team because of their previous 'unique' experience.", "\n\nOne of them was Charlie Wilson, who had long been credited with being one of the leaders of the GTR. ", "He contacted McAvoy but was snubbed; McAvoy, to ensure that no one tipped off the police about the job in advance, told him that the job had been cancelled. ", "Too many of McAvoy's criminal associates had been grassed up in recent times, and McAvoy believed that the fewer people who knew that the job was still going ahead the better. ", "He could just about live with the rumours of a Big Job, but if the date of it ever leaked out, the job would be doomed.", "\n\nMcAvoy and Robinson both believed that if they let any big names like the GTR duo join the raid then they would lose control of the job, and the money would end up in the hands of villains who weren't even a proper part of his gang.", "\n\nIn the middle of all this, a legendary face called George 'Georgie Boy' Francis was forging a close relationship with McAvoy and Robinson. ", "Embedded deep within the under-world, with a string of convictions for theft and violence, Francis had risen to criminal prominence in the late 1970s when he became part of a group of armed robbers who decided to move into drug trafficking.", "\n\nSpecially converted containers were sent to a shoe factory in Pakistan, where millions of pounds' worth of cannabis were hidden by legitimate goods and shipped back to the UK. ", "The first four runs went like clockwork. ", "Francis and other members of the gang began living the good life – buying cars, jewellery and making a show of lighting their cigars with £20 notes in south London pubs.", "\n\nBut when the fifth drug consignment arrived, customs officers were watching. ", "Lennie 'Teddy Bear' Watkins, driving a lorry filled with £2.5m of cannabis, spotted the surveillance team, and as soon as he realized they'd been seen, customs investigator Peter Bennett moved in to make the arrest. ", "Watkins shot Bennett dead. ", "Watkins was sentenced to life, and the rest of the gang were put on trial. ", "Underworld sources claim that Francis talked to associates about nobbling the jury to ensure he was not convicted. ", "As it happened, the first jury failed to reach a verdict. ", "This resulted in a retrial that led to his acquittal. ", "While Francis walked free, several other members of the gang, faced with the same evidence, had pleaded guilty.", "\n\nWhen McAvoy heard about the A-Team's role in helping Francis escape justice, it was another impressive 'calling card' on behalf of the north London crime family, even if he still viewed them with great suspicion because they were from the wrong side of the Thames. ", "Francis was not only up for the Big Job but he also reiterated what McAvoy had already been told – that the Adams family from north London would be the ideal people to launder the proceeds.", "\n\nAnother character who came on the scene at this stage was one of Mickey McAvoy's oldest mates, south-east London robber Brian Perry. ", "Perry had been recruited to be part of the Brink's-Mat robbery team itself alongside Robinson, McAvoy and Tony White. ", "Perry would also eventually play a pivotal role in organizing the distribution of the proceeds afterwards. ", "Perry, in his late thirties, was a classic south-east London villain with a successful minicab business, which was actually a money-laundering siphon for the proceeds of numerous crimes.", "\n\nThe robbery team would also be joined by John 'Little Legs' Lloyd. ", "He was an old-school villain from across the river in the East End but he'd moved to Kent with his wife Jeanie and had long been accepted by the south-east London criminal fraternity as one of their own. ", "Lloyd was renowned as a hard-nosed blagger and a successful one at that. ", "His name had been linked by the police to many of the most outrageous robberies of the 1970s. ", "He was just the sort of pro that McAvoy and Robinson needed on their team for the Brink's-Mat job.", "\n\nThe A-Team, led by the debonair Terry Adams, introduced main players McAvoy and Robinson to a character called Brian 'The Milkman' Wright. ", "He wasn't going to get his hands dirty with any actual robbery, but he was a renowned fixer with superb contacts. ", "Wright and the Adams had known each other since childhood as their parents were Irish immigrants from north London.", "\n\nHis background presented a major problem for McAvoy and Robinson. ", "They didn't fully trust anyone from outside their own manor, but they had to get over their prejudices after being read the riot act by old-time financier The Fox, who believed the job could turn out to be bigger than anyone expected. ", "He wanted the sort of expertise that would ensure no last-minute hitches, and if this meant calling in help from north of the river, then so be it.", "\n\nThe A-Team brought along one very extrovert character to the Big Job who seemed to flit effortlessly back and forth across the Thames without even raising an eyebrow. ", "Mickey Green was nicknamed 'The Pimpernel' because of his extraordinary ability to avoid arrest. ", "Green had first cut his criminal teeth as a robber in a notorious gang from Wembley, north-west London, in the late 1960s. ", "But by the early 1980s he'd spread his wings far and wide and was well known to the underworlds of both London and southern Spain, as well as southern Ireland. ", "He was an expert at laundering large amounts of stolen cash and knew all the tricks of the trade. ", "Over the coming years he'd have a significant part to play in the Brink's-Mat story.", "\n\nThe Big Job that McAvoy and Robinson had dreamed of carrying out since they began thieving as teenagers was in danger of being taken over by a bunch of other faces from the London underworld before the planning for it had even been completed. ", "McAvoy was struggling to retain control and leadership, and it made him short-tempered at just the time when he knew it was crucial to remain patient and wait for the perfect moment to raid the Brink's-Mat warehouse. ", "Inside man Tony Black nervously told his brother-in-law Brian Robinson and Mickey McAvoy that he'd overheard mention of a 'fuckin' huge' quantity of money _and_ gold that was imminently going to be stored overnight between flights to and from the United States.", "\n\nBlack revealed that Brink's-Mat had stepped up security at the warehouse in recent weeks, presumably because of the larger than usual quantities of cash and gold that were coming in. ", "He told Robinson about all the latest alarm and security systems in place in the building, and even drew a diagram of the entrances, corridors and connecting doors. ", "Robinson pressurized Black into making sure that he would inform them when an extra-large consignment was on its way to the warehouse.", "\n\nEarly on the evening of Friday, 25 November 1983, Tony Black rang Robinson from a phone box on his way home from work to say that a big shipment had just been delivered but it was only going to be in the warehouse until the following lunchtime.", "\n\nAt last the Big Job was on.", "\n\n### **SIX**\n\n#### **HOUNSLOW, WEST LONDON, 6.25 a.m., 26 NOVEMBER 1983**\n\nIf it wasn't for the CCTV cameras and spotlights mounted on the walls of Unit 7, a steel-and-brick-built box on a scruffy trading estate near Heathrow airport, it's unlikely the building would have caught the attention of even the most curious of onlookers. ", "But when the huge orange-and-white armoured shutter doors rolled open, its real purpose was revealed. ", "Chunky dark-blue Brink's-Mat vans with barred and tinted black windows came and went from the well-protected loading-bay day and night. ", "Unit 7 wasn't Fort Knox or the Bank of England, but it did hold one of Britain's biggest safes, used to store currency, precious metals and other high-value consignments en route for Heathrow airport.", "\n\nIt was still pitch black and icy cold that Saturday morning as the early shift of workers waited outside kicking their heels and blowing clouds of condensation while waiting for the 6.30 a.m. 'opening time'. ", "This was when the automatic timer would neutralize the sophisticated alarm system, allowing the keys to be inserted without triggering the flashing lights, bells and alarms that were linked to the local police station and other security companies.", "\n\nSecurity guard Richard Holliday had been the first to arrive in his beige Ford Consul. ", "He was quickly followed by another guard, Ron Clarke, on his moped. ", "Guards Peter Bentley and Robin Riseley pulled up moments later, and the four men mumbled greetings to one another. ", "The fifth guard rostered for duty was Brian Robinson's brother-in-law, Tony Black. ", "Typically, he was late, and still hadn't arrived when supervisor Michael Scouse, 37, drove up. ", "Scouse, a former special constable, was the longest-serving member of staff on duty that day, with twelve years on the Brink's-Mat payroll. ", "His seniority singled him out that morning as the 'keyman'.", "\n\nScouse entered the unit alone and locked the door behind him, leaving the crew outside while he went to a downstairs office and collected the key from the safe. ", "This switched off the alarm system covering the perimeter walls and windows. ", "He then went back to the main door to allow the rest of the crew in. ", "The outside door was relocked from the inside before Scouse reactivated the alarm system, climbed the stairs and walked through to the radio-control room to look through the paperwork for the day's duties. ", "Meanwhile, the other four guards went into the rest room to take off their coats. ", "Holliday paused briefly to switch on the radio-room aerials and the surveillance cameras before joining his mates. ", "Just then the doorbell rang. ", "The guards heard Scouse go down-stairs to let in guard Tony Black, who was ten minutes late.", "\n\n'You look a bit rough,' quipped guard Bentley as Black walked into the rest room. ", "The 31-year-old Black did indeed look pale, unkempt and apprehensive, as if he had just clambered out of bed and raced to work. ", "He confirmed Bentley's suspicion that he had overslept, then, mumbling something about having to use the toilet, he disappeared downstairs again.", "\n\nRiseley glanced at his watch. ", "It was 6.40 a.m.\n\nRobbers Brian Robinson, Mickey McAvoy, Tony White, Brian Perry and two other men were sitting in a stolen blue Transit van on the Heathrow trading estate, waiting for their inside man Black to give them the signal. ", "Black would then let them into the Brink's-Mat warehouse where, the gang had been told, there were goods – gold, cash and jewellery – worth up to £3m. Thanks to Tony Black, the robbers even knew which of the two security guards had the combination numbers to allow access to the safes located in the vaults.", "\n\nBlack hadn't gone to the toilet. ", "He had gone to the front door to let McAvoy and his gang in.", "\n\nBrink's-Mat's so-called state-of-the-art vault in their warehouse was protected by nothing more than a single, fixed surveillance camera inside the building which was on the opposite side to the main door to the vault. ", "There was an alarm on the door, which sounded when the gang pushed their way in, but no one could possibly hear it upstairs, nor was it connected to anything outside the trading estate.", "\n\n*\n\n'Get on the floor or you're fuckin' dead.'", "\n\nThe masked figure filling the doorway of the rest room upstairs spat out the words in a harsh cockney accent, motioning urgently to the stunned guards with a 9 mm Browning automatic. ", "Robin Riseley dived from his chair to the floor, quickly followed by Clarke and Holliday.", "\n\n'The first thing I knew,' recalled Riseley, the guard who, along with Scouse, had the combination numbers, 'was a man pointing a semi-automatic pistol at my face and telling us all to hit the floor.'", "\n\nFrom the ground, Riseley caught a brief glimpse of a white man, about 5 feet 8 inches tall and wearing a trilby hat and a dark car coat or anorak over a black blazer, black trousers and a black tie. ", "He might have been dressed for a funeral but for the yellow balaclava that covered all but his eyes.", "\n\nFor a tense beat or two nothing happened. ", "Someone later called it a hesitant silence. ", "Then the gunman with the Browning automatic made a move that was to earn him the nickname 'The Bully' among the guards. ", "Without a word, he jerked his weapon arm upwards and – a silver blazer button glinting in the neon light – smashed the weapon down on the back of guard Peter Bentley's neck.", "\n\nThe guard had angered him by being too slow to react when the door first crashed open. ", "Believing it to be a colleague playing one of their regular practical jokes, he'd stood by the sink continuing to make the tea. ", "As he slumped to the ground, Bentley's head hit the table and then the floor, dazing him momentarily and opening up two deep, bloody gashes in his scalp. ", "The attacker's gun arm then calmly beckoned through the open door to someone waiting outside, and three more robbers rushed into the room.", "\n\n'Lie still and be fuckin' quiet,' ordered The Bully, as his henchmen began to immobilize the terrified guards, yanking their arms behind their backs and handcuffing them, before binding their legs together at the shins with heavy-duty tape. ", "Cloth bags with strings were then pulled down over the guards' heads and fastened around their necks.", "\n\nOne of the guards was close enough to the gunman to distinguish the herringbone pattern of the tweed hat and the crispness of his starched white shirt. ", "He even saw a lock of fair hair protruding from the balaclava as the bag was placed over his head.", "\n\nBentley felt hands roughly pulling at the house and car keys on his belt. ", "Then his watch was snatched off and thrown across the room. ", "Blood from his throbbing head trickled down his face and neck. ", "A moment later a voice – sounding almost sympathetic – asked if he was okay. ", "Bentley nodded and the drawstring was loosened a little.", "\n\nMeanwhile Holliday was finding it difficult to breathe. ", "Thrashing about on the floor, he attracted the attention of one of the robbers who bent down and untied the draw-string, pulling the bag back to clear his upper lip. ", "To ease the discomfort further he was turned on his back. ", "Ron Clarke was similarly treated, first roughly bound, then casually asked if he was in any distress.", "\n\nMoments later another robber spoke – this time with no discernible accent – and barked out orders. '", "Get that radio tuned in. ", "If you hear anything, tell us,' he ordered one of the other robbers. ", "The guards immediately realized that this man was the 'commanding officer'.", "\n\nSeconds later several of the robbers left the room. ", "Then a radio crackled through frequencies as it tuned in to a Metropolitan Police wavelength. ", "There was precious little happening outside the Brink's-Mat warehouse: two police officers could be heard discussing a spot-check on a vehicle, but there was nothing else. ", "Two members of the gang then returned and hauled Holliday to his feet before dragging him down the corridor into the locker room.", "\n\nHe was then lowered to the floor and pushed back against a girder. ", "They tried to handcuff him to the steel strut but failed because it was too large for his arms to encircle. ", "He was handcuffed to a radiator instead. ", "Fellow guard Ron Clarke was then hauled in and handcuffed to the same radiator. ", "They were left alone to listen to the noises echoing in the vault directly below them.", "\n\nSenior guard Scouse was pulled to his feet in the rest room and dragged outside into the corridor, where he was thrown against a wall.", "\n\n'Breathe in,' ordered one of the robbers.", "\n\nScouse felt his shirt being pulled up to his chin and then a hand tugged violently at his waistband.", "\n\n'Breathe in deeply or you'll get fuckin' cut.' ", "Just then the knife sliced through his belted jeans from the buckle to the crutch. ", "As Scouse filled his lungs he became aware of an overpowering smell. ", "Had a rag been waved under his nose?", "\n\nScouse and Riseley had been identified earlier by Tony Black as the men who held the combinations. ", "Now their ordeal was about to begin in earnest.", "\n\nRisely recalled: 'They slipped a hood on my head and then there was a knife in the crotch of my trousers and before I could say anything they were down round my ankles and there was a liquid being poured on me.'", "\n\nScouse recalled: 'I heard this voice say, \"If we don't get what we want, if the police turn up or the alarms go off I'll...\"'\n\nThen the voice stopped momentarily.", "\n\n'D'you recognize that smell?'", "\n\nOne robber – later identified as Mickey McAvoy – then poured petrol into Scouse's lap. ", "The next instant Scouse felt the fuel seeping into his genitals.", "\n\n'You'd better do as I fuckin' say, or I'll put a match to the petrol and a bullet through your fuckin' head,' said McAvoy. '", "I know you live in a flat in Ruislip High Street above a TV rental shop. ", "We've been watching you for nine months and setting this up for twelve. ", "Now, let's get on with it. ", "You have two numbers.'", "\n\nThe two guards were taken down to the vault, which they believed held a million pounds in used banknotes. ", "Scouse punched in his half of the combination, but when Riseley was pushed forward to complete the sequence there was a problem. ", "Riseley later recalled: 'The company had just changed the combinations and I hadn't memorized the new one, so the safe wouldn't open. ", "They felt I was messing about. ", "I heard someone say: \"It looks like we got a hero,\" and he started rattling a matchbox in front of my face and then pulled out a diver's knife and said he was going to castrate me if I didn't give him the numbers. ", "He was furious. ", "Well, I was doing my best.'", "\n\nAfter twenty minutes of trying and failing to break into the safe the robbers turned their attention to the drums and boxes scattered around the floor. ", "As they opened the various lids and discovered scrap silver, degraded platinum and highly traceable travellers' cheques, it seemed the job was going to end in disappointment.", "\n\nWith a gun in his back, Risely finally coughed up the half of the numbers that he knew after bravely refusing to reveal them at first. ", "After they had been punched in, he looked over his shoulder and declared that the alarms were now neutralised. ", "The robbers were finally inside Unit 7's vault.", "\n\nIt was shortly before 7 a.m. and the fluorescent lighting revealed a carpet of drab grey containers, no bigger than shoeboxes, bound with metal straps and bearing handwritten identification codes. ", "One of the robbers marched up to one of the unprepossessing cartons in the corner and snapped off its lid.", "\n\nInside were twelve perfectly formed bars of pure gold. ", "As if to check they weren't dreaming, the robbers prised off a few more lids to reveal the same awesome sight.", "\n\nIt was an enormous amount to be held in one place at a one time, more than the gang could ever have imagined. ", "There was a total of 60 boxes containing 6,800 gold bars, weighing a total of 3½ tons and worth £26,369,778.", "\n\nThey also found several hundred thousand pounds in used banknotes locked in three safes. ", "One pouch contained travellers' cheques worth £200,000. ", "In the other were polished and rough diamonds valued at £113,000.", "\n\nAs box after box was opened and the veritable Aladdin's cave of treasure was revealed, the atmosphere became increasingly electrified as – with scarcely concealed excitement – the gang hurriedly began passing bars to their battered Transit. ", "Soon this unexpected windfall was starting to make the vehicle's axles bend under the weight. ", "More than one eyewitness later reported seeing an old van with a wheezing engine riding very low on its suspension through the streets of nearby Hounslow.", "\n\nNo one within the robbers' immediate circle had any experience of dealing with this amount of gold – the gang had been expecting to find only cash – so the call for help in dealing with this incredible haul would have to be put out far and wide.", "\n\nThe robbers gathered up everything they could cram into the van as the time ticked away. ", "The atmosphere was buzzing as the team moved the last of the gold out of the side of the loading bay and into the vehicle. ", "Virtually no words were exchanged, as one of them said later: 'You could have cut the silence in half. ", "It was that tense.' ", "As that rusting old transit van eventually scraped its way out of the warehouse, none of the robbers could have known that they were in possession of something so dangerous that it would eventually cost many of them and their associates their lives. ", "Inside the van, Mickey McAvoy and the rest of his team sat in complete, stunned silence as the enormity of what they had just done began to sink in. '", "We just couldn't believe we had just pulled it off and we kept looking in the back of the van where the gold was, as if it might just disappear and we'd wake up from a dream,' Brian Perry told one criminal associate many years later.", "\n\nBack in the warehouse, the alarm was raised when a local mechanic who was servicing one of the Brink's-Mat vans had a problem with the vehicle's alarm system and called the warehouse only to be told by a terrified security guard: 'Phone the fuckin' police. ", "We've been turned over.' ", "He immediately slammed the phone down and rang 999.", "\n\nThe lives of a lot of people – both innocent and not so innocent – were about to be blighted forever.", "\n\n### **SEVEN**\n\nMcAvoy and Robinson and the rest of the gang split up after a quick meeting at a south London 'flop house' following the raid. ", "They were all under strict instructions not to communicate with each other for at least a month. ", "Usually at flop houses the proceeds are split between the robbers, but on this occasion the team all agreed that they would have to sit on all the gold for some time before starting to turn it into hard cash.", "\n\nNot all the robbers were happy about this arrangement, but McAvoy and Robinson made it clear that there was no choice in the matter. ", "However the sheer size of the gold bullion haul was only the start of their problems. ", "McAvoy later told one associate that all the gang members knew only too well that the police would be put under enormous pressure to solve the robbery because of the vast amount of gold that had been stolen. ", "In one fell swoop, the gang had single-handedly humiliated the long arm of the law.", "\n\nScotland Yard commander Frank Cater needed the Brink's-Mat job like he needed the proverbial hole in the head. ", "Months before the raid, another firm of London robbers had coolly taken £6m in used banknotes during an Easter 1983 robbery on a Security Express depot in London's East End. ", "On that occasion a guard had also been doused in petrol.", "\n\nThat job had been dubbed the 'Crime of the Decade' by the tabloids. ", "Cater wondered if the same gang was now also responsible for the Brink's-Mat raid. ", "Before these two heists the previous holder of the title had been the Great Train Robbery, which took place near Leighton Buzzard, in Bedfordshire, in 1963, and that had netted a relatively paltry £2m.\n\nOne senior detective described the Brink's-Mat raid to one reporter as a 'typical Old Kent Road armed robbery, executed with customary efficiency and ruthlessness'. ", "The police knew perfectly well which corner of London to concentrate their inquiries in. ", "But breaking down the barriers that existed between the law and the gangsters was another thing altogether.", "\n\nLess than a day after the Brink's-Mat robbery, Lloyds of London announced a reward of £2m for information leading to the return of the stolen gold, which had already leapt in value by more than twenty pounds an ounce since the robbery had taken place.", "\n\nRather than disappear in the days following the robbery, McAvoy and Robinson told the other gang members to make sure they were seen around their usual haunts, because if they went to ground it would be sure to alert the police to their involvement. ", "Not surprisingly – as word spread across the underworld about the magnitude of the job and the vast amount of gold that had been stolen – various top London faces let it be known that they would be pitching for the 'rights' to turn all that gold into ready cash. '", "The robbery was the simple bit. ", "Now the real fun would begin,' said one of those criminals who knew the raid would end up as an excuse for other villains to muscle in on McAvoy and Robinson's Big Job.", "\n\nInitially McAvoy and Robinson steadfastly refused to see any of these villains because they didn't want to give the law any excuse to pull them in. ", "They believed they'd get away with their audacious crime if they kept cool and low-key, but there was one obvious fly in the ointment – Robinson's brother-in-law Tony Black. ", "He wasn't a villain and was, in the words of one robber, 'bricking himself'. ", "Robinson got a message to Black telling him not to worry, and although the police would probably pull him in as an obvious inside man, as long as he said nothing they would never be able to get proof of his involvement.", "\n\nOf the six Brink's-Mat guards on duty that morning, Tony Black stuck out to the police like Ronnie Kray at a boy scouts' meeting. ", "The fact that Black had been out of sight of the others in the minutes before the raid was significant, and within hours of the raid being carried out the police began to put together some damning intelligence on Black. ", "Not least of which was that he had a brother-in-law called Brian Robinson.", "\n\nThe police knew all about Robinson. ", "Over the previous two years, he'd escaped prosecution on two armed robbery charges. ", "One was thrown out by a magistrate because of insufficient evidence; the other, for handling money taken in an armed raid, was dropped when the Director of Public Prosecutions (DPP) also decided there was not enough evidence to bring a conviction.", "\n\nBut the police decided to bide their time when it came to Tony Black, so they held off arresting him and instead put a shadow on him in the hope he might lead detectives to the actual robbers. ", "It looked as if McAvoy and Robinson's strict instruction to the whole team that none of the blaggers should even see each other was a good plan. ", "The same applied to any further contact with the 'wobbly' Tony Black, who they all knew was the weakest link of the entire Brink's-Mat job. ", "For almost a week, Black was shadowed by police and seen making numerous, nervy-looking calls from phone boxes. ", "However, it seemed that he never actually got to talk to whoever it was he was calling, because he'd end up slamming the phone down and cursing as he left phone box after phone box.", "\n\nBlack and the other guards were eventually called back to the warehouse to help police make a video reconstruction of exactly what had happened. ", "Afterwards, police were struck by how nervous Black looked throughout the reconstruction, although they knew that wasn't enough evidence in itself to arrest him. ", "They needed a confession, and they were sure that would come with time. ", "The 'let him stew' philosophy was a tried-and-trusted police technique and it looked sure to work this time as well. ", "The police just needed to bide their time and Tony Black would eventually crumble.", "\n\nAt 8 a.m. on Sunday, 4 December – just eight days after the Brink's-Mat robbery – all six guards on duty the day of the robbery were taken to Hounslow police station for questioning. ", "In fact it was all a charade, because only Tony Black was properly interrogated. ", "For six hours he was questioned and re-questioned about his movements on the day of the robbery and subsequently. ", "Eventually, Scotland Yard investigator Detective Inspector Tony Brightwell rose to his feet and told Black: 'There are certain points which have arisen as a result of the original statement which you made, the video reconstruction of events and during this interview... to put it bluntly, we are not happy with your story. ", "We will leave you to have a rethink.'", "\n\nThe detective and his colleague then left the interview room and – using yet another tried-and-trusted police tactic – let him sweat for more than an hour while they discussed his story over coffee in the canteen. ", "Brightwell and his colleague returned to the interview room at 4.52 p.m. They were certain of their ground, and the investigators planned to deliver what they hoped would be their _coup de grâce_.", "\n\nThey deliberately took their time taking down Black's statement all over again – going through every detail with him – in order to rack up the tension. ", "It wasn't until the early hours of the following day – 5 December 1983 – that a detective sergeant accompanied by two colleagues completed Black's twenty-one-page statement after more than eight hours of questioning. ", "Put simply, they wore Tony Black down until he told them about his involvement.", "\n\nAfterwards, Black admitted to investigators: 'I'm feeling much better now. ", "It's like a weight off my mind. ", "It was just too big. ", "I couldn't handle it. ", "There's one thing though. ", "I'm worried about these people, what they're going to do to me...'\n\nMinutes later Commander Frank Cater entered the room and waved his three detectives out. ", "They believed they already knew the identity of one of Robinson's accomplices. ", "Black said that he thought the surname of the big man known as 'Tony' was a notorious south London blagger called Tony White. ", "Criminal intelligence had already confirmed that a Tony White and another criminal, Mickey McAvoy, were known acquaintances of Robinson. ", "It was also known that White owned a vehicle similar to a car seen circling the trading estate a few days before the robbery.", "\n\nThe three detectives who'd left the interview room went straight downstairs to collect the mugshots they'd already put to one side from police files. ", "There were two folders, each containing twelve photographs of various individuals. ", "In each batch they placed mugshots of McAvoy and White.", "\n\nShortly before midnight, after Commander Cater had finished with Black, DS Branch pushed the carefully collated folders under Black's nose. ", "The first file was opened, and the pictures spread across the table. ", "Black immediately pointed to a photo of Mickey McAvoy.", "\n\n'That's Mick,' he said. ", "He had confirmed the detectives' suspicions. ", "The photograph he pointed to was of the man the other guards had dubbed The Bully, aka Mad Mickey McAvoy.", "\n\nThey pushed the second folder over the table and Black again picked out another photo almost immediately. '", "That's Tony,' he declared. ", "It was a photograph of Tony White.", "\n\nIn the early hours of Tuesday, 6 December, Tony Black was led back to his cell, understandably wondering if he had just sentenced himself to death. ", "The gang might be still out and about enjoying their liberty but detectives knew that it was only a matter of time before they'd have them under lock and key, thanks to Black.", "\n\n'It was obvious from the start there had to be an inside man,' Detective Tony Brightwell later explained. ", "When Brightwell decided to take all the guards back to the warehouse and film them, _in situ_ , talking about the robbery, Black had quickly emerged as the only viable candidate. '", "He was extremely nervous and, in my opinion, obviously lying. ", "When the film was shown to the rest of the Flying Squad officers it was rather like watching a B-movie whodunnit where everyone sort of jeered when he came on.'", "\n\nBlack was not a professional criminal. ", "Having made a full, detailed, confession, he then agreed with detectives to turn Queen's evidence. ", "Out of the original six-man gang, he'd fingered three of them: Robinson, McAvoy and Tony White.", "\n\nBut detectives had decided to continue playing a waiting game for the time being. ", "They suspected that once the trio knew that Black had grassed on them they'd probably try and make a run for it. ", "The detectives were hoping the villains might first lead them to the gold. ", "It was a risky strategy but the sheer magnitude of the raid meant that none of the usual rules applied.", "\n\n## **PART TWO: THE AFTERMATH**\n\n_London. ", "December 1983._", "\n\n_Margaret Thatcher is in full swing._", "\n\n_Life's all about money, money, money._", "\n\n_And a team of professional villains have just nicked twenty-eight million quid._", "\n\n_It's the Crime of the Fuckin' Century_\n\n### **EIGHT**\n\nThe Brink's-Mat gang knew that Tony Black had been picked up and was singing like the proverbial canary but now they faced a dilemma. ", "If they stashed the gold and disappeared, it would be seen as clear confirmation that they'd been on the raid. ", "They decided, instead, to stay put. ", "In doing so they pinned their hopes on two factors; the first was strength of the alibis that they'd all created as a precaution to cover their tracks. ", "The second was the belief that Black might still not actually crack to the point where he actually identified them, although they feared that that was highly unlikely.", "\n\nUnsurprisingly, police surveillance experts at Scotland Yard's specialist C11 unit focused on Brian Robinson and Mickey McAvoy. ", "Initially McAvoy proved to be cautious about his movements to the point of near-paranoia. ", "But he then made a classic error by suddenly quitting his council house in Dulwich and moving into a mansion on the borders with Kent. ", "He also bought two Rottweilers and named them Brink's and Mat. ", "He'd clearly got his hands on some of the cash from the raid. ", "Some of the other gang members were irritated by his 'clumsiness'. ", "Keeping a low profile was paramount, but he just didn't seem to appreciate that and gave the impression of being more interested in making sure that the underworld knew he was 'the money'. ", "But it wasn't just other criminals he was looking to send a message to. '", "He couldn't resist it,' explained one old south London associate. '", "Mickey hated the cozzers and he liked the idea of them \"suffering\" a bit. ", "It was obvious all it would do was wind them up and make them even more determined to nick him. ", "He should have just sat tight.'", "\n\nNevertheless, police continued to 'sit' on McAvoy, Robinson and White following Black's confession, watching and waiting in the hope at least one of them might lead the cops to the gold. ", "It turned into a stand-off. ", "The villains didn't want to arouse the cops' suspicions and the cops didn't want to show their cards in case they hadn't got enough to make any charges stick. ", "It was a typical game of cat and mouse.", "\n\nIn the end the police decided they had to swoop, just in case the suspected robbers disappeared.", "\n\nIn the early hours of a cold December morning, eleven days after the bullion robbery, Tony White, Mickey McAvoy and Brian Robinson were taken to separate police stations. ", "By making sure they couldn't communicate with each other, the cops were looking to prevent them working out that they'd been grassed up by Black. ", "It was imperative that the men were kept separate so they did not communicate with each other. ", "Another three people were also detained in relation to the handling of the proceeds from the raid. ", "They were White's wife Margaret, McAvoy's first wife Jacqueline and Mrs Patricia Dalligan, who lived at the house in south-east London where Black claimed the robbery had been planned.", "\n\nIn the interrogation room at Heathrow police station, Tony White was surly and uncommunicative and denied all knowledge of the robbery. ", "Police wanted to know why there were groceries in the boot of his car and packed suitcases in his bedroom. ", "They also wanted to know why White's young son was not at home. ", "Officers believed White had been expecting a visit when the police raid occurred and had sent his son away. ", "They also reckoned he'd cleaned the house to remove any forensic evidence that might have linked him to the raid.", "\n\n'If I sit here with my mouth shut, you haven't got fuckall. ", "I know that,' White told one officer.", "\n\nAt West Drayton police station, near Heathrow, Brian Robinson was also cautioned. ", "He gave them what appeared to be a cast-iron alibi. ", "The detectives rolled their eyes and took it down, knowing full well that professionals like Robinson always cooked up an alibi before any job. ", "Over at Chiswick police station, Mickey McAvoy was proving just as frustrating for police officers.", "\n\nBy the end of the following day, all the detectives involved in interrogating the three men compared notes. ", "Robinson had politely denied any wrongdoing; White had been aggressively blunt; and McAvoy had maintained a stony silence. ", "Robinson had a detailed alibi backed up by his wife, his sick mother and a brother, who would all have to be interviewed by detectives. ", "White could bank only on the word of his wife to confirm a Saturday morning lie-in. ", "McAvoy would not divulge his alibi unless his solicitor was there to hear it.", "\n\nThe police had Black's detailed confession, but so far the only evidence against the three men was circumstantial, and there was not much of that. ", "Naturally, all three men had refused to sign the contemporaneous notes of the interviews because they feared this might incriminate them. ", "They knew that the veracity of the unsigned records could therefore be questioned in court. ", "Any mistakes the three robbers might have made, any slips that opened up a chink in their armour, could be dismissed as fabrication. ", "Without signatures at the bottom of each page, any such documents could be labelled so-called 'verbals', a well-known practice of corrupt officers at that time, in which prisoners' statements were completely fabricated in order to guarantee their guilt.", "\n\nWithin a few days, legal wrangles in the high court looked set to release all those who'd been pulled in by the police in relation to the Brink's-Mat robbery. ", "The starring role went to a lawyer whose legal skills would be called upon by a number of other people involved in turning the Brink's-Mat gold into cash.", "\n\nTony White's brief, Henry Milner, was an engaging public-school-educated character who specialized in representing people accused of serious crimes such as armed robbery. ", "He issued a writ of habeas corpus (essentially a demand that the detained individuals had the chance to go before a judge rather than be held indefinitely without a trial) on behalf of all six people held by police in connection with the raid.", "\n\n'Mr Milner' – as all his clients called him – had already earned himself the respect of some of the most powerful criminals in London. ", "He had no fears about the twilight world of gangland crime and he was not even shy about saying how he'd helped turn cases around, especially if his clients had been 'verballed up'. ", "He once explained: 'It's a lot of fun defending criminal cases.'", "\n\nHenry Milner's north London upbringing, Jewish boarding school education in Oxfordshire and degree at the London School of Economics couldn't be further removed from the backgrounds of the Brink's-Mat robbery gang. ", "At weekends, Mr Milner retreated even further from the London underworld by pursuing his three hobbies: Tottenham Hotspur, bridge and traditional American music. ", "But to his clients he remained the man they could trust to try and get them out of the tightest spots imaginable.", "\n\nLegal eagle Mr Milner's one-man operation offered an exclusive service to ten or twelve rich clients a year. ", "Mr Milner offered an entirely personal service, and all his clients came through word of mouth. ", "His modest office was squeezed between two jewellery shops in London's Hatton Garden. ", "His only employee, secretary Eileen, had worked for him for many years. ", "Though Mr Milner's tiny waiting room had nothing but a handful of glossy mags to flick through, the lawyer's own office was panelled with dark oak and constantly filled with clouds of smoke from his ever-present fat Cuban cigars. ", "They sat on his desk in a walnut veneer box crafted in a prison workshop and sent to him by a former client.", "\n\nMr Milner's first big professional breakthrough as a brief had come back in 1978 when he represented one of London's best-known faces who, as Mr Milner later admitted, 'appeared at the Old Bailey as regularly as Frank Sinatra at the Albert Hall'. ", "Mr Milner's 'lovable rogue' was eventually acquitted of criminal charges in six successive court cases. ", "That was when word went out that Henry Milner was a brief to be trusted.", "\n\nMr Milner was once asked if there were any cases he wouldn't handle. ", "He responded: 'That's a difficult question because I do a lot of cases the public finds distasteful, like drugs. ", "But I have never handled cases involving sexual offences on elderly people or young children.'", "\n\nLuckily, Mr Milner was a born optimist. '", "You've got to look confident even if you don't feel it,' he explained. '", "If you show a weakness or fear they will jump on it. ", "Defendants are as shrewd as anything. ", "They know whether you are on the ball.'", "\n\nMr Milner didn't have a close relationship with any of his heavyweight clients, especially the so-called superstar gangsters. ", "He said he'd never been out socializing with them apart from having the occasional sandwich at lunchtime. ", "One retired blagger explained: 'Mr Milner's a real pro. ", "A complete gent. ", "He doesn't have to hang around with the likes of us to understand the criminal mind. ", "The guy's bloody brilliant. ", "If you've got him on side you're about fifty per cent more likely to walk out of court a free man. ", "He's a tasty operator.'", "\n\nMr Milner prided himself on always having complete control of a case. ", "That meant deciding which witnesses to call, influencing a counsel's closing speech and occasionally putting his foot down. ", "He was also renowned for picking top barristers with a knack of winning.", "\n\nUnsurprisingly, Mr Milner was well accustomed to the age-old question from many of his clients. '", "What are my chances?' ", "To his credit, he always gave them the straightest possible answer. ", "Although he did once admit to a journalist: 'You start with \"hopeless\", \"very, very poor\", \"fifty per cent\", \"evens\" or \"quite good\". ", "If you put it above \"good\", you're in trouble if they're found guilty.'", "\n\nSo when Brink's-Mat came around in 1983, Mr Milner was sitting pretty to receive a windfall of clients. ", "First through the door was Tony White, followed by McAvoy. ", "Others would soon pay a visit.", "\n\nBack in court that day, less than a month after the robbery, Victor Durand QC read a sworn statement by Henry Milner that, in effect, challenged the police to charge all six prisoners or release them. ", "At that time the law clearly stipulated how long police were allowed to hold suspects in custody without a charge, unless it was under the Prevention of Terrorism Act. ", "Durand informed the judge, Mr Justice Taylor, that all the prisoners had been denied their right to legal advice, and Milner's statement said he had repeatedly asked for access to the prisoners but had been stopped from seeing them by Flying Squad officers.", "\n\nWhen counsel representing Scotland Yard replied that the habeas corpus action would be defended, the case was adjourned until the next morning, but it never reopened. ", "At 9.30 that night White was charged, followed by Robinson and McAvoy. ", "The other three were released. ", "The next morning the three robbery suspects were brought to Feltham magistrates' court and remanded in custody on the charge of stealing gold and other valuables worth £28m from the Brink's-Mat warehouse, near Heathrow airport.", "\n\nBack in west London, detectives investigating the Brink's-Mat robbery suspected that John 'Little Legs' Lloyd was one of the original six members of the gang who robbed the warehouse. ", "Lloyd had disappeared after being tipped off that the police were onto him. ", "Indeed he didn't resurface again until nine years later when he insisted that he hadn't been one of the robbers and the Crown Prosecution Service announced that there was insufficient evidence to proceed against him. ", "Despite claims that he was thousands of miles from London, for much of the time Lloyd was actually in the capital and Kent. ", "Yet such was Lloyd's status in his old haunts that he could drink and live openly without the police ever being informed. ", "That was a measure of the criminal respect for Little Legs.", "\n\nAmongst the criminal fraternity, the Brink's-Mat robbery had already become the stuff of legends. ", "The tabloids quickly dubbed it 'The Robbery of the Century' while others referred to it as a 'brilliantly executed raid'. ", "To stumble upon so much gold and then get away with enough to set dozens of people up financially for life was the sort of dream scenario that few villains could ever hope for, even if three of the robbers had already been arrested.", "\n\nBut the sheer size of the Brink's-Mat haul of gold bullion continued to create a huge problem because the gang needed a mechanism, a conduit through which the gold could travel. ", "It had to be smelted and sold back into the gold industry before it could be turned into cash.", "\n\nIn the south London underworld there was a great fear that Robinson, McAvoy and White would turn supergrasses in exchange for lighter sentences. ", "McAvoy and Robinson were particularly outraged by such rumours because informing on their criminal associates was something they would _never_ even vaguely consider.", "\n\nThe gang had to look outside their close circle of associates to find people to handle the gold. ", "Though the three members behind bars were still pulling the strings, they inevitably had to allow others to get involved, something that made the whole laundering operation even more risky. ", "After using a wobbly character like Tony Black as their 'inside man', this turned out to be the second big mistake they made. ", "Here were villains who'd known each other for years, and now they were having to put their trust in people such as Kenneth Noye, introduced to the gang by John 'Little Legs' Lloyd. ", "McAvoy and Robinson had heard many whispers about Noye. ", "Some even said he was a police grass. ", "Those sorts of accusations are thrown around in all heavy criminal circles, and they are usually taken with a pinch of salt. ", "But the amount of gold involved was so large that everyone felt as if they were treading on thin ice. ", "One false move and they would either be dead or in prison.", "\n\nKenneth Noye and his associate Brian Reader had taught themselves everything there was to know about gold over the previous few years. ", "The precious metal had become a favourite commodity with which to swindle the British government out of value-added tax (VAT), a fifteen per cent premium levied on a variety of goods, including items made from gold, when they were sold. ", "Paid at the time by the buyer to the person selling the gold, it should then have been returned to HM Customs and Excise.", "\n\nIn his initial discussions with them, Noye had convinced McAvoy and Robinson that not only was he the best man to help them turn the gold into cash, but that there were a variety of scams that could easily be operated in order to deprive the taxman of his share. ", "One was to smuggle gold into the country, then sell it to a reputable dealer. ", "The fifteen per cent VAT would then be pocketed by the smugglers.", "\n\nAnother scam was to draw up documents showing that the gold had been exported immediately after its arrival in Britain, which meant it was not liable for VAT. ", "The honest trader, meanwhile, would still have to pay the fifteen per cent VAT to the 'company' selling him the metal. ", "That 'company', usually based in short-let office accommodation, would fold within a matter of months without making any VAT returns.", "\n\nAlthough similar scams could have been worked on other goods that were subject to VAT, gold was particularly suitable because its high value meant large returns with a minimum of delay. ", "It also had an official price, fixed twice daily by the London gold market, so the smugglers did not have to worry about commercial competitors undercutting their prices, and it was compact and easy to transport.", "\n\nIn the early 1980s, VAT frauds in general had one further major attraction – the maximum penalty for indulging in the racket was just two years' imprisonment. ", "Small wonder then that VAT fraud involving gold had grown increasingly popular among well-organized, professional criminals in the London underworld. ", "Kenneth Noye was one of the top operators in that field.", "\n\nIt was around this time that residents in Jenton Avenue, Bexleyheath, on the suburban edges of south London and Kent, began noticing some strange activity at a house occupied by Kenneth Noye's elderly parents. ", "Almost every Saturday for years Noye and his wife Brenda had visited his mother and father with their sons Kevin and Brett.", "\n\nBut in the weeks following the Brink's-Mat robbery, Brenda began turning up at the bungalow at least an hour before Noye arrived in his Ford pick-up. ", "Noye was then seen by neighbours carrying what looked like very heavy batteries from his pick-up through to the garage next to his father's house.", "\n\nAn hour or so later, Noye would emerge from the bungalow with more 'batteries' which he carefully laid on the flatbed of the pick-up truck before driving off. ", "Brenda Noye and the children followed shortly afterwards in the family Range Rover or Ford Granada. ", "Noye went through exactly the same routine every Saturday morning for months following the Brink's-Mat robbery. ", "It was only a long time later that the neighbours put two and two together. ", "Lugging those heavy bars across the forecourt to his parent's house wasn't easy, and other residents in the classically suburban street must have wondered what he was doing. ", "However, typically, they were afraid to 'interfere'.", "\n\nBut there were other problems with handling gold. ", "The true origin of ingots of gold had to be disguised, and that meant removing identification numbers and assay marks. ", "Many ingots carried their own individually designed hallmarks to signify their purity and, in some cases, a serial number. ", "Absolutely pure gold does not exist – some contamination is always present, however expertly the metal has been refined. ", "But bars with the number 9999 meant they were 99.99 per cent pure, the highest level to which the metal can be refined, while 999 bars, known in the trade as ten-tola bars (a tola being an ancient Indian unit of weight) were only marginally less pure.", "\n\nTo pull off any scam involving gold, any villains – or receivers to whom it was sold – as well as removing the identifying marks, had to disguise the purity of the bars. ", "Failure to do so would create a risk that legitimate traders would quickly become suspicious that the quantities they were being asked to buy were either smuggled gold or stolen bullion.", "\n\nThat meant specialized smelting equipment was needed, the sort sold by only a handful of shops in Britain, most of them in the Hatton Garden area of central London, internationally renowned as a centre for the jewellery trade. ", "Such shops were on their guard against suspicious customers ordering smelters, so the gang would have to tread very carefully.", "\n\nA month after the robbery, Flying Squad officer Bill Miller got a tip-off that a man had been seen in London's Hatton Garden jewellery district trying to buy an industrial gold smelter. ", "A week later Miller was undercover in Worcestershire, watching a smelter being loaded into the back of a gold Rolls-Royce. '", "He was easy to follow because the smelter was too big for the Rolls and the boot wouldn't close,' explained Miller. '", "So we followed him all the way back to Kent.' ", "The car was parked up outside a cottage while the driver went inside.", "\n\nMiller stayed with the vehicle all night and was relieved by a specialist surveillance team in the morning. ", "When the driver returned to the car, the team followed on behind. '", "Within five minutes they lost him,' Miller later recalled. ", "When they returned to the cottage later in the day the smelter had gone.", "\n\nThe driver of that Rolls-Royce was a man called Mickey Lawson, who happened to be best friends with Kenneth Noye. ", "Lawson's and Noye's children knew each other, and their wives played squash together. ", "Lawson had actually purchased the smelter from William Allday and Company in Stourport-on-Severn. ", "The Rolls-Royce would soon be regularly seen at Noye's house in Kent. ", "One of Lawson's fingerprints would eventually be found inside that same house. ", "The operating instructions for the smelter they had seen in the back of the Rolls-Royce were later found in Kenneth Noye's shed.", "\n\nLawson later insisted to police that the furnace had been bought by him on behalf of a mystery Arab who had taken it from him shortly after he'd purchased it. ", "Lawson claimed he'd bought the furnace under a false name for VAT purposes. ", "But in the weeks and months following the robbery, Lawson was one of the villains who found themselves under the watchful eyes of detectives.", "\n\nBesides increasing their knowledge of the gold business, the Brink's-Mat gang also had to constantly keep improving their contacts. ", "Successful fences would always be looking for new ways of cultivating police contacts, but with a haul like Brink's-Mat, making new contacts to help turn the gold into cash became an urgent need. ", "The gang members already in custody had their own 'favourite' detectives to whom they'd be constantly suggesting ways in which they could 'help each other' over certain matters. ", "But the gang also began to speak to more and more members of the criminal fraternity. ", "Something that made them increasingly uncomfortable\n\nMeanwhile new members of the gang's outer circle were starting to get more deeply involved following the arrest of McAvoy, Robinson and White. ", "Take Kenneth Noye. ", "He took on a senior role, much to the annoyance of the actual robbers, who nonetheless had little choice in the matter. ", "Noye was a master manipulator who prided himself on having his finger in dozens of pies, from bent coppers to crooked judges. ", "He boasted of 'owning' an MP in southeast London.", "\n\nNoye befriended a blonde woman who was working as a civilian at a Kent police station, not far from his home in West Kingsdown. ", "Noye persuaded the woman to meet for a drink after work one night. ", "They began a passionate affair and she provided him with information about the progress of the Brink's-Mat investigation. ", "When Noye discovered he was sharing the woman's affections with a senior detective it only made the affair even more exciting and 'productive'.", "\n\nOnce the police began to watch Noye more regularly over the coming months, its surveillance teams soon established that besides gold, Kenneth Noye had another obsession – women. ", "He was even finding time to have an affair with Jenny Bishop, the wife of one of his oldest friends, and had bought her a £50,000 townhouse in Dart-ford which he'd furnished from upmarket Harrods at a cost of more than £20,000 (costing £250,000 and £60,000 respectively at today's prices). ", "Noye considered the property a good investment. ", "It was also much cheaper and safer than a hotel.", "\n\nThe Brink's-Mat gang had befriended many detectives in both the Kent force and the Met long before the actual robbery took place. ", "Some of them had even been asked to CID functions and parties held inside police stations. ", "Naturally many of those officers who knew the gang members were now stepping back from the investigation, fearful that they might be 'smeared' by the robbers and their associates.", "\n\nOut and about in their favourite pubs in south-east London and Kent, the remainder of the Brink's-Mat gang tried to gauge the intensity of the police investigation by speaking to certain second-division criminals, many of whom had their own contacts in the police.", "\n\nKenneth Noye and his criminal associates got close to the remaining three members of the Brink's-Mat robbery team during this period, although they were careful to ensure that the Brink's-Mat investigators did not observe them doing anything in connection with the stolen bullion.", "\n\nOn one occasion during the early stages of the investigation, Kenneth Noye and a number of other criminal faces attended the marriage of the daughter of one of south-east London's best-known villains. ", "A wedding photographer innocently started snapping away at Noye and some others. ", "Noye immediately lost his temper, pushed the photographer up against a wall and removed the film from his camera. ", "He had a particular aversion to having his photo taken, even at a public function such as a wedding. ", "In this instance, Noye suspected the photographer might have been a policeman in disguise.", "\n\nAs his cousin Michael later told this author: 'Kenny didn't like any photos of himself to be floating around. ", "He knew that if people outside his own circle didn't know what he looked like then he'd be able to move around much more easily.'", "\n\nDespite the care he was taking, Noye was considered a 'bit of a bumpkin' by certain members of the actual Brink's-Mat robbery gang. ", "After all, he'd never got his hands dirty carrying out the actual raid. ", "He was simply there to turn the gold into cash.", "\n\nAs Kathy McAvoy – Mickey McAvoy's second wife – later explained: 'Noye wasn't from south-east London. ", "He was from the Kent suburbs and that just isn't the same. ", "Bexley-heath ain't south-east London in the true sense. ", "Noye wasn't the real thing and he knew that others thought that, too.' ", "There was also a feeling amongst some of the Brink's-Mat faces that 'outsiders' like Noye might not keep to the code of honour that existed between the team involved in the actual robbery.", "\n\nAt that same wedding where Noye threatened the photographer, he was seen alongside his old mate Brian Reader, one of south-east London's most notorious burglars. ", "The two men had done some gold business together in 1981 that ended up earning them at least £200,000 each. ", "No wonder they both believed they could clean up once they had their hands on all the Brink's-Mat gold.", "\n\nThe remaining members of the Brink's-Mat gang and its backers sat tight for the moment, believing that nothing was going to prevent them from eventually coming into a fortune. ", "They began looking around for safe, 'straight' investments for the cash they believed would be raised from the gold. ", "Some of them even began selling off their own legitimate businesses so that it gave them a perfect alibi for having so much cash swimming around. ", "As one ex-robber explained: 'The cozzers were watching everyone closely and so selling businesses provided a legitimate reason to be in the money, so to speak. ", "It was a wise move and it frustrated the police no end because they knew who was connected to the job, but they had fuck-all proof.'", "\n\nFriends and family of the remaining robbers were kept in the dark about the sudden surge in transactions, although inevitably word started to get around that some of the robbers who'd escaped prosecution were falling into the classic trap of being too flash for their own good.", "\n\n### **NINE**\n\nIn the Scotland Yard archives there is an unsigned statement allegedly made by suspected robber Tony White in which he not only admits to being on the robbery, but wonders whether he can take the £2m reward if he returns his share of the gold. ", "In this statement White is also said to have read Black's confession and told the police: 'I agree with the fucking thing, but I can't remember who done what, or where. ", "Can't we leave it at that?' ", "This was before the police were required to tape-record interviews, and at his later trial White would claim the statement was a police fiction. ", "When Scotland Yard were asked to produce the relevant copy of Black's confession to see if White had left his fingerprints on it, they first claimed to have mislaid it, before eventually confirming that they had had the copy destroyed for security reasons.", "\n\nWhilst this was going on, Kenneth Noye and his associates had formed an offshoot of the Brink's-Mat gang that was busily working out how to turn all the gold into cash. ", "Soon Noye and his mob would be generating a virtual torrent of money. ", "In the four months following the robbery, one bank handled transactions of more than £10m, mainly in grubby plastic bags, no questions asked. ", "To make it safe for use, it had to be carefully laundered to avoid being traced back to the raid.", "\n\nAnd in the middle of all this, The Sweeney just couldn't fathom out how the gold was being turned into cash. ", "The villains were taking the mickey out of Scotland Yard, and it was really riling various high-powered officers.", "\n\nTwo-timing Brink's-Mat guard Tony Black was quickly sentenced to six years' imprisonment. ", "With remission for good behaviour he wouldn't serve more than four years, and was likely to get parole after just two. ", "The sentence was accompanied by a grim warning from Judge David Tudor-Price: 'Never again will your life be safe. ", "In custody you will be segregated at all times, and you and your family will forever be fugitives from those you so stupidly and so wickedly helped.'", "\n\nCommander Frank Cater told the court that for the prisoner's own safety, he wanted Black to spend the time leading up to the trial of the three alleged robbers in police custody, rather than prison. ", "The chief of detectives was utterly determined that nothing should stop Black from giving evidence when the time came. ", "The application, which had been sanctioned at a senior level after talks between Deputy Assistant Commissioner Kelland and the Home Office, was readily granted.", "\n\nOn Monday, 25 October 1984, White, Robinson and McAvoy were brought before Judge Tudor-Price at the Old Bailey, the Central Criminal Court, to answer two counts each: those of conspiring to commit robbery and of robbery itself. ", "All three pleaded not guilty.", "\n\nThen Tony Black – nicknamed 'The Golden Mole' by the tabloids – stepped into the witness box and spent the following two and a half days giving evidence. ", "He gave the court a full account of how Robinson 'persuaded' him to help the gang, and the subsequent meetings and phone calls that took place both before and after the robbery. ", "Black admitted he was scared for his life. ", "By the time he'd finished there was no doubt that both Robinson and McAvoy had been the two criminals Black had dealt with.", "\n\nBut Black's testimony provided little or no evidence against White, and none of the other guards had managed to identify him. ", "White's extremely skilful counsel John Mathew QC also strongly challenged the accuracy of a statement White allegedly gave police after his arrest. ", "When it was discovered that the log book from Heathrow police station containing the alleged statement had 'gone missing' it also seriously undermined the prosecution's attempt to prove a case against White.", "\n\nThe trial itself garnered enormous nationwide publicity which fuelled the legendary status of the Brink's-Mat robbery. ", "It was portrayed in many papers as a cops-versus-robbers struggle. ", "Behind the scenes the police knew their investigation had been far from successful, and they continued to knock doors down, trying to follow up any lead, any source they had in a bid to trace the gold and the rest of the criminals. ", "When the media dubbed it the 'Crime of the Century' it rankled with many detectives who felt that they were far from finishing their inquiries.", "\n\nAfter a month-long trial, Judge Tudor-Price explained to the jury that he would be summing up the case under five headings. ", "The first would be the robbery itself and the 'uncontroversial' evidence of the 'five honest guards'. ", "That would be followed by his consideration of Anthony Black's confessed involvement. ", "Parts three, four and five would deal with the case against each of the accused.", "\n\nAt 10.42 on Thursday, 29 November 1984, Tudor-Price brought his careful and thoughtful summing-up to an end.", "\n\n'Members of the jury,' said the judge, 'in this case allegations have flowed thick and fast, and it is for you to decide which ones have substance.'", "\n\nIt wasn't until 3.19 p.m. the following Sunday that the jury finally returned with a verdict. ", "White was found not guilty. ", "McAvoy and Robinson, however, were found guilty of robbery. ", "All verdicts were delivered with a majority of ten to two.", "\n\nNext morning the two robbers were each sentenced to twenty-five years' imprisonment. ", "Without parole, Robinson, aged forty-one, would be sixty-six when due for release and McAvoy, thirty-three, would be fifty-eight. ", "Yet both men replied to the sentences with a simple and polite 'Thank you.'", "\n\nBack at his home in south-east London, Tony White broke his silence to a waiting horde of reporters. '", "If I'm innocent, then the other two are innocent. ", "The evidence was the same for all of us. ", "None of the three of us were involved. ", "The reason the police pulled us in was because they've wanted us for a long time, and were waiting for something like this to get us.'", "\n\nFor Black, Robinson, McAvoy and White the Brink's-Mat job was over. ", "But as far as the police and many of the others connected to the Crime of the Century were concerned it was only just beginning.", "\n\nTwo days after Robinson and McAvoy were jailed at the Old Bailey, one of their criminal associates, Garth Chappell, withdrew £348,000 from the account of a company called Scadlynn, at Barclays Bank in Bedminster, Bristol. ", "Over the next three weeks he took out another £1.1m from the same account. ", "The withdrawals had actually been going on throughout the trial.", "\n\nIn total about £13m had been sitting in the account of Scadlynn. ", "The money was laid out by respectable gold merchants such as Johnson Matthey and Engelhard as payment for large amounts of gold. ", "Unbeknownst to the buyers, this had been smelted from the high-grade Brink's-Mat gold – using the smelter purchased from the foundry in Worcestershire and driven to Kent in the gold Rolls-Royce – mixed with copper to disguise its origins. ", "The Assay Office in Sheffield, which was responsible for handing out hallmarks to jewellers and gold merchants, had been an unwitting accomplice in the laundering of the gold, even awarding Scadlynn a seal of approval which effectively gave the 'dirty gold' a clean bill of health.", "\n\nThe main player behind the smelting of the gold, besides Kenneth Noye, was a 31-year-old 'businessman' from Bath called John Palmer, later dubbed 'Goldfinger' for his alleged involvement in the handling of the Brink's-Mat gold. ", "Amazingly, he would at one stage be ranked alongside the Queen in 105th position on the _Sunday Times_ Rich List.", "\n\nBut it wasn't just Noye who was active. ", "The three other members of the actual Brink's-Mat robbery gang who had not been apprehended began coming out of the shadows in order to make sure they got a share of what they believed was rightfully theirs. ", "But their way of asserting their position risked drawing the wrong kind of attention upon themselves. ", "Suspected robber Brian Perry and his associate Gordon Parry began taking flights to Jersey, the Isle of Man, Switzerland, Spain and the United States.", "\n\nOther members of the gang and their associates began purchasing big houses in Britain, which naturally alerted the so far powerless authorities to their financial affairs. ", "As one investigator later explained: 'They should have just sat on it and invested it discreetly but in the end they couldn't resist chucking their cash around.'", "\n\nBack on the mean streets of south-east London, various other firms continued to carry out armed robberies. ", "Sources inside the underworld have confirmed to this author that members of the Brink's-Mat team helped finance some of these smaller blaggings. ", "The Brink's-Mat robbery was already influencing everything from crime to property prices. ", "In places such as the London Docklands, warehouses were suddenly at a premium because a number of them had already been bought with the proceeds of the robbery. ", "And at this point the dramatic aftermath of the so-called Crime of the Century was only just beginning to reveal itself.", "\n\n*\n\nIn November 1984 – a year after the robbery – south London villain Brian Reader met up with his old friend Kenneth Noye at Noye's wife Brenda's squash club, in Dart-ford, Kent, where they discussed how to convert yet more of the Brink's-Mat gold into cash. ", "This time they agreed the price would be three per cent above the fix price (the price at which gold is sold on the bullion markets) and that deliveries of the gold would start after Christmas. ", "Because of the number of forgeries flooding the market at that time, payment would be made in new £50 notes that could be easily verified.", "\n\nWith the middleman Reader happy to pay for the gold on these terms it was clear that a VAT fraud was being committed. ", "Kenneth Noye was also well aware that such a complex operation, which needed dozens of people to run it, required high levels of organization. ", "Noye should have been perfectly happy making over a million pounds a year out of his own lucrative role in handling the gold. ", "After all, it had the potential to go on for years without any hindrance. ", "But then he got greedy, and that's when the word started going out that Noye was _the man_. ", "In other words, Noye was Handler Number One – the man who was now responsible for turning most of the gold into hard cash\n\nBy early January 1985 Brian Reader alone was reckoned to have handled Brink's-Mat gold that had come through Noye worth £3.66m. It was being smuggled to Britain from Holland – where it had been taken after the raid as part of a complex additional 'earner' involving VAT fraud on the gold itself – in the Tupperware lunchboxes of various lorry drivers who worked for a haulage company with close links to one of Noye's oldest Kent friends. ", "The drivers took their vehicles to the quayside and left them to be shipped over to Britain unaccompanied – with the Tupperware boxes still on board. ", "British drivers then picked up the lorries when they arrived and took them to their destination. ", "Next Reader would collect the gold and take it back to his home in south-east London, from where Noye would pick it up a few days later.", "\n\nIt seemed like the perfect system to the two men, and they'd convinced themselves that they were on the verge of making more money than most people could even dream of. ", "But when it comes to crime there is always a problem lurking around each corner.", "\n\n### **TEN**\n\nTo maintain an effective surveillance operation against Brink's-Mat handlers Noye and Reader, Scotland Yard needed to carefully reinforce their Brink's-Mat inquiry team. ", "Following the successful convictions of Robinson and McAvoy it had been reduced to just twenty officers.", "\n\nA new senior detective was drafted in to take charge of the investigation and build up the squad to full strength once more. ", "That man was Acting Detective Chief Superintendent Brian Boyce, a former member of the anti-terrorist squad, who'd actually assumed that promotion opportunities had long since passed him by.", "\n\nBoyce – the son of a West End barrow-boy – had one ambition on entering the police service: to become a top detective at Scotland Yard. ", "Having achieved that aim (he was with Commander Frank Cater when the Kray twins were arrested) he had no desire to swap the gritty life of a detective out on the streets for the cosier confines of high office, complete with never-ending bureaucracy and Whitehall constantly breathing down his neck.", "\n\nBrian Boyce had an air of determined independence about him. ", "He was an accomplished jazz musician, a mountaineer of considerable prowess and a man with a strong interest in comparative religion. ", "His was a professionalism born of sheer love for the job. ", "He was also an officer who inspired great loyalty among Scotland Yard's elite detective force.", "\n\nDuring his National Service twenty-six years earlier in Cyprus, where he helped track down EOKA guerrillas, Boyce had picked up some vital experience of surveillance and intelligence-gathering – knowledge he was able to use on the Brink's-Mat case. ", "Boyce insisted that both Noye and Reader were put under even more rigorous surveillance in an operation that initially was to only involve C8 officers (C8 was the new title for the Flying Squad, though few people used it).", "\n\nOn Tuesday, 8 January 1985, detectives moved into position in a row of bushes by the public road in West Kingsdown, near the entrance of the long driveway to Kenneth Noye's home, Hollywood Cottage. ", "Within minutes, at 9.05 a.m., they watched as Brian Reader's green Vauxhall Cavalier left Noye's home and drove back to his own house.", "\n\nTwenty minutes after arriving, Reader left his house in Grove Park, shadowed by four unmarked Flying Squad cars. ", "He drove to Cowcross Street in central London, close to Hatton Garden. ", "He then parked up outside Farringdon Underground and mainline railway station and went to a telephone booth in the ticket hall to make a call.", "\n\nOne detective managed to walk close enough to Reader to see the phone number he was dialling. ", "It turned out to belong to a nearby shop. ", "Reader then walked out to the street, looked up and down, returned to the phone and dialled the number again. ", "The same thing happened once more before Reader left the station and went into a café on the opposite side of the road.", "\n\nTwo detectives watched from a distance as Reader sat at a table in a booth with two other men. ", "One of them was 24-year-old Tommy Adams, an asphalter by trade, but one who also happened to be a member of the notorious Adams family from north London. ", "They'd been brought in as 'decent handlers' who would help provide a route for the gold to be turned into cash. ", "The other man was a well-known figure around Hatton Garden, a gold dealer called Christopher Weyman who ran a business called Lustretone Ltd, in Greville Street.", "\n\nReader wrote something down on a piece of paper, which he showed to the two men. ", "Next the three of them left the café and walked across the road to Reader's car. ", "Adams leaned in and brought out what looked to be an unusually heavy, oblong parcel about one foot long. ", "Adams then placed the parcel carefully in the boot of a nearby white Mercedes sports car, which Adams and Weyman drove away in.", "\n\nMeanwhile back at Hollywood Cottage other detectives saw a Ford Granada belonging to Kenneth Noye's friend Michael Lawson drive up to the house. ", "The Granada was being driven by a man aged about twenty. ", "The same car left soon afterwards and was later spotted outside Noye's former home in Heaver Avenue, West Kingsdown, less than a mile away. ", "That house was now owned by John 'Little Legs' Lloyd, one of the members of the Brink's-Mat gang who had never been apprehended by police.", "\n\nThat Tuesday afternoon Kenneth Noye was seen leaving Hollywood Cottage with another man in a blue Range Rover. ", "Once again, C8 officers followed from a discreet distance.", "\n\nAfter twelve miles they watched the Range Rover turn off the A20 Sidcup bypass into the secluded car park of the Beaverwood Club, a Spanish hacienda-style nightclub set back from the road behind a screen of trees. ", "Noye stayed for five minutes before driving off again. ", "Although the police did not realize it at the time, this was a special secret rendezvous spot used by Noye to meet Reader away from any prying eyes.", "\n\nPolice were in no doubt that Noye was the key to the distribution of the Brink's-Mat gold, but they knew that they had to move in closer to observe Noye if they wanted to gather concrete evidence. ", "That would require a highly specialized team of undercover officers who could remain outside for long periods of time, no matter what the conditions.", "\n\nAs a result, C11 officers from the Met's Specialist Surveillance Unit took up position near Noye's house in West Kingsdown. ", "They were a handpicked group, no more than eight in total, who had been trained in reconnaissance and close-target surveillance by specialists from the SAS. ", "The C11 team training course included hiding beneath floorboards for three days at a time, in a gap just 18 inches high, and spending a similar length of time dug into a hole in the ground in open countryside.", "\n\nBecause Kenneth Noye lived in Kent, approval had to be obtained from the Kent police force since the operation was on their 'territory'. ", "And that threw up a different set of problems.", "\n\nWhen the Met had arrested Kenneth Noye back in 1977 for receiving stolen goods, they'd done so without the knowledge of the local force because they were well aware that Noye had 'friends' there. ", "His relationships with certain Kent officers had long been of great concern to the Met. ", "So it was decided that only the highest-ranking Kent officers should be put fully in the picture.", "\n\nThe C11 surveillance team working near Noye's house in West Kingsdown established a command centre in a ground-floor room in the Stacklands Retreat House, a convalescent home for Anglican clergymen opposite the entrance to Noye's home, which was situated on the quiet, wooded School Lane. ", "A hideout made from branches and leaves was carefully constructed in bushes under an oak tree near the gates to the Retreat so that round-the-clock observation could be carried out on Hollywood Cottage.", "\n\nJust above the huge cast-iron gates that formed the entrance to the driveway to Noye's home, a video camera disguised as a bird box was placed in an overhanging tree. ", "Meanwhile on the road outside Reader's house over in Grove Park, a variety of vehicles were used to keep watch.", "\n\nAt midday on the day after C11 had first moved into position, Brian Reader drove from his home in Grove Park to the Crest hotel, in Bexley, where Kenneth Noye was already waiting in his Range Rover. ", "As Reader's Cavalier approached, Noye did a U-turn and drove off towards London. ", "Reader immediately followed. ", "Not long afterwards the two vehicles turned into a side road and parked. ", "C11 Detective Constable Myrna Yates, thirty-six, shadowed the pair on foot and – remaining hidden from view – watched as Noye handed Reader a black briefcase.", "\n\nThe following day Noye and Reader again met at lunchtime in the car park of the Beaverwood Club. ", "Fifteen minutes later Reader departed and police shadow WDC Yates followed him to the Royal National hotel, in Bedford Way, Bloomsbury, in central London. ", "WDC Yates followed him into the hotel lobby to find Reader sitting at a table talking to Christopher Weyman and Tommy Adams – the same men he'd met a few days earlier at Farringdon station. ", "Ten minutes later they drove off in the same white Mercedes.", "\n\nC11 officers tailed the Mercedes through north London to Paddington railway station. ", "Adams was carrying what appeared to be a very heavy brown briefcase, and both he and Weyman seemed agitated. ", "They made two telephone calls, then bought two first-class rail tickets and boarded a train for Swindon, eighty miles west of London. ", "On board the train with them were three surveillance officers.", "\n\nOn arrival at Swindon station, Weyman made several phone calls. ", "Then the two men sat and waited. ", "Eventually they got up, shook hands and waved to each other as though they were about to part company. ", "One moved off, only to be followed at a distance by the other – a deliberate ploy to try and establish if someone was following them. ", "Further down the road the two men met up again and headed for a fish-and-chip bar in a street opposite the station.", "\n\nEventually a black Jaguar XJS pulled up. ", "Inside it was Garth Chappell – the 42-year-old managing director of Scadlynn, the bullion company to which so much of the gold had already been delivered. ", "Chappell was with Terence Patch, a Bristol businessman who occasionally worked for the company.", "\n\nAdams and Weyman immediately placed the heavy briefcase in the boot of the Jaguar. ", "It sped off – with detectives following – back to Scadlynn, which was based in North Street, Bedminister, a rundown area of Bristol. ", "At about 6.30 p.m. Adams and Weyman returned by train to Paddington station. ", "They were clutching another briefcase. ", "This time C11 shadows followed the two men as they got into the same white Mercedes from earlier and drove to Russell Square in central London, where Weyman handed the briefcase to Colin Reader.", "\n\nThe following day Reader made yet another visit to the car park of the Beaverwood Club, near Kenneth Noye's house in Kent. ", "Reader made a phone call from a public call box and stayed in the car park for just eight minutes this time. ", "Then the trail went cold for almost a week as none of the suspects did anything to alert the attention of the police surveillance operation.", "\n\nSix days later, Brian Reader made an evening visit to Kenneth Noye's home at Hollywood Cottage. ", "Next he drove to Cowcross Street, where once again he was met by the white Mercedes. ", "This time a man got out of the Merc and leaned into Reader's car while he examined some papers. ", "But their C11 shadows couldn't make out what was being said. ", "Eventually the man returned to the Mercedes and drove off. ", "Police almost immediately lost the car in thick London traffic.", "\n\nFive days after this Reader paid yet another visit to Cowcross Street, where he met Tommy Adams in the café they'd used before. ", "Twenty-five minutes later a London black cab pulled up. ", "Weyman and a man wearing a brown sheepskin jacket got out, both carrying boxes. ", "Tommy Adams emerged from the café and opened the boot of his sports car where the boxes were then placed. ", "The group adjourned to the café for thirty minutes, then the boxes were transferred to the boot of Reader's car. ", "Reader, followed by C11, then headed out of London to Noye's home at Hollywood Cottage in West Kingsdown.", "\n\nThe following day Reader returned once again to that same café in Cowcross Street. ", "This time he was seen talking to an acquaintance who was a jeweller, and who'd long been suspected by police of being a fence for stolen goods. ", "While the two men were talking, the white Mercedes drew up and Weyman entered the café where Reader got something quite small wrapped in a green Marks and Spencer's carrier bag from his pocket and placed it on the table between them, keeping his hands resting carefully on the package.", "\n\nWeyman then handed an envelope to Reader, who immediately let go of the package. ", "As he'd already done several times, Reader went back to Noye's house, where he stayed briefly before heading home.", "\n\nBut within fifteen minutes of arriving back at his own house in Grove Park, Reader drove back to the Royal National hotel again. ", "He rejoined the jeweller from earlier that day and they sat looking out of the window until the white Mercedes arrived again.", "\n\nAs soon as it pulled up, Reader and the jeweller left the hotel and joined Weyman. ", "The three of them walked across to Reader's Cavalier. ", "Adams – who had left his sports car to join them – was handed a large package wrapped in brown paper, which he dropped into his own car before moving off.", "\n\nAdams then headed for the M4 motorway. ", "An hour and a half later he took Junction 15, the Swindon turn-off, and 200 yards further on pulled into the car park of the Plough, a small country pub. ", "Adams parked directly behind the Jaguar previously seen by C11 outside Scadlynn Ltd.\n\nThe boots of both cars were opened and a group of men clustered around the Mercedes. ", "Two men lifted a heavy object out of the boot and transferred it to the Jaguar. ", "Surveillance officers knew it had to be gold.", "\n\nThe Jaguar then left the pub car park and headed westwards with C11 in discreet pursuit. ", "The car went off at the Bath exit of the motorway but was soon lost in a maze of twisting country lanes close to where one of the suspects lived. ", "The next morning detectives saw it parked outside Scadlynn.", "\n\nOn the following Thursday evening, Brian Reader once again visited the Royal National hotel. ", "This time Weyman appeared with a large brown leather briefcase with fold-over flaps. ", "Reader took the case to Kenneth Noye's house later that same night.", "\n\nThe police surveillance team had no doubt that huge amounts of the Brink's-Mat gold were on the move.", "\n\n*\n\nAfter almost three weeks of surveillance, operational commander Brian Boyce gave a briefing in a south London police station to the twenty or so officers who'd been involved in the operation so far. ", "On the basis of the data collected, warrants were obtained from a London magistrate for raids on thirty-six addresses in Kent, London and the Bristol area. ", "But that didn't necessarily mean the raids would happen instantly.", "\n\nBoyce believed that all or part of the £26m worth of Brink's-Mat gold was at Noye's home, Hollywood Cottage, but he couldn't be absolutely certain because a number of the transactions involving Reader had been somewhat confusing. ", "Reader had been seen handing over heavy packages but he had also received some, which he'd then taken to Noye's home. ", "Was it possible that Reader was also acting as a conduit to Noye from some other source, delivering the gold to Hollywood Cottage for some kind of processing before handing it on further down the chain?", "\n\nThere was also another dilemma for Brian Boyce and his senior detectives. ", "If the Flying Squad postponed some of the raids, would those people who hadn't been arrested think that they had escaped detection and unwittingly lead police to more of the Brink's-Mat bullion at a later date?", "\n\nBrian Boyce had three options: he could pounce on Noye's house at West Kingsdown and then decide what to do about London and Bristol. ", "Or he could intercept the gold at Scadlynn and follow up with further raids in Kent and London. ", "His final choice was simply to move in while the gold was actually in transit and then decide which raids to carry out.", "\n\nBoyce concluded that the movements of Reader and Noye would determine which of these three options he chose. ", "Meanwhile the special surveillance unit would continue their observation of Hollywood Cottage to provide the most detailed information possible on movements. ", "C8 officers were on constant standby at the Retreat House to remain in contact with the C11 post.", "\n\nA second C8 team was posted close to Reader's home in Grove Park, with a third team placed in central London and a fourth taking up positions in the M4 area, west of London. ", "A smaller fifth unit was to be kept mobile, ready to give back-up when and where it was required.", "\n\nBoyce set a time limit of seventy-two hours for the operation. ", "That meant they had to move in at some point within that time span, otherwise it would have to be aborted. ", "Frustratingly, it was primarily the cost of police overtime that made this a necessity. ", "Another factor was that seventy-two hours was the maximum time that a surveillance officer could be expected to remain hidden and continue to be competent.", "\n\nAlthough Boyce and his senior officers had just been informed by their Kent colleagues that Noye kept firearms at Hollywood Cottage, Boyce decided that none of his men would be armed. ", "Boyce saw no actual evidence that his officers' lives would be in danger. ", "Noye's shotguns, he felt, were not kept for criminal purposes but were part of the Kent country-squire image he had been trying to build for himself in West Kingsdown.", "\n\nFurthermore, Brian Boyce believed that in this instance they were dealing with the middlemen, not the robbers themselves. ", "Boyce's decision was also influenced by the outcry two years earlier when Stephen Waldorf, a film editor, was shot five times and seriously wounded in a London street after having been mistaken for a violent criminal. ", "Brian Boyce had been working at C11 at the time, and was one of the officers responsible for authorizing the arming of the officer who'd pulled the trigger.", "\n\nOne last factor behind Brian Boyce's decision was that if an armed officer of one force entered the jurisdiction of another, the chief constable of the second force had to be informed immediately and to provide armed officers from among their own men as back-up. ", "There remained a real fear that someone inside Kent police might tip off Noye about the surveillance operation, so Boyce wanted to confine knowledge of it to as few people as possible.", "\n\nBrian Boyce couldn't know for certain if the gold was hidden in Noye's house itself, or somewhere in the grounds. ", "He was aware that there were a number of concrete bunkers in the garden where the gold might be stored. ", "Another problem was that the gates to Noye's mansion were always kept locked and could only be opened by remote control after callers had been identified over a closed-circuit television system.", "\n\nBoyce did not want to give the occupants warning of a raid. ", "He feared that they would flee or hide incriminating evidence in the grounds while police were still trying to get in. ", "Boyce's observations to his C11 specialists struck them as nothing out of the ordinary – this was the kind of work they had been trained for – but even the best-laid plans are always at the mercy of unforeseen circumstances.", "\n\n### **ELEVEN**\n\nUntil daytime surveillance team DC Russell Sinton and DC Stephen Matthews witnessed an innocent-looking domestic drama there hadn't been any activity at Hollywood Cottage on the morning of 26 January 1985. ", "Kenneth Noye's wife Brenda was about to take their two sons Kevin and Brett to stay with her mother when the Ford Granada she intended to use failed to start. ", "Believing that one of the battery terminals needed cleaning, Noye took a knife from the kitchen and tried to sort it out. ", "When that failed, he started the car with jump leads from the Range Rover parked alongside. ", "Brenda Noye and the two boys eventually drove off in the Range Rover and Noye left moments later in the Granada, having tossed the knife into the footwell of the passenger side of the car.", "\n\nOver at Brian Reader's home that same day there was no movement until 1.10 p.m. when Reader was seen driving off in his Vauxhall Cavalier in the direction of Noye's house. ", "Two Flying Squad officers – DS Anthony Yeoman and DC Bruce Finlayson – were close behind in a covert surveillance vehicle.", "\n\nFour miles down the A20, Reader turned into the car park of the Beaverwood Club. ", "But this time Kenneth Noye was nowhere to be seen. ", "Four minutes later Reader left the car park with DS Yeoman and his partner following at a discreet distance. ", "What those officers did not realize was that Reader thought he'd arrived too early at the car park. ", "Reader then drove up the A20 to the Ruxley Corner roundabout two miles away, where he turned and doubled back on his tracks. ", "The officers following feared they would be easily spotted by Reader and pulled back to such an extent that they lost him.", "\n\nIn fact, Reader had turned up at the Beaverwood Club too late for his meeting with Noye, which had been arranged for 1.00 p.m. Noye, despite the problems with his car, had been there on time. ", "He had waited some twenty minutes, even joining the AA at a nearby kiosk, before deciding that Reader wasn't going to show up.", "\n\nIt wasn't until 2.25 p.m. that afternoon that Reader was next spotted outside the imposing gates to Hollywood Cottage. ", "C11 officers Sinton and Matthews watched as Reader, finding that the gates were locked and no one was in, drove away.", "\n\nA few miles away Kenneth Noye was enjoying a secret liaison with his mistress Jenny Bishop. ", "They were seen drinking together in a pub, then visiting a mutual acquaintance before stopping for a couple of hours at the love nest he'd bought for her in Dartford. ", "Later that afternoon Noye and his wife Brenda arrived back at Hollywood Cottage separately.", "\n\nAt 6.12 p.m. Brian Reader turned up at the house once again, and this time was able to enter the gate. ", "Nearby a new surveillance team had moved into position. ", "The watching police were convinced that Reader and Noye had missed an important rendezvous earlier that day.", "\n\nActing DI Robert Suckling was parked two miles away in a C8 vehicle near the Brands Hatch motor-racing track. ", "He immediately ordered the two-man surveillance team into the grounds of Hollywood cottage. ", "Even by 6.15 p.m. the January evening was bitterly cold. ", "The only vague sound was the hum of traffic from the motorway a mile away across the fields.", "\n\n'Move in.'", "\n\nDeep surveillance officer DC John Fordham, forty-three, signalled to his partner DC Neil Murphy, thirty-seven, and they headed silently towards the perimeter wall of Noye's grounds.", "\n\nFordham, a dedicated family man with three children from Romford, in Essex, was the more senior of the two. ", "Called 'Gentleman John' by friends and colleagues because of his old-fashioned good manners, Fordham had been in C11 for nine years. ", "He'd even turned down promotion to remain at the sharp end of police work. ", "Fordham had been a late entrant into the police force, joining in his late twenties after a variety of jobs, including work as a merchant seaman and a prison officer in New Zealand. ", "He had also travelled extensively throughout Europe and Asia.", "\n\nBut once in the force, Fordham's professionalism, sense of responsibility and quiet self-confidence singled him out as an above-average officer. ", "Unusually for the Metropolitan Police, Fordham became a detective without having to sit the customary formal examination. ", "He won four commendations for bravery, and by the time he was assigned to the Brink's-Mat inquiry he had a reputation for being, in the words of one senior Scotland Yard officer, 'one of the most experienced and best-trained surveillance officers in the country'.", "\n\nHis partner and back-up man, bachelor Neil Murphy, came from a close-knit mining family in a County Durham pit village. ", "He'd joined the Met nine years earlier in 1975 following a short career as a regular soldier. ", "Murphy loved solitary sports like skiing and windsurfing. ", "He had the right degree of fitness and self-sufficiency for the job and something else too – an actor's eye. ", "Even when off-duty he would constantly study the mannerisms of people in an effort to improve his powers of disguise. ", "In 1980 Murphy was recommended for a posting to C11.", "\n\nMurphy's dedication to the job had so impressed John Fordham that after his apprenticeship they'd continued working together, and the teacher-pupil relationship developed over the years into one of real friendship, although it was always clear that Fordham was the senior partner.", "\n\nBack outside Hollywood Cottage, Fordham and Murphy had emerged from behind their makeshift observation post hidden behind some bushes and were creeping across the quiet country lane until they reached the low wall at the front of the grounds. ", "Both were dressed in rubber wetsuits, camouflage clothing and balaclavas. ", "Fordham and Murphy were also carrying yeast tablets to pacify Noye's Rottweilers if required, though they knew that they did not always work. ", "Fordham's kit included a pair of light-intensifying night-sight binoculars, a webbing scarf, gloves, two balaclavas, a woollen helmet, a camouflage hood, a peaked, camouflage-coloured forage cap and a green webbing harness to keep the larger radio set in position while crawling through the undergrowth.", "\n\nBeyond the wall the two officers could see more than a hundred yards of sweeping driveway by the light of a string of mock-Victorian lamps. ", "There were small copses and shrubbery to one side and an open lawn to the other, dotted with newly planted saplings.", "\n\nAt the top of the driveway were the lights of Hollywood Cottage. ", "Seconds later – without a word being spoken between them – the two officers went over the wall, crouched low and waited to see if they'd been spotted.", "\n\nA minute later, satisfied that all was clear, they moved towards the house, leapfrogging forward, one of them advancing while the other held back as a lookout to warn if they had been seen. ", "Keeping close to the perimeter fence, they made for the copse and shrubbery in front of the large barn, known as the apple store. ", "That would give them enough cover to watch events at the house undetected.", "\n\nBoth undercover officers communicated with police through two radios that each of them carried. ", "Their experience had taught them that the tiny body-set radios (these were radio devices that were integrated into the officer's clothing, however they were easily affected by movement, so were of limited use) usually worn by surveillance officers were often inadequate for good reception in rural areas. ", "The proximity of the aerial to the ground tended to interfere with transmissions, particularly when they were sending messages. ", "So they were each equipped with a larger set for sending messages, while using the smaller set for receiving. ", "Fordham and Murphy's contact man outside the grounds was DS Robert Gurr, a crusty C11 veteran. ", "But the rule for such operations was that once they had to take up their close surveillance positions, they were effectively on their own.", "\n\nFordham and Murphy got to the cover of the shrubbery and copse surrounding the garage some 60 yards in front of the house. ", "Fordham was in front on one knee beside a tree waiting for Murphy to move forward when one of Noye's Rottweilers appeared out of the darkness.", "\n\nMurphy was startled. ", "His hand flew to his pocket and he tried to feed the yeast tablets to the dogs but they weren't interested. ", "They continued barking louder and louder. ", "Fordham grabbed his radio set.", "\n\nHe whispered: 'Dogs – Hostile.' ", "It was picked up by the other officers in the Retreat across School Lane.", "\n\nInside the house, Noye led Reader into the kitchen to admire some photographs of the house, taken earlier that month, showing the cottage covered in snow. ", "A cup of tea was made, then Noye took Reader into his study to discuss business.", "\n\n'What the fuck happened to you today, Brian? ", "Why didn't you show?' ", "started Noye angrily.", "\n\nJust then he heard the dogs making a commotion outside.", "\n\nNoye opened the study door and shouted to Brenda.", "\n\n'Brenda what's happening with those dogs?'", "\n\nMoments later Brenda Noye appeared in the room.", "\n\n'They're down by the barn. ", "I'm not going down there. ", "It's too dark.'", "\n\nBrenda Noye was one of the three to head off down into the darkness towards the dogs. ", "Noye grabbed his leather jacket from behind a chair and headed for the front door.", "\n\nOutside – after gesturing to Fordham – Murphy began to withdraw. ", "He presumed Fordham would follow him. ", "The first maxim of a C11 officer is: 'Blow out rather than show out.' ", "In other words, if his presence is discovered he should withdraw. ", "Failing that he should identify himself as a police officer. ", "But with such hostile dogs there was only one option.", "\n\nAt 6.25 p.m. Murphy radioed to his colleagues: 'Neil out toward fence.'", "\n\nHe walked through the shrubbery and made for the end of a wooden fence that separated Noye's land from another house in School Lane. ", "Outside Hollywood Cottage, Kenneth Noye found a torch in the Granada parked in the garage. ", "He also grabbed the knife he'd been using earlier to clean the battery tops.", "\n\nHolding both items in his left hand, Noye walked down the drive calling to the older of the dogs, Sam, and one of the puppies, Cleo. ", "The other dog, Cassie, was still in the kitchen. ", "Reaching the apple store area, Noye saw the dogs on a pile of sand barking into the shrubbery. ", "He swung the torch in the same direction. ", "Noye then moved into the wooded area, letting the beam pan the ground in front of him.", "\n\nAt 6.27 p.m. Fordham came on the radio.", "\n\n'Somebody out, halfway down drive, calling dogs.'", "\n\nAt the boundary fence, Murphy walked up to the end furthest from Hollywood Cottage and, using a tree for support, climbed up to balance on top to take stock of the situation. ", "Looking down to where he had last seen the Rottweilers, Murphy spotted a figure with a torch obviously searching in the shrubbery.", "\n\nThe light suddenly moved towards Murphy, prompting the police officer to drop into the garden on the other side of the fence. ", "Murphy then tried to attract the attention of the dogs to help his partner.", "\n\nHoping that perhaps Noye would think he was an irate neighbour and call off the dogs, or that Noye would come down to the fence to see who was behind it, allowing Fordham to escape, Murphy shouted through the fence: 'Keep those dogs quiet!'", "\n\nJust then a noise to his left attracted Kenneth Noye's attention. ", "He swung the beam of light in that direction. ", "The light instantly fell on a hooded figure just four or five feet away. ", "Noye froze with horror. ", "All he could see of the man was two eyeholes and a mask.", "\n\nNoye later said that the figure struck him a blow across his face. ", "Immediately after being hit, Noye claimed he dropped the torch, grabbed the knife from his pocket and put his left hand up to the other man's face and grabbed him.", "\n\n'Brenda. ", "Help!' ", "he screamed in the direction of the house.", "\n\nThen Noye used all his brute strength to smash his fists into the man over and over again. ", "But still the man kept coming. ", "Dressed in black, and with that mask on, he seemed huge to Noye.", "\n\nNoye began to plunge his knife into John Fordham's body, and in the tussle that followed both men fell to the ground. ", "Fordham came down on top of Noye, who struck him again and again. ", "Noye then broke free and began running up the drive. ", "He looked back momentarily and saw the figure staggering to his feet and starting to move towards the garden wall.", "\n\nIn Hollywood Cottage, Brenda Noye rushed upstairs to their bedroom cupboard and took out a shotgun – one of at least half a dozen that the couple kept there. ", "She also grabbed four cartridges from the same cabinet.", "\n\nLoading the gun as she ran, Brenda Noye – in tracksuit and slippers – and Brian Reader headed down the drive in the direction of where they'd heard Noye shouting.", "\n\nHalfway down, Noye ran towards them.", "\n\n'There's a masked man down there,' shouted a breathless Noye.", "\n\nHe grabbed the gun, which was by now in Reader's hands.", "\n\nRunning back to the copse with Brenda and Reader close behind, Noye picked the torch up off the ground and made towards the gate. ", "Then Noye spotted the dogs surrounding the masked figure lying slumped on the ground. ", "He went straight to the man.", "\n\nJust a few yards away, Fordham's partner Neil Murphy was walking back along the lane towards the wall at the front of the cottage grounds when he heard a woman screaming. ", "Moving into some bushes beside the entrance to the Retreat, Murphy looked into the grounds and saw two men and a woman. ", "Both of the men were shouting and looking down at the ground, one of them pointing something.", "\n\nMurphy immediately radioed in: 'Man compromising John. ", "Stick/shotgun.'", "\n\nMurphy later claimed that at one stage he saw one of the men step forward and kick the figure on the ground. ", "He remained in his hiding place, transmitting back to the Retreat everything he could see and hear. ", "He was following classic C11 training. ", "He was there in a surveillance role, not an operational one.", "\n\n'Who are you?' ", "shouted Noye angrily. '", "Who are you?'", "\n\nFordham was still wearing his balaclava hood.", "\n\nNoye noticed the policeman's night-sight binoculars. ", "After the event he said that he thought he'd been dealing with a rapist or a peeping Tom.", "\n\n'Who are you? ", "Take that mask off!' ", "shouted Noye.", "\n\nNo response from the masked figure.", "\n\n'Who are you? ", "Take that mask off!'", "\n\nNoye pointed the shotgun at the man. ", "There was no reaction.", "\n\n'If you don't take that mask off and tell me who you are, I'll blow your head off,' threatened Noye.", "\n\nThen, according to Noye's later testimony, Fordham groaned and started to take off his hood.", "\n\n'SAS.'", "\n\nA beat of silence followed.", "\n\n'On manoeuvres.'", "\n\n'Show us your ID, then,' ordered Noye.", "\n\nThere was no reply. ", "Even by torchlight John Fordham looked deathly pale.", "\n\nNext Kenneth Noye proved just how adept he was at thinking on his feet.", "\n\nOn leaving the shrubbery, he found he was bleeding from a cut near his eye and nose, injuries caused during his struggle with Fordham.", "\n\nKenneth Noye believed he needed photographic evidence of the struggle.", "\n\n'Get a camera, Brenda, quick,' ordered Noye.", "\n\nAnd, as an afterthought:\n\n'You'd better call an ambulance for 'im.'\n\nNoye stood by John Fordham for a few moments, looking down at the policeman.", "\n\nHe knelt down and opened Fordham's jacket to get a closer look at the wounds he had inflicted just moments earlier.", "\n\nIn a much quieter voice he asked Fordham: 'What on earth are you doing here?'", "\n\nFordham didn't answer. ", "His head fell back awkwardly, so Noye put his arm under him to get him into a better position. ", "Then a police car burst through the gates to Hollywood Cottage.", "\n\nThe first men into the grounds were Flying Squad detective constables David Manning and John Childs. ", "They had been in an unmarked police car in the Retreat's drive, moving slowly forward, when the order came.", "\n\n'All units AM [a C11 code],' came over the radio.", "\n\nChilds and Manning tore into School Lane. ", "The gates to Hollywood Cottage had been left partly open after Reader's arrival, and they swept through them into the driveway.", "\n\nWithin seconds the car's headlights illuminated a body collapsed on the ground with a figure armed with a shotgun next to him. ", "The dogs were still pulling and tugging at Fordham.", "\n\n'Stand by, all units!' ", "screamed John Childs into the car radio set. ", "That meant they were not to enter the grounds at that point.", "\n\n'I am a police officer,' shouted Manning at Noye, holding up his warrant card.", "\n\nNoye moved towards him, pointing the shotgun and shouting, 'Fuck off, or I will do you as well.'", "\n\n'Put the gun down and get those dogs away from the officer,' said Manning.", "\n\nMoments later the Rottweilers turned on Manning, snapping at his feet. ", "One of them jumped up at him.", "\n\nAs he tried to knock the dogs away, Manning took off his jacket and wrapped it around his arm. ", "Ignoring the shotgun pointed in his direction, Manning then walked over to where Fordham was lying.", "\n\n'He's done me. ", "He's stabbed me,' muttered the wounded officer.", "\n\nThe Rottweilers jumped up and tore at Childs's clothing but he managed to struggle past them back to the car, from where he called an ambulance and ordered all police units in.", "\n\nMeanwhile Kenneth Noye began walking back towards his house, still levelling the shotgun at Manning before he disappeared into the darkness. ", "Looking down at John Fordham, Manning could see blood on his chest and stomach, and he immediately began giving first aid, but Fordham quickly lost consciousness. ", "In the confusion that followed, Brian Reader fled from the scene by foot. ", "He scrambled over garden fences and through private properties.", "\n\nIt was the start of the longest night in all those people's lives.", "\n\n### **TWELVE**\n\nBack at John Fordham's side Noye reappeared and found himself face to face with DC Manning.", "\n\n'He's a police officer,' Manning told Noye.", "\n\n'The SAS man?' ", "replied Noye. '", "What are you on about? ", "He's a police officer? ", "Look at him! ", "He's masked up!'", "\n\nThe dogs were getting in the way again. ", "The third Rottweiler, Cassie, had also joined them.", "\n\n'Get those dogs out of the way,' said Manning.", "\n\n'I can't get the dogs out of the way. ", "They haven't got their collars on and they don't pay any attention to me anyway.'", "\n\n'Go and get the leads.'", "\n\nNoye moved off towards the house and bumped into his wife Brenda coming down the drive. ", "She had the camera, flash gun and mobile phone. ", "Noye took the camera from her as well as the flash, which he put in his pocket.", "\n\n'I couldn't get through for the ambulance,' said Brenda.", "\n\nNoye grabbed the mobile phone off her.", "\n\n'Go and get the dogs' leads,' he repeated.", "\n\nNoye then returned to the three police officers.", "\n\n'My wife couldn't get through for an ambulance.'", "\n\n'I've already got them,' said DC Childs.", "\n\nThe dogs were still barking and jumping up.", "\n\n'Where's the dog leads?' ", "asked Manning, growing increasingly agitated.", "\n\n'I've sent my wife.'", "\n\nNoye later claimed that he was ordered by Manning to take the shotgun and leave it in a broken position up against the wall besides the front door to the house. ", "Just after that, another car pulled up and two men jumped out, armed with what looked like baseball bats.", "\n\nThose two men were DS Yeoman and DC Finlayson, who had earlier that day followed Reader from his home to the Beaverwood Club and later trailed him to Noye's home at Hollywood Cottage. ", "They'd been stationed outside the Portobello Inn just half a mile from Noye's house.", "\n\nYoeman noticed Noye was carrying a camera over his shoulder.", "\n\n'Come here, you,' he yelled.", "\n\nNoye ignored them all and disappeared between the garage and the swimming pool building.", "\n\nWhen he reappeared some moments later, Finlayson grabbed Noye's left arm and said: 'Police.'", "\n\n'I know' replied Noye, as cool as ice.", "\n\n'What's been happening?'", "\n\n'I took the knife and did him. ", "Old Bill or not, he had no fuckin' business being here.'", "\n\nNoye was then cautioned by Finlayson. ", "He did not reply. ", "They started walking back towards the front door of Hollywood Cottage.", "\n\nFirst on the scene, DI Suckling noticed Brenda Noye standing by the front of the house.", "\n\n'You're being arrested,' he told her.", "\n\n'Why?' ", "she asked.", "\n\n'A policeman has been very badly hurt here tonight. ", "You're being arrested in connection with that.'", "\n\n'He shouldn't have come here.'", "\n\nBrenda Noye was put in the back of a police car.", "\n\nMeanwhile other policemen were pouring into the grounds of Hollywood Cottage.", "\n\nIt was only then that officers noticed Brian Reader had disappeared.", "\n\n'Where is he?' ", "one officer asked Noye.", "\n\n'Mind your own fuckin' business,' replied Noye.", "\n\n'D'you realize that the police officer you stabbed is dying?' ", "asked the officer.", "\n\n'He shouldn't have been on my property. ", "I hope he fuckin' dies.'", "\n\nThe officer lunged at Noye and pushed him hard against the wall.", "\n\n'What sort of animal are you that could wish anybody dead?'", "\n\nAt that moment another police officer appeared alongside his colleague.", "\n\nWhile Noye and Brenda were kept under arrest at the house, police officers continued trying to save the life of John Fordham.", "\n\n'Let me go,' Fordham moaned as he drifted in and out of consciousness.", "\n\nHe was given cardiac massage and mouth-to-mouth before, shortly after 7 p.m., the ambulance arrived. ", "Neil Murphy accompanied Fordham on the journey to Queen Mary's hospital in Sidcup.", "\n\nAs the ambulance set off, Murphy helped paramedic Bryan Moore by holding the oxygen mask over Fordham's face. ", "Murphy thought he saw signs of life in his colleague until Moore pointed out that this was just the oxygen going in and out of Fordham's body. ", "His pulse had already stopped.", "\n\nTwelve minutes later they arrived at the hospital where Fordham was seen by duty surgeon Graham Ponting. ", "He could detect no sign of a pulse, although tests showed there was still some electrical activity in the heart. ", "He found at least ten stab wounds on the body.", "\n\nA blood transfusion into Fordham's ankle was set up and an operation carried out. ", "Several more attempts were made to get the heart going again, using direct injections of drugs and electrical shocks, but at 8.20 p.m., Fordham was pronounced dead.", "\n\nPathologist Dr Rufus Crompton, who examined the body the following morning, found the stab wounds consistent with blows from a single-edged blade about one centimetre wide and seven centimetres long. ", "Five of the wounds were on the front of the body; three were on the back; one was in the armpit and one was on the head.", "\n\nThe two wounds that were fatal both penetrated Fordham's heart. ", "One was delivered with the force of a punch and severed the fifth rib to enter the left ventricle. ", "The other, two centimetres below, had just nicked the right ventricle. ", "In both cases the knife had been plunged in to a depth of seven centimetres, and a small bruise beside the entry point of each wound suggested that the knife had been pushed in to the hilt.", "\n\nThe close proximity of the five wounds at the front of the body suggested that after the first one, all the rest had been inflicted while Fordham was immobile. ", "They were consistent with a right-handed assailant, face to face with the policeman, who had delivered the blows to the front and had then reached behind to stab Fordham in the back.", "\n\nPolice always suspected that Reader was involved, but charges against him in connection with the actual killing were dropped, although he would be jailed for nine years for his part in handling the gold.", "\n\nThree other wounds to Fordham's back looked to have been inflicted by a knife held like a dagger. ", "Indicating that he had been trying to get away from his attacker, these wounds proved Fordham was still on his feet when he sustained them. ", "Noye always insisted he never held a knife in that way. ", "The torso also had a bruise to the chest. ", "It was consistent with a blow from a light object, a fall, a punch or a kick.", "\n\nHalf a mile away, Brian Reader had scrambled through bushes and across fields before eventually reaching the main A20 road which leads back to London. ", "But for a man who had just witnessed a killing connected to a notorious gold bullion robbery, he chose an extraordinary way to make good his escape – Reader tried to hitch a lift.", "\n\nAt 7.40 p.m., Kent Police Detective Sergeant Barry McAllister was at the wheel of his squad car when he spotted Reader standing by the side of the road on the outskirts of West Kingsdown just past a pub called the Gamecock. ", "McAllister was fully aware of the description of the man missing from Hollywood Cottage.", "\n\nAlso travelling into West Kingsdown from the London direction as Reader stood thumbing a lift were Flying Squad detectives Alan Branch and John Redgrave, who were in an unmarked car. ", "Redgrave immediately recognized Reader from surveillance duties he'd carried out on 8 January outside Farringdon Street station, while Branch knew him from the station and Russell Square two days earlier. ", "Both detectives leapt from their vehicle to detain Reader, but by that time Reader was already running up to the Kent police car.", "\n\nDC Paul Gladstone, in the passenger seat, wound down his window as Reader approached.", "\n\n'Any chance of a lift to London?' ", "asked Reader.", "\n\n'Yes, get in,' replied Gladstone.", "\n\nAs the car pulled off, Gladstone revealed that he and McAllister were policemen and asked Reader where he had come from.", "\n\n'The pub,' replied Reader, indicating the Gamecock.", "\n\n'Where were you before that?'", "\n\n'What's all this about?' ", "asked an increasingly anxious Reader.", "\n\n'We're looking for a man in connection with a serious incident tonight. ", "Where did you come from before the Gamecock?'", "\n\nReader did not reply but shoved his right hand into his pocket. ", "Fearing that he might be armed, Gladstone asked to see what he was holding. ", "Reader showed him a few coins. ", "He was then ordered to put his hands on top of the front passenger seat. ", "Reader was handcuffed and driven back to the car park at the Portobello Inn, where other Kent CID men were waiting.", "\n\nTold that he was being arrested on suspicion of assaulting a police officer earlier that night, Reader replied:\n\n'What?'", "\n\nThe charges were then repeated.", "\n\n'You must be joking!' ", "he said.", "\n\nThat night Kenneth Noye, his wife Brenda and Brian Reader were all taken to Swanley police station. ", "Noye was convinced that evidence against him would be invented and statements concocted. ", "As a result, he immediately demanded his legal rights. ", "He wanted the case to be dealt with by Kent police, amongst whom he considered he had some good 'contacts'.", "\n\nFor more than twenty-four hours following his arrest, Noye continually asked for Kent to be involved. ", "He was very wary of Scotland Yard, particularly the Flying Squad. ", "He also insisted on pointing out his facial injuries, knowing that they would be crucial in paving the way for a plea of self-defence.", "\n\nOne of the first policemen to see Noye in custody was station sergeant David Columbine. ", "He asked Noye if he knew why he was being held.", "\n\n'Haven't a clue,' responded Noye.", "\n\n'You're here for the attempted murder or murder of a police officer,' said Columbine.", "\n\n'Is that all?' ", "Noye allegedly replied. ", "He was searched and nearly £850 in cash was found on him. ", "When Noye was asked to sign a form listing what had been taken he at first refused, then appeared to cooperate but instead wrote down the name and address of a firm of solicitors.", "\n\nAt 11.30 p.m. that evening PC Fred Bird went to Noye's cell (the small women's cell at the station) to ask for his clothing for forensic examination. ", "The officer knew little else about Noye's alleged crime because he was in such a truculent mood at this stage that he would not even admit his own name.", "\n\n'You're not having my clothing until I have seen my brief,' Noye replied, using the London slang word for his solicitor.", "\n\n'I want this photographed,' he added, pointing to his bruised eye and bloodied nose and the mud on his clothing.", "\n\n'If I do, will you allow me to take your clothing?' ", "asked Bird.", "\n\n'Yes.'", "\n\nNoye was escorted to a first-floor room where the photographs were taken. ", "One of these, clearly showing Noye with a black eye, was later released by the police.", "\n\nOn returning to his cell, Noye said: 'All right, you can have my clothes.'", "\n\nAs they were being taken from him he asked: 'Will I be moved to London?'", "\n\n'No. ", "The offence happened in Kent. ", "You will be dealt with here,' he was told.", "\n\nAt that stage the killing remained a Kent police inquiry.", "\n\nThen Noye blurted out: 'I didn't know he was a police officer. ", "All I saw was a chap in camouflage gear and a balaclava mask. ", "I wouldn't have stabbed him if I knew he was a police officer.'", "\n\n'I can't discuss this with you. ", "Can I have your name?' ", "asked Bird.", "\n\nNoye wouldn't say.", "\n\nBird told him he was being silly and told him he could well be facing a murder charge. ", "The stark warning seemed to work, for the next moment Noye stuck out his hand and said: 'My name is Kenny Noye.' ", "He repeated that he hadn't known Fordham was a police officer.", "\n\nLater that same night Noye was transferred from Swanley to Dartford police station. ", "In the early hours of that Sunday morning, Noye was examined by police surgeon Dr Eugene Ganz. ", "His attitude by then had become 'commanding'. ", "Ganz noted that Noye virtually ordered him to make a note of the injuries to his eye and nose. ", "Both wounds were relatively trivial but the doctor also recorded that Noye's face was smeared with blood.", "\n\nNoye also complained about a pain in the abdominal area and the back, saying he had been kicked, but there was no sign of bruising. ", "There was swelling on the back of his right hand. ", "When the doctor noticed the scratches on his left hand Noye refused to allow it to be examined saying: 'That's nothing.'", "\n\nNoye's first formal interview took place at lunchtime on the day after the killing of John Fordham – Sunday, 27 January 1985. ", "He was seen by DCI Peter Humphrey, a Kent policeman, and – as was the case at a number of the interviews involving Noye, his wife and Reader – another detective made a note of all the questions and answers throughout.", "\n\nThat first interview lasted just seven minutes. ", "Noye refused to answer questions unless his solicitor was present.", "\n\n'I was promised my solicitor when I got to Swanley last night. ", "Now it's Sunday, one o'clock, and I still haven't seen him,' he grumbled.", "\n\nDCI Humphrey was unmoved. '", "Has anyone told you that the man you stabbed last night has died?' ", "he asked.", "\n\n'No reply unless my solicitor is present,' responded Noye.", "\n\nNoye then named Scotland Yard Detective Chief Superintendent Ray Adams – who had investigated Noye a decade earlier – as someone who would vouch for the fact he 'was not a violent man, or a killer'. ", "It seems that Noye had friends in high places, and they didn't all work for the Kent Constabulary, either.", "\n\nAdams has always refused to talk about his relationship with Noye. ", "But other officers who worked with Adams described Noye as follows: 'Half of us thought he was a terrific asset and the other half thought he was bent as arseholes and taking us to the cleaners.'", "\n\nFollowing that first interview at Dartford police station a short statement was drawn up of what Noye had said. ", "Noye even requested that the letters 'p.m.' be inserted after the time 'one o'clock'. ", "He then asked that a line be drawn from the end of the last word on each line to the edge of the page to prevent anything being inserted later.", "\n\nThat afternoon Noye's request for a solicitor was granted. ", "Raymond Burrough – his legal representative for twelve years – was ushered into the cell to see Noye. ", "Burrough had earlier reacted with amazement when told about the incident at Hollywood Cottage. ", "The Kenneth Noye he knew was a 'jovial sort of fellow – gregarious'.", "\n\nBut the Kenneth Noye who greeted his brief that afternoon was very agitated and distressed. ", "Noye insisted he'd been defending himself and said that he was extremely worried about Brenda. ", "He briefly began outlining what had happened to Burrough but the solicitor cut him short. ", "The cell door had been kept open a foot or two by officers guarding Noye, and two of them remained outside within hearing distance.", "\n\nBurrough didn't think it was a suitable environment to listen to his client's instructions. ", "He later described it thus: 'One could almost cut the atmosphere with a knife.'", "\n\nNoye didn't realize that Brian Reader had also been transferred from Swanley to Dartford police station and was actually in an adjacent cell.", "\n\nAt 3.15 that Sunday afternoon, Reader was seen by Detective Superintendent David Tully of the Kent police force. ", "Reader immediately expressed concern about his wife, who was a diabetic and due to go into hospital the next day for treatment to her pancreas.", "\n\n'Where's my wife?' ", "demanded Reader.", "\n\nHe was told that she'd been arrested and was at Gravesend police station.", "\n\n'I want you to know, Mr Tully, that she is a very sick woman and needs medical attention,' said Reader.", "\n\nTully assured Reader he'd personally go to Gravesend to make certain she was all right.", "\n\n'Thank you,' said Reader. '", "She needs special food, like boiled fish, otherwise she gets ill.'", "\n\nTully got back to the subject at hand.", "\n\n'At some stage you will be interviewed about the incident at Mr Noye's home on Saturday evening. ", "You understand that you have been detained in connection with that incident?' ", "asked Tully.", "\n\nReader tried to look concerned. '", "It's a very serious matter,' he told the detective. '", "I know a police officer has been murdered, and I was told I was responsible. ", "I want you to know, Mr Tully, that I do not know anything about it and I did not have anything to do with it,' added Reader.", "\n\nReader then said he would not answer any questions without his solicitor being present. ", "His brief's name was Stanley Beller, of Beller Jarvis, based in Oxford Street, central London.", "\n\n'You must understand,' said Tully. '", "A large amount of money was found at your house when your wife was arrested, and she, as you well know, will be asked to account for the possession of that money.'", "\n\n'That money is mine. ", "It's nothing to do with my wife,' said Reader.", "\n\nThat Sunday afternoon at Hollywood Cottage the most significant piece of evidence linking Noye and Reader to the Brink's-Mat bullion case was discovered. ", "Lying in a shallow gully beside the garage wall, and hidden from view by a tin of paint covered by a rubber mat, was a red-and-white piece of material. ", "Wrapped in the cloth were eleven gold bars, amounting to some 13 kilograms, at that time worth at least £100,000.", "\n\nThe roughly cast bars were all of a similar size: 3 inches long, 1 inch high and 1 inch wide. ", "Some of the same red-and-white material was later discovered in Noye's Ford Granada, and operating instructions for the model of the furnace bought by Michael Lawson thirteen months earlier were also found in Noye's apple store.", "\n\n### **THIRTEEN**\n\nAt Kenneth Noye's Hollywood Cottage, police began an even more thorough inch-by-inch search, including an aerial reconnaissance by a helicopter equipped with infra-red devices capable of pin-pointing metal buried underground or hidden in buildings. ", "The grounds were checked by a line of policemen moving slowly forward, shoulder to shoulder.", "\n\nVery rapidly there were some significant discoveries:\n\n1. ", "Numerous copper coins of the kind used in the resmelting of gold found in several rooms.", "\n\n2. ", "A child's drawing pad containing a picture of a gold bar found in a kitchen drawer.", "\n\n3. ", "A 1985 edition of the _Guinness Book of Records_ with a circle drawn around the entry naming Brink's-Mat as the largest British robbery.", "\n\nA police dog searching the area of woods behind Hollywood Cottage discovered a flick knife as well as a similar weapon inside Noye's Ford Granada. ", "At the back of the house, close to the corner of the swimming pool, another knife was found that appeared to be the one used to stab John Fordham. ", "The white-handled knife had its blade thrust into the ground at the foot of a tree.", "\n\nA camouflage hat worn by Fordham was found close to the shrubbery where he had hidden it. ", "In the lounge, officers were astonished to discover that 'Goldfinger' by Shirley Bassey was primed to go off on the stereo system whenever anyone walked in.", "\n\nClose examination and forensic tests revealed globular fragments of gold – which would have been produced in a smelting process – on the boot mat of Noye's Ford Granada. ", "Traces were also found on the boot mat of Brian Reader's Cavalier as well as the rear mat and rear floor area of Noye's pick-up truck parked near the apple store. ", "Inside the store similar gold traces were found on a leather apron and two gloves, as well as the front mat of a Cadillac parked nearby and on a pair of gloves found in Noye's Range Rover.", "\n\nThe wood panelling in all the rooms was removed and secret compartments were discovered. ", "One was hidden at the back of a built-in bedroom cupboard and contained antique Meissen porcelain worth about £3,000, which had been stolen two years earlier from the home of local aristocrat Lord Darnley (more china would be found at one of the houses in Hever Avenue, West Kingsdown).", "\n\nSecret compartments were also found under a corridor leading to the swimming pool and in an alcove above the pool. ", "Paving stones from the patio were torn up and tiles removed from the swimming pool, but no more gold bars were found.", "\n\nNext to the houses in nearby Hever Road, West Kings-down, where Noye's parents and his sister and her husband lived, neighbour Rosemary Ford discovered a bundle poking from beneath her back-garden fence in a green Marks and Spencer's carrier bag. ", "It was crammed with £50,000 in £50 notes with the prefix A24.", "\n\nAt first Mrs Ford thought it was a practical joke, so she took it to another neighbour to inspect it. ", "Realizing it was the real thing, she handed it over to the police at Hollywood Cottage.", "\n\nFollowing the discovery of the gold bars in the grounds of Hollywood Cottage, the Metropolitan Police – now in charge of the investigation – steamed further into Reader and Noye. ", "Noye was interviewed virtually immediately by DI Tony Brightwell, acting DCI Suckling and DC Michael Charman. ", "For much of the time Noye stood close to the cell door, shouting intermittently that he did not want to be interviewed by Flying Squad detectives and that he wanted his solicitor present.", "\n\nThe truth of what was said during that interview is disputed by both sides. ", "But one moment, when Noye tried to take the conversation away from the gold by asking the officers if they knew the dead officer, summed up the differing accounts. ", "He was told that John Fordham was known to all of them, that he was married with three children – a girl aged twelve, and two older boys.", "\n\nAccording to the officers present, Noye then said: 'You must hate me. ", "I have killed one of your mates and there is no way out for me. ", "All you want to do is make sure I go to prison for the rest of my life.'", "\n\nNoye later emphatically denied most of the remarks he was alleged to have made during his early interviews with the Met. ", "He insisted that his replies to most questions had been: 'No reply unless my solicitor is present.'", "\n\nLater that night the three Flying Squad officers returned to Noye's cell for another interview. ", "According to their statements, Noye tried to convince them that his only concern was the death of the policeman.", "\n\n'You could ask me a thousand questions, and I could give you a thousand answers. ", "The gold is nothing to what I have done. ", "I am not interested in telling you about the gold. ", "My only worry is the murder. ", "If I tell you about the gold now, I'm only adding to it. ", "It won't make any difference to what you charge me with, will it?'", "\n\nWhen the interview ended, Noye was asked whether he wanted to see Detective Chief Superintendent Brian Boyce.", "\n\nAccording to the officers he replied: 'I'll leave that to you.'", "\n\nDetectives had an equally frustrating interview with Brenda Noye, who was also at Dartford police station and was proving to be a tough customer.", "\n\n'I can't help you,' she immediately told the detectives as they walked into the interview room.", "\n\n'Can't or won't?' ", "asked one.", "\n\n'Look, I can't help you,' she repeated.", "\n\nOnce again, at the end of the interview, she refused to check or sign the notes that were taken. ", "The Noyes certainly had their own way of dealing with the police.", "\n\nThe police had been genuinely shocked by the killing of John Fordham, and resolved to work even harder to start bringing in suspects linked to the Brink's-Mat gold bullion operation.", "\n\nGarth Chappell found fifty police officers on the doorstep of his country house near Bristol. ", "Nearby, Terence Patch was arrested at his luxurious bungalow. ", "Scadlynn Ltd was raided, and invoice books, papers, telephone books, bank paying-books, petty cash accounts and even a picture of an island scene were removed from the offices for further examination. ", "Among the paperwork were telephone numbers that proved a link with Reader and Noye. ", "The safes were also inspected, and silver trophies and gold watches removed.", "\n\nEvidence of the Brink's-Mat gold ingots and a non-stop smelting operation were soon uncovered at various locations in the West Country. ", "At one smelting works the police had the following classic conversation with one of the suspects:\n\n'I understand you have been smelting this morning. ", "Is that right?' ", "one detective asked a man just arrested.", "\n\n'Yes.'", "\n\n'What were you smelting?'", "\n\n'I don't wish to say.'", "\n\n'Why not?'", "\n\n'I don't want to.'", "\n\nMinutes later police uncovered two gold bars, still warm, on a sofa in the house next to the smelter. ", "A shotgun and a rifle were taken from the same house. ", "In a lorry parked outside they found another shotgun as well as a crucible with two large ingot moulds still hot enough to have caused condensation to form over the windows. ", "But the most significant evidence was paperwork, which proved the handlers were also making vast sums of money by avoiding payments of VAT on the gold.", "\n\nAn initial check of Scadlynn's records in the national VAT computer at Southend revealed a surprising picture. ", "Since the summer of 1984 the company's fortunes had undergone a remarkable turnaround. ", "Millions of pounds' worth of gold had been going from Scadlynn to an assay office in Sheffield, where its purity was officially calculated, then on to gold dealers on the open market. ", "Suspect Terence Patch claimed this was scrap gold made up from jewellery that Scadlynn had bought, but the amounts were too large for that to be a credible explanation.", "\n\nFurthermore, the gold had been moved in highly suspicious circumstances in a series of undercover early morning pick-ups. ", "The ingots were so badly smelted that the assay office could not determine their true gold content without re-smelting them. ", "They later compared the bars sent by Scadlynn to a badly mixed cake in which all the currants (the gold) ended up on one side, and few appeared anywhere else in the mix.", "\n\nThe suspicions of the customs officers increased after apparently routine visits to Scadlynn to inspect their VAT accounts following the arrests revealed the names of dealers to whom they were selling on the gold. ", "Garth Chappell even admitted to one VAT inspector: 'I'm a dealer. ", "I don't understand books. ", "Books are all Chinese to me.' ", "Two days later the customs officer returned to tell him he owed nearly £80,000 in outstanding VAT payments. ", "More checks showed that Scadlynn were paying virtually the same as they were selling the gold for. ", "It didn't make sense unless their paperwork was false. ", "They were undoubtedly avoiding vast VAT payments.", "\n\nIn London, police carried out similar raids on various properties belonging to individuals linked to Reader and Noye.", "\n\nOn the Tuesday following PC John Fordham's killing, Kenneth Noye spent much of the day alone in his cell at Dartford police station before investigator Brian Boyce appeared in his cell carrying three knives and asked him if he recognized them.", "\n\n'No reply unless my solicitor is present,' was Noye's only response.", "\n\nTwo and a half hours later, Noye's brief Ray Burrough saw his client. ", "Burrough immediately told Boyce: 'My client does not wish to say anything at this stage.'", "\n\nNoye was then asked if he would provide blood, saliva and hair samples for forensic analysis.", "\n\nBurrough immediately interrupted.", "\n\n'Permission is not given and will not be given until we have taken counsel's opinion on it.'", "\n\nNot long after this, detectives visited Brian Reader in his cell. ", "He allegedly admitted to the officers: 'I am sorry about what happened.'", "\n\nAfter about twenty minutes of detailed questioning, during which Reader conceded little, he was asked: 'How long have you known Noye?' ", "Reader did not reply, and the interview was brought to an end.", "\n\nLater, Reader was visited twice by Brian Boyce. ", "On the first occasion he was told that he would be charged with murder and was shown the same three knives as Noye had been. ", "He said he did not recognize them but did however agree to provide hair, saliva and blood samples for forensic examination.", "\n\nOn the second visit by Boyce, Reader was seen with a solicitor present and asked if he was prepared to answer any questions. ", "Reader's reply surprised no one: 'I don't wish to say anything.'", "\n\nMeanwhile Noye's wife Brenda was moved to Gravesend police station, where she was seen by a Detective Sergeant O'Rourke. ", "It was to prove a more productive interview than the earlier ones.", "\n\nO'Rourke went in with a sympathetic attitude.", "\n\n'I appreciate that these are not the surroundings that you are used to, but we have to get to the bottom of this. ", "A policeman has been murdered. ", "A quantity of gold has been recovered from your house. ", "After speaking to you yesterday, I think you want to tell us but you are frightened of something or someone.'", "\n\nPlaying on Brenda Noye's fears did not seem to make much impression.", "\n\n'I'm not frightened of anyone,' she said. '", "I didn't see anything. ", "I was out after. ", "It had all happened by then.'", "\n\n'All what?' ", "asked Rourke.", "\n\nBrenda Noye's defence was weakening.", "\n\n'Whatever happened to him. ", "I didn't take any part. ", "The dogs were making a lot of noise, so Kenny went to see. ", "He was out for a few minutes and the dogs were still barking, so Brian went out and a bit later Kenny came running in and got his shotgun. ", "I knew then that something was wrong. ", "I went down the drive and could see Ken and Brian standing over something. ", "I got closer and could see it was a man. ", "He didn't move.'", "\n\nA few more questions followed, then O'Rourke said: 'Let's talk about the gold. ", "You did know they were shifting gold, didn't you?'", "\n\n'Of course I did. ", "You said yesterday, I am his wife.'", "\n\n'Did you know it was stolen?'", "\n\n'Obviously it must be.'", "\n\n'Did you know from where?'", "\n\n'No.'", "\n\nO'Rourke then enlightened Brenda Noye by telling her about the Brink's-Mat raid.", "\n\nShe denied knowing anything more about it, but then Rourke asked Brenda Noye: 'When do you think it started?'", "\n\nHer reply surprised him.", "\n\n'Some time before Christmas.'", "\n\n'How long?'", "\n\n'I don't know.'", "\n\n'Every day?'", "\n\n'I don't know. ", "I told you. ", "I wasn't there all the time.'", "\n\n'How much was your husband getting?'", "\n\n'I don't know,' replied Brenda Noye. ", "She added: 'I have already said more than I should have done. ", "I'm not answering any more of your questions.", "\n\nThe interview was at an end. ", "Once again, according to O'Rourke, Brenda Noye was offered a chance to sign the notes of the interview, but once again she refused. ", "Brenda Noye later denied ever making any of the comments attributed to her by the police.", "\n\nAfter her visit from O'Rourke, Brenda Noye was moved back to Dartford police station, where she was interviewed by senior officer Brian Boyce, to whom she refused to talk.", "\n\nEarly on that same Tuesday evening, Kenneth and Brenda Noye and Brian Reader were all officially charged with murder.", "\n\n### **FOURTEEN**\n\nThe following day Noye was moved to Bromley police station, where he was interviewed by detectives Suckling and Charman.", "\n\nBy this stage, questions about the gold were the only ones the police could actually put to Noye. ", "He had been charged with Fordham's murder, which meant that it was not permitted to interrogate him again about the killing.", "\n\nThere was a brief silence between the policemen and their prisoner. ", "Noye scratched his chin, considering his next move.", "\n\n'Tell me, what happens when you go out of here?'", "\n\n'What do you mean?'", "\n\n'Do you write all this down?'", "\n\n'Yes, we make notes on what's been said.'", "\n\n'I can't say anything then, can I?'", "\n\n'Why?'", "\n\nThe reply Noye gave showed just how familiar he was with the Brink's-Mat story.", "\n\n'That Black's a dead man, isn't he?' ", "said Noye, referring to Tony Black, whose evidence had brought Robinson and McAvoy 25-year prison sentences. '", "You lot wrote down what he had to say. ", "Now everybody knows what he's done. ", "He's a dead man when he comes out. ", "You don't think I'm going to get myself killed because you've told people I've helped you.'", "\n\nCharman interrupted Noye.", "\n\n'Are you saying you've got things you can tell us about the gold if we don't write down what we say here?'", "\n\n'The thing is,' continued Noye, 'what good is it going to do for me? ", "I'm going away for a long time for what I've done. ", "I don't see you can help me if I tell you anything. ", "They won't cut my sentence. ", "It won't make any difference at all.'", "\n\nCharman sensed that his prisoner was edging towards some kind of a deal.", "\n\n'The things that have happened to you over the past few days cannot be altered in any way, and it would be wrong if we suggested they could. ", "We've arrested you with what I'm pretty sure is some of the Brink's-Mat gold. ", "Our interest is to recover what's left of the £26m worth which was stolen. ", "You can help us. ", "I'm convinced.'", "\n\nNoye was scathing. '", "I can help to get myself killed as well. ", "You know what these situations involve. ", "I'm a businessman. ", "If I thought there was any way I could put things in my favour, I'd tell you as much as I know. ", "But this is a pretty one-sided sort of deal, from what I can see.'", "\n\nNoye was then told about the surveillance operation on Hollywood Cottage, including the day Reader left Noye's house with that heavy briefcase and went to central London.", "\n\n'That was gold from the Brink's-Mat robbery, wasn't it?' ", "pressed Charman.", "\n\n'Like you said, there's other people involved. ", "I can't take the blame for what they do,' said Noye.", "\n\nWhen Suckling tried to suggest that Noye was one of the actual robbers on the raid, he looked stunned: 'It doesn't start with me, no. ", "I've never done a robbery in my life.'", "\n\nNoye was then asked how he paid for Hollywood Cottage. ", "He claimed it had been with money from an insurance claim on a boat and other money he had earned.", "\n\nAsked how long he'd been helping to dispose of the gold bullion, he ingenuously replied, 'How long have you been watching me?'", "\n\n'Since 8 January,' replied Suckling. '", "But we know it goes back beyond that.'", "\n\n'How?' ", "asked Noye.", "\n\nIt seemed a brilliant ploy – the prisoner was interrogating his guards.", "\n\nSuckling went on: 'Because of what people down in Bristol and Hatton Garden have said.' ", "Suckling then mentioned a fence who'd handled much of the gold.", "\n\n'I don't know him. ", "You haven't seen him with me, have you?' ", "challenged Noye.", "\n\nCharman answered, 'We'll accept that. ", "Will you accept that not everybody is capable of disposing of or dealing in gold?'", "\n\n'Yes, I'll accept that,' replied Noye.", "\n\n'Will you accept that you have been to Jersey with others in a private plane and that you bought gold there?' ", "continued the detective, incorrectly (Noye had taken a chartered flight for the trip).", "\n\nNoye smiled.", "\n\n'Yes. ", "So what?'", "\n\nSuckling then told him they believed the gold was bought to provide legitimate paperwork to cover the moving of stolen gold. ", "He was also told that he had been watched at the Beaverwood Club handing gold over to Reader.", "\n\n'Perhaps that was the gold I bought in Jersey?' ", "he ventured.", "\n\n'It wasn't,' replied Suckling. '", "We know that gold is still in vaults in Jersey.'", "\n\nCharman tried to drive home just how much the Flying Squad already knew about the gold run, saying: 'From what we've seen, the activity round you tends to indicate that you are the trusted middleman who has got the contacts and the money to get what's necessary done.'", "\n\n'I know what you want from me, but any business I do with you will get me done in,' was the dramatic reply.", "\n\n'Aren't you exaggerating a bit?' ", "asked Suckling.", "\n\n'I know enough about the people involved to know that if I say what I know, and anything happens after that, they'll know it can only have come from me. ", "If I do anything to get you back that gold which they think belongs to them, then that's me done.'", "\n\n'Well two of them can't bother you, surely; they are locked up for twenty-five years,' said Charman.", "\n\nNoye then began to voice suspicions about how the police had got on to him. ", "He named a man who, detectives believed, had taken part in the original raid but whose involvement they had been unable to prove.", "\n\n'He probably gave you the name because you gave him some help. ", "He's made sure his share is all right. ", "The only sort of deal I'll do is like my business – if it's all in writing and signed by the people concerned.'", "\n\nWith that Noye fell silent for a few moments, then told the detectives that he wanted to speak to lead officer Brian Boyce.", "\n\n'We will speak to Mr Boyce when we leave you,' promised Suckling. '", "What can you tell us about Tony Black?' ", "he added, picking up on Noye's remark at the start of the interview.", "\n\n'I can tell you he's as good as dead,' said Kenneth Noye. '", "I know all about false identities and all that, and I know that won't help him at all. ", "They'll find him and they'll have him.'", "\n\n'Who's going to have him, then?' ", "asked Suckling.", "\n\n'There's enough money from this to get anyone to do it. ", "They don't need to get their hands dirty.'", "\n\n'Do you know if anyone has been hired or propositioned to do it?'", "\n\n'No, but they'll get that sorted out. ", "It's easy enough.'", "\n\nNoye was then asked about instructions for the furnace, which were found in the apple store and – once again – about where he got his money from.", "\n\n'I'm a businessman. ", "I told you what I am,' he insisted.", "\n\nNoye's attempt to sound respectable annoyed Detective Charman intensely.", "\n\n'What you are, Mr Noye, is a man well acquainted with villains, armed robbers and the sort of men who come into large amounts of money, who will come to you to launder their cash. ", "You're trusted to keep your mouth shut, and you share in the profits of crime by percentages, without having to put yourself up front.'", "\n\n'I put myself up front the other night, didn't I?' ", "Noye bitterly responded. ", "Charman continued: 'It always goes wrong for these people at one time or another. ", "Why protect them? ", "I suspect that if they were in your position, they wouldn't hesitate to put your name forward. ", "In fact, there's something to bear in mind for the future with this inquiry. ", "A lot of people have been arrested.'", "\n\nThe appeal failed. '", "Then they will have to watch themselves like Black, won't they?' ", "said Noye coolly.", "\n\nAs the interview drew to a close, Noye inquired again about Fordham's family, asking how they were.", "\n\n'I think you can guess that as well as we can,' said Suckling.", "\n\n'If that hadn't happened, I think we could be talking now,' said Noye.", "\n\n'What do you mean? ", "What could we be talking about?' ", "asked Suckling.", "\n\n'All I'd have to worry about would be the gold, and I think perhaps I might have got a deal and you might have got what you wanted.'", "\n\nThree hours later Kenneth Noye was interviewed in his cell by Brian Boyce, following his earlier request. ", "Boyce entered the cell with his deputy, DCI Ken John. ", "Noye immediately made a point of shaking Boyce's hand using one of the secret grips by which Freemasons the world over recognize each other.", "\n\nNoye smiled. ", "He believed that if Boyce was a Mason then he might appreciate the gesture. ", "Boyce was far from impressed, and noted the incident as yet another example of Noye trying to manipulate police officers, whatever their rank.", "\n\nBoyce explained that he wanted to ask questions about the gold found outside Hollywood Cottage. ", "Boyce made a point of warning Noye in the usual manner that anything he said could be used as evidence later.", "\n\nNoye then turned to the police chief.", "\n\n'Mr Boyce, can I speak to you alone?'", "\n\n'Yes, if you prefer,' responded the senior detective. ", "DCI John immediately left the cell.", "\n\nNoye continued: 'I want to speak to you off the record. ", "I won't if you write anything down. ", "Have you got a tape recorder going?'", "\n\nBoyce replied that he had not. ", "He even opened his brief case and emptied out his pockets to put the prisoner's mind at rest.", "\n\n'I won't write anything down,' promised Boyce.", "\n\nNoye began by asking Boyce if he considered him to be a cold-blooded killer.", "\n\nBoyce said he didn't know, but there seemed to be nothing in his record to indicate that he was. ", "Noye then asked Boyce what he thought would happen to him. ", "Boyce said it was up to the court.", "\n\n'Yes, but what you say can make or break me,' replied Noye.", "\n\nBoyce emphasized that all he could do was present the evidence. ", "The rest was up to the court to decide. ", "Noye then began to say that he was a very rich man and that he wanted to give some money to John Fordham's wife and family. ", "Boyce said he understood.", "\n\nNext Noye turned to matters closer to home. ", "If he went to prison for a long time, his life and that of his family would be destroyed.", "\n\nNoye asked Boyce whether he had any family, and was told he had. ", "Then Noye inquired when the detective was due to retire.", "\n\n'I conclude some thirty years' service in four years,' replied Boyce.", "\n\n'I'll make sure you have a good retirement,' said Noye quietly but firmly. '", "I'll ensure you have plenty of money when you leave the police. ", "I'll put one million in a bank anywhere in the world that you tell me. ", "No one will be able to trace it. ", "I just want you to ensure I do not go to prison.'", "\n\nBoyce's face showed no emotion – or surprise.", "\n\n'You're wasting your time talking to me this way.'", "\n\nBoyce went on to say the only kind of help he wanted was for Noye to reveal the whereabouts of the Brink's-Mat bullion. ", "Boyce re-emphasized his point. ", "He told Noye he had better weigh up whether or not he was going to tell him where the bullion was.", "\n\nNoye replied that he would think about it but that Boyce should remember his offer.", "\n\n'I am a man of my word,' said Noye.", "\n\nHe repeated his offer to compensate Fordham's widow and children and told Boyce to think about his £1m offer. ", "Boyce said there was no question of accepting, and repeated what he had said earlier.", "\n\nAt the end of the conversation Noye made a point of mentioning that there had been no written record of their interview. ", "He didn't look happy when Boyce informed him that the contents of the conversation would be written down immediately after Boyce left the cell.", "\n\nNoye recovered his composure before Boyce left and told him: 'You are on your own.'", "\n\nThen he offered the detective a bribe yet again.", "\n\nMonths later Boyce was accused in court of offering to get Noye a reduced sentence. ", "He denied it categorically and related how the bribe offer was made.", "\n\n'I couldn't be mistaken about being offered a million pounds,' said Boyce.", "\n\nThe day after he had brazenly tried to bribe the lead detective on the Brink's-Mat inquiry, Kenneth Noye was interviewed again by detectives Suckling and Charman, who wanted the combination for the safe found buried in the floor of one of the rooms at Hollywood Cottage.", "\n\nInitially Noye refused to reveal it, saying he feared the police could use it to plant evidence. ", "He wanted to talk to his solicitor before deciding what to do. ", "All it contained, he insisted, was a diamond, some other jewellery and some cash. ", "Once told, however, that unless the combination was forthcoming the safe would be forced, Noye revealed the figure sequence.", "\n\nNoye was then informed that the prefix of a bundle of notes found near his sister's house in nearby West Kings-down corresponded to that on £50 notes found at Reader's house and on people involved with the gold runs down to Bristol.", "\n\nSuckling gently turned the screw further. '", "You must admit that the series of £50 notes, like our observations of you and the others, seem to link all of the people concerned in the disposal of the gold.'", "\n\nLater that same morning, Brian Reader and Kenneth Noye were both charged with conspiracy to handle stolen bullion.", "\n\nNoye's only response was: 'No reply until I see my solicitor.'", "\n\nOver in Bexleyheath, Kenneth Noye's parents Jim and Edith were moving out after almost forty years living in their bungalow in Jenton Avenue. ", "They told neighbours that their beloved son Kenneth had built them a house at the end of a cul-de-sac in West Kingsdown, next to where his sister Hilary lived. ", "Mr and Mrs Noye admitted that it didn't matter whether or not they sold their bungalow because their son had already paid for their new property.", "\n\nJust before they moved out, Mr and Mrs Noye allowed the police to thoroughly search the house, garage and gardens. ", "Officers even dug up Mr Noye Senior's vegetable patch in the search for some of the missing Brink's-Mat gold. ", "The only thing of interest the detectives did come across were hundreds of new telephones stored in the garage. ", "Neither Mr Noye – a former telephone engineer – nor his wife could explain where they came from.", "\n\nThe murder charge against Brenda Noye was eventually dismissed at a committal hearing at Lambeth magistrates' court in south London two months after her initial arrest because of insufficient evidence against her. ", "However she was rearrested as she left court and charged with conspiracy to handle stolen bullion.", "\n\n### **FIFTEEN**\n\nAround this time another of the suspected Brink's-Mat robbers – George 'Georgie Boy' Francis – found himself at the centre of some extensive police attention when officers swooped on his pub and adjoining property in Kent. ", "Wily Francis protested that he had nothing to hide, and they went away empty-handed.", "\n\nBut villains linked to the Brink's-Mat job started hearing some typical underworld rumours about George Francis and how he might have done a deal with the police in exchange for being allowed to keep his liberty. ", "When certain criminals – both inside and outside prison – heard the gossip they decided something had to be done.", "\n\nIn May 1985 – with Kenneth Noye in custody awaiting trial for the murder of DC John Fordham, and McAvoy and Robinson long since incarcerated – Georgie Boy was holding court as usual behind the bar of his pub, the Henry VIII, near Hever Castle in Kent.", "\n\nA hooded gunman, dressed entirely in black, burst in and shot Francis at point-blank range before escaping on a motorbike. ", "Francis survived after an operation to remove a 9 mm bullet from his shoulder but the message had been sent loud and clear to all those connected with Brink's-Mat who had not yet been sent to prison. _", "Keep your trap shut._", "\n\nAfter the killing of a policeman, now one of the suspected robbers had been gunned down. ", "The curse of Brink's-Mat had well and truly kicked in.", "\n\nSoon after John Fordham's death, his C11 partner Neil Murphy suffered a minor nervous breakdown and was caught trying to leave a shop near his home without paying for some cassette tapes. ", "Newspapers at the time referred to the incident as the 'onion-field syndrome', named after a book by the former Los Angeles detective Joseph Wambaugh about a policeman who began stealing when tormented by guilt following the murder of his partner. ", "It was a true story, and in the case of that officer a psychiatrist wrote that his behaviour 'reflects his need to manipulate the environment to agree with his obsession that he is an unworthy person, to punish himself and to relieve the anxiety of unconscious guilt, and to unconsciously avoid his police colleagues who he felt looked critically at him...'\n\nThe incident involving Neil Murphy was far less serious, but there were some clear similarities. ", "The store did not prosecute, and Murphy was allowed to retain his job with C11 after having psychiatric counselling. ", "He explained that no dishonesty had been involved – his mind had simply been miles away.", "\n\nMeanwhile another sinister group of characters was starting to take an unhealthy interest in the Brink's-Mat gold. ", "They had played no part in the planning, the robbery itself or even the initial aftermath but now they were circling like hungry wolves around a lump of dead meat, each wanting a chunk of the Crime of the Century.", "\n\nThe police were desperately trying to avoid any more bloodshed but there was an overriding feeling that Fordham's death and the shooting were just the tip of the iceberg. ", "Detectives attempted to keep tabs on what was happening but all that did was encourage some rogue officers to nurture their favourite villains. ", "What John Symonds, a corrupt London cop, said in a taped conversation with a London gangster a few years earlier summed it up perfectly: 'Always let me know straight away if you need anythin' because I know people everywhere. ", "I'm in a little firm in a firm. ", "If you're nicked anywhere in London I can get on the blower to someone in my firm who will know someone somewhere who will get somethin' done.'", "\n\nThe discovery of the gold at Noye's house had enabled the Metropolitan Police to formally take over the DC Fordham murder investigation from Kent because it clearly linked the case to the missing Brink's-Mat bullion. ", "The decision was reached after a top-level meeting at Scotland Yard between Brian Worth, the Yard's Deputy Assistant Commissioner in charge of serious crime operations, Anthony Coe, Kent Police's Assistant Chief Constable in charge of operations, and Detective Chief Superintendent Duncan Gibbins, head of Kent CID.", "\n\nThe operation was placed in the hands of Commander Philip Corbett from C11. ", "Running such an operation was usually outside the department's remit, but the fact that it was one of their officers who'd been killed superseded normal procedures. ", "Corbett had also received the relevant training in running an inter-force inquiry and, after all, the investigation into Noye had been initiated largely by intelligence provided by C11. ", "It made little odds, however, as C11 allowed the on-the-ground investigation to continue to be handled by Brian Boyce and his officers in C8.", "\n\nAs far as some coppers were concerned, the Fordham killing galvanized the police efforts to bring the other Brink's-Mat suspects to justice. ", "Corbett recruited master thief-taker Tony Lundy, a straight-talking northerner with an extraordinary record for arresting villains. ", "He had crossed many senior officers and was told in no uncertain terms that he had to work on the Brink's-Mat inquiry or take early retirement. ", "Lundy was given the brief to turn over every single suspect until they had brought the whole team to justice, as well as locating all the gold and prosecuting the killer or killers of John Fordham.", "\n\nHowever other detectives, such as DI Tony Brightwell, felt that the Fordham killing in fact diverted the investigation. ", "He later explained: 'The trouble was that John Fordham's death turned around the whole emphasis of the investigation and in some ways it did make it more difficult. ", "The underworld knew we were going to step up our inquiries and they deliberately shrank back into the shadows, knowing full well that because a copper had been killed we would not be holding back.'", "\n\nTony Lundy disagrees to this day. ", "He said in an interview in the autumn of 2010: 'Before John Fordham's killing the whole Brink's-Mat inquiry was drifting to such a degree that it looked as if no one else was going to get nicked in connection with the robbery or the handling of the gold.'", "\n\nLundy got to work in his own inimitable fashion and soon discovered that the gang's own solicitor, Michael Relton, had became a major conduit through which some of the gold was travelling. ", "He'd joined other gang members in paying large sums of money into newly created bank accounts, purchasing plots of land on the Costa del Sol and investing in properties all over the UK, Europe and even North America. ", "One account, in a bank in Liechtenstein, was in the name of the Moyet Foundation. ", "Suspected Brink's-Mat robber Perry apparently named it in honour of his favourite brand of champagne, Moët & Chandon, but misspelt it. ", "Brian Perry's friend Gordon Parry – who'd been heavily involved in handling some of the gold since the robbery – began taking frequent flights to Zurich. ", "This rash of activity came because the gang had decided they could not wait any longer to start enjoying the proceeds of their crime. ", "It was a huge mistake, which would eventually cost them dearly.", "\n\nIn 1985, acquitted Brink's-Mat suspect Tony White bought a £146,000 house in Beckenham, Kent – in cash. ", "It seemed to be his way of winding up the 'opposition', who consisted of the police and insurance investigators. ", "Insurance agent Bob McCunn was infuriated but also quite relieved. ", "The gang were finally starting to show their true colours by being greedy and flash, and that gave him more opportunities to exert immense pressure on some of them to return the gold.", "\n\nThen Tony White – the so-called King of Catford – surprised his friends and his enemies by agreeing to talk to the Brink's-Mat loss adjusters. ", "Clearly White still feared arrest and a subsequent long sentence, so he hoped to reduce it by cooperating and assisting in the recovery of some of the proceeds of the robbery.", "\n\nTony Lundy and his crack team of detectives followed this up by putting even more pressure on solicitor suspect Michael Relton. ", "As a result, Relton provided the police and law firm Shaw & Croft, who were working on behalf of the insurers, Lloyds, with detailed information about bank accounts and property and even produced letters of authority to overseas banks so that evidence could be collected directly. ", "After receiving a number of death threats, Relton got cold feet, but by then Shaw & Croft already had enough detail – and the crucial letters of authority – to begin freezing various bank accounts and assets both in the UK and abroad. ", "Tenacious insurance investigator Bob McCunn even discovered that a couple of the robbers had apparently bought an oil well in Kansas.", "\n\nAs Tony Lundy later explained: 'For once we had the support of every single officer from all sides of the police because one of our own had been killed in the line of duty. ", "There was a healthy obsession inside the force to bring the perpetrators to justice, whatever the cost.'", "\n\nBy this time, police believed that at least half the gold had been smelted and sold back to legitimate dealers, including Johnson Matthey, to whom, ironically, it belonged in the first place. ", "Much of it even ended up as expensive jewellery. ", "Meanwhile the remaining gold, worth at least £10m, was, they believed, buried and undiscovered. ", "The proceeds of the robbery had already gone up in value tenfold, thanks to property investments, bank interest and the ever-rising price of gold.", "\n\nAt one stage detective Tony Lundy managed to persuade McAvoy and Robinson – both then serving their sentences at Long Lartin prison in Leicestershire – to meet him. ", "Lundy believed that because of an appeal the two men had pending against their long sentences, they might agree to hand back some of the gold in return for a shorter term inside. ", "At first McAvoy and Robinson made it crystal clear that they wouldn't consider any sort of deal that might involve grassing up any of their fellow gang members. ", "Lundy had a sneaking admiration for both men, although he later concluded: 'McAvoy was the real boss. ", "He was the one calling the shots. ", "Robinson was quieter and less aggressive and less controlling. ", "But I respected their attitude and because of that they started to seriously consider doing some kind of deal.'", "\n\nThat's when McAvoy astounded Lundy by openly boasting he had control of half the gold. '", "That half doesn't go anywhere until I say so,' said McAvoy. ", "Lundy knew only too well that that meant he might be able to get McAvoy's half back if he could persuade both men to cooperate.", "\n\nToday, Lundy insists that McAvoy and Robinson were on the verge of agreeing a deal when his bosses decided to deal directly with both men. '", "The deal immediately collapsed because other officers above me wanted a piece of the glory,' added Lundy. '", "It was typical of the way things were back in those days.'", "\n\nLundy was considered a loose cannon who needed to be 'pulled in' now and again but he remains convinced to this day that if he had been allowed to slowly work away at McAvoy and Robinson, then that remaining gold might well have been returned.", "\n\nInstead Lundy and other detectives were sent off travelling the world to try and unravel what many believed was one of the most sophisticated money-laundering operations ever seen. ", "They eventually traced the proceeds of the robbery to the Isle of Man, the Channel Islands, the British Virgin Islands, the Bahamas, Spain and Florida. ", "The inquiry also exposed close links between British, Italian, French, Spanish and American criminals, including the Mafia on the east coast of the United States.", "\n\nBrian Perry's mate Gordon Parry and crooked Brink's-Mat solicitor Relton were eventually linked to the deposit of at least £7.6m around the world. ", "Many large sums were transferred offshore, via a Bank of Ireland account in south London. ", "At least 170 accounts were opened on the Isle of Man alone. ", "It was a huge, complex, carefully organized laundering operation, which required tenacity and skill to pick apart. ", "Relton would later be convicted for his role in handling the gold and given a twelve-year sentence. ", "In a separate trial, Parry was found guilty on ten counts of handling stolen goods.", "\n\nMuch of the Brink's-Mat money travelled through a series of international accounts before ending up in Switzerland and Liechtenstein. ", "Increasing amounts continued to be invested in property in the London Docklands redevelopment boom of the mid-1980s. ", "A portion was even used to buy a former section of Cheltenham Ladies' College, which was then converted into flats that eventually sold for a total of £1.6m, providing the robbers with a forty per cent profit.", "\n\nInvestigators including detective Tony Lundy and insurance agent Bob McCunn found one investment, bought for £1.6m, that was later sold for £8m. Another building, bought for £2.7m, was sold for £4.25m. A third deal saw them net £1.75m for a property bought for £750,000.", "\n\nLundy started looking especially closely at Brink's-Mat handler Gordon Parry, who'd been 'recruited' by his mate, the suspected robber Brian Perry. ", "It turned out Perry's son lived with Parry's daughter. ", "Lundy knew that these sorts of personal connections could provide a useful way into the investigation. ", "As the investigation progressed, it soon became clear what a significant figure Brian Perry was in the gang. ", "Perry was renowned in London's criminal fraternity as a 'good operator'. ", "He had links with all sorts of other notorious faces including the notorious Arifs, a south London Turkish-Cypriot family involved in serious crimes including drug smuggling and armed robbery.", "\n\nPerhaps unsurprisingly, Brian Perry had made several attempts to provide an alibi for his old friend Mickey McAvoy, but his efforts had failed. ", "The police professed themselves to be bemused by his attempts to back his friend's story up when his wife had already provided an alibi. ", "Some in the underworld suspected Perry wasn't so disappointed at the outcome as it left him in charge of a big percentage of the original Brink's-Mat gold. ", "Perry claimed to be the one entrusted with looking after McAvoy and Robinson's interests after they were jailed. ", "When McAvoy had seriously considered trying to reduce his sentence by offering to help police recover the gold, he negotiated with them through Perry. ", "But, like all proper villains, Brian Perry looked after his own interests before all else. ", "Above the desk in the office of his south London minicab office was a sign which said: 'Remember the Golden Rule. ", "Whoever has the gold makes the rules.'", "\n\nMcAvoy began to suspect Perry was plundering his share of the gold when Perry purchased an expensive family house in Biggin Hill, Kent. ", "By all accounts, the incarcerated McAvoy was outraged. ", "One detective close to him later explained: 'Mickey went ballistic when he heard about Perry's new gaff. ", "It was a real slap in the face for him. ", "After all he was doing a twenty-five-year stretch, while others were out and about enjoying a champagne lifestyle thanks to the job he masterminded.' ", "According to a Channel 4 programme on Brink's Mat, McAvoy eventually got so angry he sent a letter from prison threatening to kill Perry if he failed to cough up McAvoy's share.", "\n\nIt seems that Brian Perry thought himself invincible. ", "He even jokingly referred to the fact that if his mate Gordon Parry were to die he'd get his £3m share of the proceeds. ", "Rumours started to circulate in south-east London that Perry was feeding information to the police in exchange for being left alone.", "\n\nDetectives believed that Gordon Parry was the weak link in the Brink's-Mat chain so they decided to move in and put him under some pressure. ", "But when police stopped his car in south London, Parry escaped arrest by driving off with a detective clinging to his car until he was thrown off.", "\n\nAfter this Parry went on the run, but not before telling a number of associates that he believed he'd been stitched up by his 'friend' Perry. ", "Parry headed out to what he thought would be the safer havens of the Costa del Sol. ", "But the extradition rules between the two countries were about to change, which would mean his days were numbered, and he was eventually arrested and placed in a Malaga police station to await a flight back to the UK.", "\n\nBack in England, yet more Brink's-Mat-fuelled rumours starting sweeping south-east London. ", "This time it was being said that Parry had grassed up Perry to two London detectives who'd flown over to interview him before he returned to the UK. ", "In fact, the opposite was more likely to be true. ", "Brian Perry was going out of his way to 'smear' his one-time best friend Parry.", "\n\nOne detective later explained that Parry had not grassed anyone up at all: 'In fact, he was incredibly careful about not naming anyone else he was involved with.'", "\n\nBut Brian Perry was determined to make an example of Parry, so he commissioned a hit squad to fly to Spain and kill Parry while he awaited extradition from the Costa del Crime. ", "Word of the plan reached detectives before the killers even arrived on Spanish soil, and Scotland Yard persuaded the Spanish police to move Parry to a secret location. ", "He was saved from almost certain death, and the threat eventually subsided.", "\n\nAnother recipient of police attention was suspected Brink's-Mat robber John 'Little Legs' Lloyd's partner Jean Savage who was arrested after it was discovered that she'd deposited £2.5m at the Bank of Ireland, Croydon, where Kenneth Noye had an account under a false name. ", "Before his arrest for the Fordham killing, Noye and Savage had been seen making deposits at the bank on alternate days. ", "The money Savage deposited was transferred to Dublin, where it was earning £45,000 in interest per month. ", "Savage had previously left the money untouched for months, but then panicked when Parry was arrested in Spain and tried to move it. ", "By sticking her head above the parapet, Savage unintentionally let word of her actions filter through to the south-east London underworld and eventually the robbery investigation team heard about her plans and moved in.", "\n\nAnother notorious character, called Patrick Clark, was soon linked to the robbery through his friendship with Jean Savage. ", "Some officers even suspected Clark might have been one of the actual robbers who took part in the Brink's-Mat raid. ", "Clark deposited £3.2m into an account at the Bank of Ireland's Finchley branch and more than £1m at its branch in Ilford, Essex. ", "Clark later went to America to meet up with Little Legs Lloyd, but was arrested on his return.", "\n\nFurther afield, more and more Brink's-Mat money was being poured into property developments on the Costa del Sol where at least three of the robbery 'team' also purchased homes and put cash into constructing apartment blocks. ", "Some experts in that part of Spain believe that crime helped create much of the property boom of the late 1980s and '90s that swept through southern Spain's coastal areas, and Brink's-Mat money would have been central to this.", "\n\nThe influence of the Crime of the Century seemed to know no boundaries.", "\n\nThe failure to prosecute certain suspects clearly linked to the Brink's-Mat case seemed to embolden the remaining gang members to go on to bigger and more sophisticated business deals. ", "They'd long since linked up with crooked lawyers and property developers, as well as working in alliance with gun-runners and drug traffickers in Spain and the US. ", "Investments in ventures such as the London Docklands developments of the mid-1980s continued to yield extraordinary dividends.", "\n\nThe Brink's-Mat company, meanwhile, no longer existed as a single entity and its Heathrow vault was decommissioned. ", "Guard Scouse moved on too. ", "His appetite for that kind of work had unsurprisingly diminished after his experiences during the robbery.", "\n\nKenneth Noye and Brian Reader's trial for the murder of DC John Fordham took place at the Old Bailey in November 1985. ", "At the request of the defence, proceedings relating to the handling of the gold and VAT fraud were deferred to a later date.", "\n\nThe drama was played out in front of a jury of seven men and five women, packed press benches and a public gallery filled with well-known faces from the criminal underworld. ", "Security was so tight that each time Noye or Reader arrived or left in a prison van, streets around the court were closed off and armed police posted at various vantage points.", "\n\nSurprisingly for a major Old Bailey murder trial, there were no challenges when the jury was selected. ", "Under English law a defendant had the right, generally exercised through the defence counsel, to reject three jurors and demand replacements without giving any reason. ", "Over the years many defence lawyers had challenged anyone who looked remotely middle-class, the belief being that the more affluent and 'respectable' a juror looks, the more likely he or she is to accept the word of the police against a defendant.", "\n\nKenneth Noye used his wealth to secure the services of John Mathew QC. ", "Mathew was a wily, highly respected legal eagle whose professional skills had already got Tony White a pass out of jail. ", "Mathew insisted that neither Noye nor Reader had anything to fear from a middle-class jury because they had nothing to hide. ", "Mathew went on to challenge virtually every police statement in his bid to prove Noye's innocence.", "\n\nOn day one of the trial – immediately after the jury had been sworn in – the court was cleared while the judge, Mr Justice Caulfield, outlined to the jurors the protection they were to receive, including a round-the-clock police guard and the interception of all telephone calls to their homes.", "\n\nPolice fears were fuelled on that first day when Reader's old friend John Goodwin turned up in the public gallery at the Old Bailey. ", "Just a few years earlier he'd been sentenced to seven years for nobbling the jury in a burglary trial in which he and Reader were co-defendants.", "\n\nScotland Yard officers visited the jury at the end of each day's hearing to make sure there had been no approaches. ", "One of Noye's relatives was alleged to have approached a juror in the south London suburb of Bromley while she was out shopping. ", "The woman was immediately given two police guards. ", "Seventy-two police officers were assigned to jury protection duty during the Noye and Reader trial. ", "It was a huge show of force, and seemed deliberately intended to tell the criminals that they should not even attempt to influence the jury.", "\n\nThe start of the trial brought an immediate objection from the defence to the use of photographs of the house and grounds of Hollywood Cottage, which were to be distributed to the jury. ", "The photographs, Noye's QC Mathew pointed out, had been taken in daylight and could give a misleading impression as Noye's alleged murder of Fordham had occurred at night.", "\n\nThe judge agreed, and asked if the defence wanted the jury to see the property for themselves in conditions similar to those of the night in question. ", "That offer was readily accepted. ", "The court was adjourned and later that evening it reconvened in one of the most bizarre settings in British legal history.", "\n\nAt 5.50 p.m., in darkness and during a heavy rainstorm, three limousines ferried the jury to the gates of Hollywood Cottage. ", "The jurors pulled their coats over their faces to hide their identities from the waiting television crews and press photographers. ", "Ten minutes later, with blue lights flashing, two police cars arrived. ", "Behind them was a green prison van containing Noye with a police back-up Range Rover following. ", "Brian Reader had decided against attending, which was his legal right.", "\n\nOn the tarmac apron outside the gates – just yards from where Fordham had been found dying by his colleagues – the Old Bailey clerk convened the court. ", "The official shorthand writer beside him was sheltering under an umbrella, while he painstakingly recorded everything that was said. ", "Then there was the judge, complete with bowler hat.", "\n\nNoye had an escort of four policemen and four prison officers, one of whom he was handcuffed to. ", "The jury and a clutch of legal representatives were shown the grounds. ", "Following at a discreet distance were more than thirty journalists, straining to hear every word.", "\n\nUp at the house Brenda Noye and her two young sons were grouped together at a lighted window waving forlornly to Noye, hemmed in on both sides by his burly escorts. ", "Moments later, Brenda Noye handed out a coat and a pair of Wellington boots for Noye to wear. ", "They were thoroughly checked under torchlight by two police officers before he was allowed to put them on. ", "The expression on Noye's face was a combination of aggressive confidence mixed with injured innocence. ", "It was the way he looked for much of the trial.", "\n\nIn the days of legal arguments that followed, Noye's decision to splash out on Mathew – one of the best defence counsels in the land – proved to be money well spent.", "\n\nMathew admitted that Noye had indeed carried out the stabbing – but insisted it was justified defence after Fordham had struck Noye in the face when he was discovered.", "\n\nIn that admission, much stress was laid on the way Fordham looked that dark night. ", "Dressed in camouflage clothing and a balaclava, he would, said Mathew, 'have struck terror in the bravest of us'.", "\n\nMathew told the court that Noye's reaction had been: 'Shocked terror. ", "He froze, terrified with fear. ", "Then he was hit in the face, in the left eye – he didn't know with what, but he sprang to life, thinking in a flash that he had been struck with some kind of weapon and assumed that the other man was armed. ", "He presumed he had seconds to live; he thought his end had come, and in a blind panic \"stabbed and stabbed\".'", "\n\nBrian Reader's counsel also insisted that there was no case to answer. ", "Reader exercised his right not to give evidence at all during the trial. ", "And just in case they thought this indicated he had something to hide, the judge reminded the jury that it was only since 1898 that a person charged with any offence – including murder – had the right under English law to give evidence.", "\n\nReader could only be found guilty of murder if, first, Noye was proved to have murdered and if Reader was proved to have given assistance or participated in an assault with the intention of killing Fordham or causing him serious injury. ", "Thus in his case there was no pressure for a manslaughter option.", "\n\nThe court heard that Brian Reader had been seen to make a kicking motion by Fordham's colleague, Neil Murphy, but he did not see where the kick landed, and his claim was made in a statement five months after Fordham's death. ", "Noye's counsel was remarkably open about the criminal activities in which Noye and Reader had been engaged on the night of Fordham's killing. ", "They were illegally dealing in gold, he admitted. ", "But they claimed it was gold that had nothing to do with the Brink's-Mat case.", "\n\nThe bullion found at Hollywood Cottage was the subject of proceedings to be dealt with separately, so in the interests of justice, the full details of the involvement of Noye and Reader with the Brink's-Mat bullion were omitted.", "\n\nThe prosecution in the murder case could only mention it when explaining why the two defendants were under surveillance. ", "With Brink's-Mat, it was alleged, the stakes were so high that Noye and Reader had no compunction about murdering anyone who jeopardized their activities. ", "The prosecution said that Noye had millions of pounds in various bank accounts and referred to an account in Brenda Noye's name at an Irish bank that contained £1.5m.\n\n'I have access to various bank accounts, but the money is not mine,' Noye told the court.", "\n\nBy admitting to both the killing and the fact that he was engaged in a wholesale gold-smuggling operation, Noye was hardly presenting himself as a respectable figure to the jury at Old Bailey. ", "But after those revelations, virtually every part of the police evidence – including the interviews with the two defendants and Brenda Noye – would be vigorously challenged as Noye's QC took the initiative.", "\n\n*\n\nFive months after their initial arrest and following twelve hours and thirty-seven minutes of jury deliberation, not guilty verdicts were returned against both Noye and Reader. ", "The jury accepted that the killing had been self-defence. ", "Kenneth Noye smiled, looked at his wife, then turned to the jury and said: 'Thank you very much. ", "God bless you. ", "Thank you for proving my innocence because that is what I am, not guilty.' ", "Beside him Reader turned to the jury and said: 'Thank you for proving my innocence.'", "\n\nThe impression was slightly spoiled a few moments later when Noye turned to the back of the court – by then packed with Flying Squad officers – and sneered and mouthed obscenities.", "\n\nThe judge refused Noye's application that his defence costs should be paid out of public funds – Reader was on legal aid – but to Noye it was still money well spent. ", "Anne Fordham, the 38-year-old widow of the dead policeman, left the court – where she had sat every day listening to evidence – in tears. ", "A reporter asked Mrs Fordham about the sympathy extended by Brenda Noye.", "\n\n'Not accepted,' she whispered.", "\n\nMany of the trials connected to the Brink's-Mat robbery seemed to end in surprising acquittals. ", "As a result, there have always been whispers in the underworld about how wisely money had been invested. ", "However there is no evidence to suggest that anything other than the true course of justice was followed during these trials.", "\n\n### **SIXTEEN**\n\nSo it was that a supremely confident Kenneth Noye strolled back into the dock at the Old Bailey's Number 12 court in May 1986 – five months after his acquittal for DC Fordham's murder. ", "Alongside him in the witness box were his fellow conspirators – Reader, Chappell, Patch, the A-Team's Tommy Adams, Lawson and an elderly fence called Matteo Constantinou.", "\n\nThey'd all spent the intervening time in prison cells, after being arrested during the lead up to the trial, but nothing had dampened their spirits following what Noye saw as a superb victory over his great enemies, the cozzers, in the Fordham murder trial. ", "The defendants and their small army of fourteen defence barristers were supremely optimistic before the trial, which was expected to last two to three months. ", "All the defendants denied handling the bullion, as they did a second charge, which all except Lawson faced – conspiracy to evade VAT.", "\n\nAs far as the first, more serious offence, was concerned, Noye was the principal defendant, as he had been during that earlier murder trial. ", "The gold distribution chain had started with him. ", "If the jury couldn't agree that he was guilty of conspiring to handle stolen gold bullion, then they certainly couldn't convict any of the others.", "\n\nJudge Richard Lowry QC seemed an ideal choice to preside the case; his entry in _Who's Who_ listed 'fossiling' (searching for gold in old, disused seams) as one of his hobbies.", "\n\nNoye believed there was a crucial flaw in the prosecution case – there was no tangible evidence that the gold he'd been handling came originally from the Brink's-Mat haul. ", "But, following the death of John Fordham, the police had made some very thorough inquiries into Noye's 'business dealings'. ", "They knew that, after the Brink's-Mat robbery, Noye had deposited large amounts of money abroad, sometimes using a false name. ", "They also had a record of all the replies he allegedly made while being interrogated by the police, together with Brian Reader's damning admission – shortly before he was charged – that the gold he was handling came from the Brink's-Mat haul.", "\n\nProbably the most significant piece of evidence against Noye was some jottings in one of his diaries, which showed the daily gold price fixes at the time of the Heathrow robbery. ", "Why would he have made those if he was not involved in handling the gold?", "\n\nWhat Noye and the others did not realize was that a young barrister was sitting at the back of the court carefully noting down every single reference to where the gold might have ended up after the heist. ", "He was employed by the Brink's-Mat insurers, who remained determined to recover as much of the gold as possible. ", "Armed with that evidence they sent a team of private investigators to study the homes and offices of all the Brink's-Mat suspects.", "\n\nThey targeted many other people, even those who'd not been prosecuted by police. ", "It didn't matter to the insurers whether they'd been charged or not – if they'd used some of the money raised from that gold to improve their lifestyles then that made them legitimate targets. ", "Files were opened on each and every person as well as the many companies linked to the Brink's-Mat case. ", "Documents were carefully assembled.", "\n\nKenneth Noye and the others had made the mistake of thinking that it would only be the police who'd pursue them.", "\n\n'They didn't know where we were coming from. ", "They thought perhaps we had some sort of moral vendetta against them while in fact we just wanted to recover the stolen property,' insurance lawyer Bob McCunn later explained.", "\n\nDuring the trial itself, Noye talked about the gold smuggling operation but refused to name any of the individuals involved and claimed that no records were ever kept of the various transactions. ", "Noye was unable to explain why the date of the Brink's-Mat raid had an asterisk placed against it in his wife's 1983 diary, with a doodle drawn alongside.", "\n\nAn examination of Brenda Noye's 1984 diary showed a similar asterisk every twenty-five to twenty-eight days. ", "Noye's defence counsel John Mathew helpfully explained to the court: 'It is clear what those asterisks relate to.'", "\n\nIn his summing up to the court, Mathew admitted to the jury that Kenneth Noye was 'a wheeler-dealer; he may have evaded his tax responsibility; and he may have had trouble over the years (but not for some years) with the law, but at least one can say he has never been an idle layabout.", "\n\n'As he has said, \"I don't do any transaction without a deal on the side.\" ", "Not paying your taxes and smuggling, in this day and age, you may think possibly unhappily, are looked upon by many as being in a totally different bracket to the offences of theft and handling stolen property.'", "\n\nTwo and a half months after the trial began, the court rose and the jury of eight men and four women retired to consider its verdicts. ", "The jurors were informed that – under the supervision of court bailiffs – they would be looked after at an £80-a-night London hotel. ", "No discussion of the case would be allowed outside the jury room.", "\n\nThe loss adjusters handling the Brink's-Mat insurance claim for Lloyds were so concerned that the defendants might be acquitted that they launched a civil action against them the following morning. ", "In a High Court action, a judge agreed that the assets of all seven accused should be frozen pending an outcome of the civil hearings.", "\n\nAnd in the middle of all this, rumours began spreading about the jury in the criminal trial. ", "The stories were damaging and highly offensive, and none of them have ever been proven to be true. ", "It wasn't until the following Wednesday that the jury finally returned with their verdicts.", "\n\nNoye, Reader and Chappell were found guilty both of the conspiracy to handle stolen bullion charge and the VAT charge.", "\n\nBy the time the last defendant Constantinou's conviction for evading VAT was announced, the judge had to shout to make himself heard. ", "Patch, Adams and Lawson were all acquitted.", "\n\n(Tommy Adams's equally notorious brother Patsy proved that London's premier crime family the A-Team really did have Teflon skin when he was acquitted of importing three tons of cannabis shortly after Tommy's court appearance.)", "\n\n'I hope you all die of cancer,' screamed Noye at the jury as the verdicts against him sank in.", "\n\nNoye's wife Brenda then shouted across the court from the public gallery: 'Never has such an injustice been done. ", "There is no fuckin' justice in this trial.'", "\n\nPointing to the jury, Brian Reader exploded.", "\n\n'You have made one terrible mistake. ", "You have got to live with that for the rest of your life.'", "\n\nReader's twenty-year-old son Paul scuffled with police officers as he shouted: 'You have been fuckin' fixed up!' ", "He was arrested for contempt of court and later bound over for the sum of £100 to keep the peace for twelve months. ", "Defence counsel Mathew was infuriated by the Noyes' outburst and told Kenneth Noye his comments from the dock would not help when it came to sentencing.", "\n\nDown in the cells beneath the Old Bailey, customs officers immediately slapped a £1m writ on Noye for the VAT they said he'd evaded. ", "A six-page High Court writ was also served on him from the Inland Revenue, claiming nearly £1m in back tax.", "\n\nThe following day, in a bid to make amends, Noye, casually dressed in pale-blue sweater and open-necked shirt, apologized to the judge before sentencing was announced. ", "His outburst, he said, had been made 'in the heat of the moment'. ", "Then he stood resignedly as Judge Lowry jailed him for thirteen years for plotting to handle the gold and fined him £250,000. ", "Noye was also fined a similar amount for evading VAT, plus an extra year's imprisonment, and ordered to pay £200,000 towards the cost of the case, which was estimated to be £2m. Noye then received another two years' imprisonment for failing to pay the two fines. ", "He couldn't pay – his assets had been frozen.", "\n\nJudge Lowry said the fines could be considered 'paltry' compared with the sums of money involved in handling the gold. ", "Chappell was jailed for a total of ten years for both offences, fined £200,000 and ordered to pay £75,000 towards the cost of the prosecution, while Reader, described by Judge Lowry as Noye's 'vigorous right-hand man', was jailed for a total of nine years. ", "Constantinou was given a year, suspended for two years, on the VAT fraud.", "\n\nA day later it was announced that Kenneth and Brenda Noye plus two others would face trial over the Meissen china found in one of the secret compartments at Hollywood Cottage and at one of the houses in Hever Avenue, West Kingsdown. ", "As Noye's assets were frozen, he applied for and was granted legal aid. ", "Later Noye also received a four-year concurrent sentence for receiving the stolen property. ", "No evidence was offered in the case against Brenda Noye and she was discharged. ", "A charge of conspiracy to handle stolen bullion that had been hanging over her was also dropped. ", "One of the other defendants pleaded guilty to assisting in the retention of stolen property and was fined £500 and ordered to pay £150 costs.", "\n\nNoye's sister Hilary Wilder and her husband Richard, a legal executive, both of whom also lived in Hever Avenue, West Kingsdown, faced trial for receiving £50,000 from the proceeds of the Brink's-Mat gold, which had been discovered by their neighbour in a package by a garden fence. ", "Both were later cleared, although the money was eventually reclaimed by the Brink's-Mat insurers.", "\n\nIn London's underworld, reaction to the sentencing varied enormously. ", "Krays associate Freddie Foreman said: 'As far as the police were concerned this was the first opportunity they had to convict Noye, so they made sure he got the maximum sentence. ", "They couldn't have given him a day more.'", "\n\nMany criminal faces were infuriated that the death of Fordham had undoubtedly sparked an even more energetic probe into the dealings of every single person who was even vaguely linked with the Brink's-Mat bullion. '", "There was no reason for Noye to kill that copper. ", "He could have just let his dogs sort him out. ", "It was such a stupid thing to do and it caused a lot of us problems we could have done without,' commented one Brink's-Mat team member.", "\n\nUnsurprisingly, undercover police officer John Childs – first on the scene following Fordham's death – was shocked by the outcome of both Noye trials. '", "We all thought the trial was just an open and shut case and that Noye was guilty of John's murder. ", "We were all devastated when he was acquitted. ", "The second trial seemed less important because Noye had been acquitted of the murder and that was totally, in my view, a miscarriage of justice.'", "\n\nDC Fordham's partner Neil Murphy was convinced that Kenneth Noye was far from innocent in the John Fordham case. '", "He was playing the very sincere, quiet family man you know, who just happened to go out into his garden, saw someone dressed like we were who jumped on him.", "\n\n'So he says: \"Okay, I don't know what made me do it, but I picked up this knife and okay I stabbed him ten times, and okay I don't know what made me do it, but I thought he was attacking me.\" ", "I won't accept that that's what happened – ever.'", "\n\nBoth cops and robbers were well aware that ever since the heist, enormous sums of Brink's-Mat money had been deposited in banks across the world and that no matter what was going on in court, the infrastructure continued to exist. ", "Just after the end of the second Noye trial, a married couple from Britain were stopped by German border guards at the Swiss frontier, and £500,000 in new £50 notes was found in their car. ", "It was part of a consignment of £710,000 that they apparently planned to deposit in a bank in Switzerland.", "\n\nMultiple companies now existed – in Panama, the Cayman Islands, Spain and London – that had been set up to purchase property with Brink's-Mat proceeds. ", "Money was often transferred from bank to bank until it arrived back in London to fund new 'business' enterprises.", "\n\nBy the end of 1986 police and insurance investigators had concluded that between six and seven million pounds continued to float around in myriad bank accounts and a trust fund in Liechtenstein. ", "That figure was growing constantly, thanks to more and more lucrative property deals in markets such as London's booming Docklands area and the Costa del Sol.", "\n\nHowever not all the deals were profitable. ", "Ironically, some of the Brink's-Mat gang were taken for a ride – by other criminals. ", "Four of the gang had invested $100,000 each in some oil fields in Texas. ", "It wasn't until Brink's-Mat insurance investigators visited the area that they found out the oil wells had been dry for more than ten years. ", "The villains had been well and truly fleeced.", "\n\nIn other deals financed by the Brink's-Mat gold bullion, large areas of prime land were purchased in Sussex for more than a quarter of a million pounds. ", "But the land had restricted planning permissions attached to it and no houses could be built on it. ", "It was worthless. ", "There was also $1m paid out for some land in Florida, which was even more useless because it was in a swamp.", "\n\nSome relationships with criminals in the States proved more positive. ", "Elsewhere in Florida tenacious detectives investigating the robbery and its aftermath came across clear evidence linking some of the gang with the Mob. ", "One man they had been watching for months was seen in London in the company of a 27-year-old criminal called Scott 'Iceman' Errico. ", "Errico was the chief enforcer for a Miami-based drug gang known as the Thompson Organization. ", "He turned out to be a hit man, and police in the US had linked him to the murders of at least three men.", "\n\nThe connection to Errico convinced detectives that they were now dealing with international organized crime. ", "Scotland Yard officers were assigned to visit Florida many times over the following few years to try and trace the gold and establish the strength of those UK criminal links to the Mafia. ", "At the time of his meeting in London, Scott Errico was on the run after being arrested for murder, kidnapping and drug smuggling.", "\n\nTwo years later, detectives monitoring Errico's Brink's-Mat contact identified him during a full surveillance operation when he visited London again. ", "Determined not to allow Errico out of the country, police stopped him at Heathrow as he was about to board a plane to Spain. ", "When he was searched, three switch-blade knives were found in his jacket pocket. ", "In his suitcase was £15,000 and two false passports. ", "Detectives also found £1.3m in an Isle of Man bank account under one of Errico's aliases.", "\n\nErrico tried to fight his extradition back to the US because he knew he could face the death penalty there. ", "He was eventually extradited amid rumours that he had offered one million dollars cash to anyone who could spring him before he arrived back in his home country.", "\n\nOver on Spain's Costa Blanca, well away from the Costa del Sol, a friendly Brit called John Fleming was living the high life with drugs and women, thanks to rather a lot of money that seemed to have mysteriously fallen into his hands not long after the Brink's-Mat robbery. ", "Some even wondered if he had been one of the actual blaggers. ", "Naturally Fleming denied it to all and sundry, but detectives decided to put him under surveillance in Spain. ", "Fleming was arrested by Spanish police and told he would be extradited back to the UK on charges of handling some of the Brink's-Mat proceeds. ", "But after being given bail, Fleming flew to Costa Rica with no intention of ever returning to Europe.", "\n\nFleming was eventually thrown out of Costa Rica and extradited to Miami. ", "On the plane he sat next to a Scotland Yard detective who later reported Fleming as saying: 'The world and his fucking wife knows I had something to do with it, but you don't have fucking nothing. ", "If you want me you will have to drag me back in fucking chains.'", "\n\nIt would take another eight long months before Fleming was finally sent back to Britain.", "\n\nIn the summer of 1986, a memorial stone was unveiled to John Fordham in West Kingsdown. ", "Lord Denning, former Master of the Rolls, paid tribute to Fordham and said he'd made the ultimate sacrifice in the line of duty. ", "Prime Minister Margaret Thatcher sent a wreath with the message: 'In honour of John Fordham for his devotion and service.'", "\n\n### **SEVENTEEN**\n\nShortly after the imprisonment of Noye and his Brink's-Mat associates, a serving detective and an ex-cop with links to the south-east London underworld both died in suspicious circumstances.", "\n\nDetective Constable Alan 'Taffy' Holmes was a member of the Serious Crime Squad and had been one of the investigators probing the affairs of Kenneth Noye. ", "But in July 1987, Holmes shot himself dead in the garden of his Croydon home. ", "He had apparently 'cracked' after being questioned for hours by officers from Scotland Yard's Complaints Investigation Bureau about his association with Noye and another serving officer, Commander Ray Adams.", "\n\nThen, in the autumn of 1987, ex-policeman Daniel Morgan was found with an axe embedded in his skull in a south London car park. ", "Detectives involved in the inquiry initially believed Mr Morgan had been killed because he was about to expose police corruption. ", "But it was also known that he had encountered Kenneth Noye and a number of other members of the Brink's-Mat team. ", "This was hardly surprising: he was from the same manor as the robbers, and had grown up at a time when police and villains often worked together on strangely intimate terms.", "\n\nTwo other former detectives were later acquitted of all illicit activities in connection to Morgan's murder. ", "They were known to be close to known Noye criminal associate Kevin Cressey, who later helped bring another crooked policeman to justice.", "\n\nIn fact Noye was at the centre of many of the rumours about police corruption that were flying about at the time. ", "One detective visited him at Albany prison on the Isle of Wight to try and persuade him to help with their investigations into an allegedly corrupt senior Scotland Yard officer. ", "With a half-a-million-pound house on the outskirts of London and a villa abroad, the detective under suspicion was allegedly well known to Noye. ", "He'd also come under the press spotlight for his wealth, and within two months of his latest appointment he'd been the subject of a full-scale inquiry by the Yard's Complaints Investigations Bureau.", "\n\nThe investigation – under the supervision of the independent Police Complaints Authority – was prompted when a detective constable arrested a drug dealer in southeast London who made allegations against various officers. ", "The investigation centred on the senior officer's relationships with his informants – one of whom was allegedly Noye.", "\n\nKenneth Noye refused to help the internal investigation, although he used the visit by the Scotland Yard detective as an excuse to complain about the conditions at Albany prison. ", "Noye was a shrewd operator, and there was no way he'd help the 'opposition' unless there was something in it for him.", "\n\nOn the streets of south-east London and in police stations across the capital and Kent, many were watching with nervous interest as murder, double-dealing and betrayal began to engulf many of those associated with the Brink's-Mat robbery. ", "In reality the 'curse' represented an internecine struggle over who was owed what. ", "But the stakes were so high that death and destruction seemed to walk hand in hand.", "\n\nMeanwhile tenacious Brink's-Mat police investigator Tony Lundy was delving ever deeper into the myriad financial deals connected to the robbery. ", "He even came across evidence that the gold had indirectly helped finance a group of Boston criminals with close connections to the IRA. '", "Brink's-Mat reached far and wide. ", "It overlapped borders and criminal classes and it pulled into its web all sorts of villains, including terrorists and American Mafioso members,' Lundy explained many years later. ", "The involvement of the IRA was a classic example of the way that Brink's-Mat reached across borders. ", "Another Irish connection came in the form of a shadowy villain called George 'The Penguin' Mitchell who was also in direct contact with the Brink's-Mat gang.", "\n\nThe 51-year-old Dublin-born armed robber-turned-cannabis-and-Ecstasy dealer Mitchell, who was reportedly worth upwards of £10m, was on the run from the Gardaí, the British police and the IRA at the time. ", "They were all keen to speak to him if he returned from Amsterdam, where he ran his hash business (in which some members of the Brink's-Mat gang had 'invested').", "\n\nIn the late spring of 1987, Kenneth Noye's associate John Palmer was cleared of handling gold stolen in the Brink's-Mat robbery. ", "Palmer had spent eight months in custody awaiting trial. ", "In a dramatic sequence of events leading to his arrest he had abandoned his home on the holiday island of Tenerife and tried to enter Brazil before flying back to London to turn himself in to the police. ", "Following his acquittal, Palmer flew straight back to Tenerife, where his booming timeshare business was earning him in excess of £3m a year.", "\n\nJust before Palmer's trial, legendary face John Fleming was finally extradited back to Britain from Florida. ", "But Fleming eventually ended up spending just two minutes in the dock after a magistrate threw out the charges of handling cash allegedly from the gold bullion robbery. ", "Fleming, forty-eight, smiled broadly after the case against him collapsed.", "\n\nEven Fleming's solicitor, the ever-present Henry Milner, was surprised by the decision. ", "He said afterwards: 'It was a very slim case but we didn't really expect a magistrate to have the guts to throw it out at that stage after all the publicity there had been about Fleming.'", "\n\nOutside the court, Fleming was asked by journalists how he came by such immense wealth. ", "He told reporters: 'Where the money came from is a private matter. ", "They have put enormous pressure on me to reveal the source but I have not told them and will not tell you now.'", "\n\nIn an interview with this author in 1995, John Fleming revealed that he had played a big role in the Brink's-Mat robbery but he refused to be more specific. '", "It was a dream job. ", "Lots of people made at least a million quid each out of that blagging, so it deserves to be in the history books.'", "\n\nFleming revealed that his life had been threatened on 'at least three occasions' because of his links to the robbery. ", "He also claimed that one of those whom he feared the most was a serving police officer. '", "That bastard knows that I know where the bodies are buried and he's still after me to this day. ", "I have to watch my back wherever I go.'", "\n\nThe hunt for the gold continued. ", "In a back street in Rotherhithe on a quiet, cold November morning, detectives from the Brink's-Mat task force spotted a man long connected by police to the gold bullion. ", "The man had actually been missing from his £1 million Kent home for more than a year.", "\n\nPolice pulled the man's car over and one officer tried to grab at the keys in the ignition through the open driver's window. ", "But the officer wasn't fast enough and instead the car, with the man driving and his son sitting alongside him, shot off while the officer lay on the bonnet before being thrown off into the gutter. ", "Eventually, after a chase, the fugitive's son was arrested but no trace was ever found of the wanted man.", "\n\nIn another twist to the tale, Mad Mickey McAvoy married his second wife Kathy inside Leicester's Gartree prison. ", "His first marriage to Jacqueline had broken up when she discovered his affair with Kathy following the Brink's-Mat robbery. ", "One of his old south-east London associates explained: 'Mickey was always very realistic about his sentence. ", "He knew it was going to be a long haul but he kept close tabs on what was happening outside. ", "But what really kept him going was the knowledge that he'd get out one day and there would literally be a pot of gold waiting for him. ", "Marrying Kathy was his way of telling everyone on the outside that he was preparing for that life in every sense of the word.'", "\n\nBut both McAvoy and Robinson were increasingly irritated by reports from the outside of other gangsters reaping vast financial benefits from what they perceived to be _their_ Brink's-Mat gold. ", "The involvement of the Adams family was particularly galling to them because they had apparently played no direct part in the robbery, yet they appeared to be handling much of the gold since Noye's 'departure' from the scene.", "\n\n'And they were from across the river,' explained McAvoy's old associate. '", "That was really getting to Mickey. ", "He considered himself to be the boss of the whole job and there were the Adams lot living it up, all thanks to him.' ", "Head of the A-Team Terry Adams lived in luxury in a nice pad in Mill Hill equipped with a £12,000 security system, including spike-topped electric gates and video intercoms. ", "Terry Adams paid £222,000 to renovate the five-bedroom, four-bathroom house\n\nHis sitting-room walls were decorated with a gold disc that is rumoured to have been given to him by a pop star, as well as a signed Arsenal shirt. ", "To top it all he even had a portrait of Al Pacino in _The Godfather_ above his mantel-piece. ", "Terry's displays of wealth didn't stop at his house; his lavish spending also took in a villa and a yacht in Cyprus, as well as paying for his daughter to be educated at the Sylvia Young Theatre School in London's Marylebone and buying her a £45,000 Mercedes sports car as a birthday present.", "\n\nTerry's mansion was regularly used for 'business meetings' by the family. ", "The A-Team were so brazen about their activities that they were openly knocking people off who got in their way. ", "It was reckoned by some that at least two murders had been commissioned from behind the high walls of Terry's flashy pad. ", "Ironically, despite all its levels of security, when it was bugged by the Metropolitan Police and MI5 the house played a major role in bringing about his downfall.", "\n\nMcAvoy knew only too well that Terry Adams and his brothers Tommy and Patrick were involved in drug trafficking, extortion, hijackings and security fraud, making them a prime target for the cozzers. _", "A Daily Mail_ article about Terry Adam emphasized his larger-than-life characteristics.", "\n\nHe was noted for his flamboyant taste in clothes, for his cleverness, and above all for his explosive temper and his delight in cruelty. ", "He like to wear dark velvet suits, as well as bespoke ruffed shirts like those worn by Errol Flynn, his childhood hero. ", "One observer said he looked more like 'a cross between Liberace and Peter Stringfellow'.", "\n\nBut Adams was anything but a soft touch. ", "The article went on to describe a scene that took place at his nightclub, Beluga in North Finchley, not far from his home, that was remarkable in its violence.", "\n\nIn the words of a witness to the events, after one of his henchmen spoke out of turn, 'Terry put down his knife and fork slowly. ", "Then he whacked the guy full in the face. ", "We heard his nose crack. ", "There was blood all over him. ", "Then Terry picked up his knife and fork and carried on eating. ", "We all did the same. ", "So did the guy with the smashed nose.'", "\n\nBullets flew when one rival crime family, the Reillys, tried to take things over. ", "Their threat to the Adamses' power didn't last long. ", "Later, one of the A-Team's henchmen, Gilbert Wynter, was tried for the murder of a former high-jump champion. ", "It was alleged in court that he'd not only turned to drug dealing, but was also thought by Terry Adams to be trying to cheat Adams out of money that the crime boss thought was rightfully his. ", "The chief prosecution witness at the henchman's trial would not testify, and though Wynter was able to walk free, his liberty was short-lived, as he was soon to disappear into a concrete tomb under what eventually became the Millennium Dome. ", "Another man feared to been murdered by the family was a drug dealer known as 'Manchester John' who borrowed £100,000 and could not repay it on time. ", "He was beaten up and made to sign over the deeds of his flat. ", "When its value was found to be less than the debt, Patsy, together with Wynter, is believed to have killed and buried him. ", "As with the previous murder case involving Wynter, these allegations were all made in open court.", "\n\nOn another occasion back in London, police raided Patsy Adams's house in the north London suburbs and found a gun and a complete set of bullet-proof body armour. ", "He wriggled out of that one by claiming it all belonged to his wife. ", "One of the brothers was alleged to have been involved in a legendary incident while out at his villa near Marbella on the Costa del Sol. ", "Rumour has it that he cut the ear off the son of another famous British gangster during a fight in a restaurant over some missing drug money.", "\n\nSo fearsome was the Adamses' reputation by the late 1980s that they'd even begun franchising out their name to other criminals, who wanted to profit from the power it lent them.", "\n\nWhen detectives bugged Terry Adams's conversations they revealed him revelling in memories of old beatings and even looking to arrange fresh assaults. '", "When I hit someone with something I do them damage,' he told a friend in one recording. '", "And I went to the geezer and I went crack. ", "On my baby's life, Dan, his knee cap come right out there... all white, Dan, all bone and...'\n\nEven more sinisterly, at one point in the recordings Terry Adams was captured saying of a woman who'd crossed him: 'She's gotta be done. ", "She's gotta have acid flung in her face.'", "\n\nAt one time Tommy Adams ran a jewellery shop in Hatton Garden that the family used as a base. ", "Saul Nahome, one of the Garden's jewellery dealers, was recruited to become a highly trusted financial adviser to the family. ", "Nahome was shot dead by a motorcyclist in a north London street, and his death is believed to have been linked to the 'distribution' and laundering of the Brink's-Mat gold.", "\n\nIn 1989 Terry Gooderham, a club accountant, and his girlfriend were killed and dumped in Epping Forest, Essex. ", "Mr Gooderham allegedly crossed the A-Team over money, and like so many others before him, he paid for it with his life. ", "There was talk afterwards about some Brink's-Mat cash that had 'gone missing'.", "\n\nArmed with lots of Brink's-Mat cash, Patsy Adams had steered the A-Team towards the drugs explosion of the mid- to late eighties. ", "Throughout this period the A-Team were collecting friendly, greedy coppers like kids collect Dinky toys. ", "As their powerbase grew, the brothers realized they could use drugs as currency to bring pressure and influence to bear on judges and politicians. ", "Meanwhile their ownership of clubs had spread even further through the lucrative West End to as far west as Fulham, on the other side of London from their home manor.", "\n\nOne club owner in west London later told this author: 'The Adamses sent a couple of their fellas down to see me because they knew I was up to my eyes in debt and they wanted the club. ", "I didn't argue with them. ", "They chucked me a few grand and I was out the door in minutes. ", "I didn't want no aggro.'", "\n\nBut not even Terry Adams could have foreseen the ripple effect of the Brink's-Mat robbery. ", "He'd been happy to handle the gold and start turning it into cash on behalf of a few friendly faces across the river. ", "His own empire was booming, and he owned businesses and clubs right across London by this time, so it was only natural to start dealing with people from south-east London.", "\n\nBut what Terry Adams didn't realize was that in doing so he was putting his own security and that of his beloved family directly under the police microscope. ", "It effectively alerted detectives to a wide range of other illegal activities involving the A-Team. ", "As with so many other Brink's-Mat 'spin-offs', it would eventually lead detectives to solve more crimes than they could ever have imagined.", "\n\nMeanwhile, John 'Little Legs' Lloyd continued to enjoy the high life on his toes, even though Brink's-Mat detectives had little doubt he was one of the original robbers. ", "Shortly after his friend Kenneth Noye had been nicked for the killing of John Fordham, Little Legs sensibly made sure that word got out that he was still a long way from home.", "\n\nThe police presumed he'd gone to America. ", "In fact Little Legs was still continually popping back and forth to his old east London and Kent haunts, completely unbothered by the worldwide manhunt in his name. ", "At one stage, Lloyd owned a car-hire business in Kent. ", "He was a regular visitor to the infamous Peacock gym in Canning Town, as well as often dropping into his beloved Lovatt pub in the East End for a swift pint.", "\n\nHe even boasted to one associate that he preferred flying back to London on British Airways ''cause they've got a better safety record than all the other airlines.' ", "It was while he was on the run in the US that Little Legs famously had his shorts specially tailored so they flattered his short, stubby legs. ", "He also splashed out a few thousand dollars on some surgery to correct his disfigured toes.", "\n\nA Miami court ordered Lloyd in his absence to pay $400m to Brink's-Mat insurers but he never coughed up a penny. ", "Little Legs later described the court's decision as 'a fuckin joke'.", "\n\nBack in London, a warrant along with a £10,000 reward still existed for Lloyd's arrest in connection with Brink's-Mat.", "\n\nLittle Legs knew he was one of the lucky ones because McAvoy and Robinson and many of the other 'associates' were now under lock and key. ", "He also understood perfectly well that they were going to get more and more angry as they sat festering and wondering about what was happening to their share of the gold.", "\n\n### **EIGHTEEN**\n\nMake no mistake about it, none of the Brink's-Mat 'team' wanted to be in jail. ", "Prison was there to take away their liberty, to lock them up and keep them from their beloved families, away from society. ", "But they all knew they had to behave, because the first man out of the gate was the cleverest man. ", "They left the trouble-making to other, lesser mortals.", "\n\nAll around them in prison were drug addicts and social misfits. ", "McAvoy, Robinson and all the others were professional criminals who saw it as part of their job to withstand life behind bars and bide their time. ", "They watched as inmates injected themselves with filthy needles. ", "They heard the gossip about who were the 'girl-boys' and who'd just give blow jobs. ", "But none of that mattered to these hard-nosed characters, because they all had 'businesses' to run. ", "They considered themselves above the riff-raff, and let everyone know it.", "\n\nAs one former south-east London detective pointed out: 'Like other parts of life there's a pecking order in prisons, and the more successful the criminal is the higher up the pecking order he will be. ", "He'll have an easier life because he'll have gofers running around doing his chores for him.'", "\n\nCertainly, prison life was never that hard for the Brink's-Mat 'team'. ", "Their reputation as hard men went before them, and many of their fellow inmates were convinced that Kenneth Noye, for example, had been 'fitted up' over the Brink's-Mat handling charges because DC John Fordham had been killed in his garden. ", "As one prison officer at Albany prison on the Isle of Wight explained: 'From the day the Brink's-Mat boys arrived to the day they left, no one laid a finger on them or even said a bad word to their faces. ", "Those guys were revered, almost hero-worshipped for the crime they had committed.'", "\n\nThe Brink's-Mat prisoners were consulted by inmates and staff alike on numerous internal prison matters and the 'house' rules – such as phone calls and special privileges. ", "But there were some screws who would occasionally (and rather stupidly) try and pull rank on them. ", "They objected to their power and influence inside prison.", "\n\nBefore the arrival of all those jailed in connection with the Brink's-Mat robbery, vast dossiers on each of them were forwarded to the relevant prison governors, revealing their every known habit. ", "All were Category A prisoners, which meant they were considered dangerous and likely to try and escape. ", "They had to be accompanied at all times by a prison officer. ", "Even at night the attention was unyielding – guards were ordered to make sure the Brink's-Mat members were checked on every fifteen minutes.", "\n\nThe Brink's-Mat inmates themselves knew they had put two fingers up to lawful society by stealing so much gold and then refusing to hand it over after their arrests. ", "But all of them were determined to just get on and serve their time with the minimum of fuss.", "\n\nInside prison, McAvoy and Robinson – crawling painfully slowly towards freedom after their extremely lengthy sentences – continued to bide their time in the knowledge that when they did finally get released they would be able to lay claim to a pot of gold, which would set them and their families up for the rest of their lives. ", "McAvoy and Robinson made a point of remembering all the names of the useful screws, some of whom made it clear that in exchange for a backhander they'd ensure that the two got pretty much whatever they wanted. ", "Money spoke louder than words – even in prison.", "\n\nBut McAvoy, Robinson and the others who'd been jailed knew that if they blatantly bribed prison officers it would cause no end of problems – after all there were numerous closed-circuit TV cameras to record the prisoners' movements. ", "They were all very careful to pick their moments.", "\n\nCertain detectives have tried to imply that some of the 'BM boys' offered Scotland Yard information on their fellow Brink's-Mat criminals in exchange for a reduced sentence.", "\n\nBut the Brink's-Mat inmates knew perfectly well that this was nothing more than a clumsy attempt by the police to split the robbers into warring factors. ", "They all insist to this day that they would never have grassed each other up.", "\n\nHowever Mickey McAvoy was known as 'Mad' for a reason. ", "Much more than Robinson, he had a habit of allowing things to eat away at him. ", "He even wrote to some of his Brink's-Mat 'mates' still on the outside, letting it be clearly known that he was 'thinking' about them.", "\n\nIn one bitter letter McAvoy wrote to acquitted robber Tony White from his cell: 'I won't have anyone else keeping my share for their own needs. ", "He will sign his own death warrant to go through with it. ", "If he believes we are away too long to worry about it, well, it will be done for me. ", "I have no intention of being fucked for my money.'", "\n\nIn April 1990, the tentacles of Brink's-Mat reached once more across Europe and into the Costa del Crime. ", "Two of the gold handlers who'd never been caught by the police had a score to settle over some missing cash from a massive cocaine deal. ", "They in turn were under enormous pressure because a bunch of other Brink's-Mat gang members had allowed their cash to be used as an 'investment' in the drugs. ", "As one of their associates later explained: 'And when that went pear-shaped there was hell to pay.'", "\n\nThe finger of suspicion was pointing right at one of south London's most legendary faces – former Great Train Robber Charlie Wilson. ", "He'd been living in Spain for a few years running a highly lucrative drugs importation gang with close connections to the Colombian cartels, including the most famous drug baron in the world, Carlos Escobar, and the so-called 'Professor' – the cocaine kingpin of Amsterdam, who was the filter for virtually all drugs coming in and out of Europe.", "\n\nUnsurprisingly, the Brink's-Mat investment in one of Wilson's 'shipments' had been made on the basis that he was a professional who would never fuck them over. ", "Unfortunately, somewhere along the line this message was not passed on to whomever it really should have concerned. ", "The shipment, and thus £3m of the Brink's-Mat investors' money, went missing\n\nMany believe that Charlie Wilson knew his time was up unless he either found the missing shipment or paid back all the cash. ", "He did neither, and in April 1990, a young British hood knocked on the front door of Wilson's hacienda just north of Marbella. ", "Moments later the man pulled out a gun and shot both Wilson and his pet husky dog before coolly riding off down the hill on a yellow bicycle.", "\n\nWilson, fifty-eight, was found by his wife Patricia, fifty-five, choking to death by the side of his swimming pool, the body of his pet dog at his side. ", "He died in an ambulance on the way to a Marbella hospital.", "\n\nThe £500,000 villa, with its mock castle turrets, was cheekily named Chequers, and had clearly been built with security in mind. ", "All the windows were permanently barred and a 6ft stone wall surrounded the property. ", "Charlie Wilson had been sentenced to thirty years' imprisonment for armed robbery and conspiracy to rob after the £2.5m train robbery in 1963. ", "Like all the other Great Train Robbers, the former south London bookmaker never revealed his true role in the planning of the raid. ", "But underworld legend had dubbed him the 'treasurer'.", "\n\nFellow Great Train Robber Ronnie Biggs, still on the run after escaping from prison in 1965, heard about Wilson from his hideaway in Rio de Janeiro. ", "Biggs, sixty, told reporters: 'Charlie was full of fun and had a wild sense of humour. ", "He was very easy to get along with. ", "This is a sad, tragic loss.'", "\n\nIt was a murder that shocked the underworld. ", "Even Charlie Wilson's old enemy, the police, were appalled by an act of such cold-blooded violence on a revered villain. ", "But what no one realized at the time was that the curse of Brink's-Mat had once again claimed another victim.", "\n\nIt later emerged that Wilson had been murdered in Spain by a hit squad believed to include one of south-east London's most feared young gangsters, Danny Roff, who had close connections to a number of members of the Brink's-Mat gang. ", "Roff was allegedly one of the gangsters owed money by Wilson. ", "Both men had met and socialized with most of the Brink's-Mat gang down the years.", "\n\nAnother villain with Brink's-Mat links was Nick Whiting, an old school friend and close associate of Kenneth Noye. ", "Whiting had been questioned by police over allegations that he was involved in laundering some of the proceeds of the robbery. ", "The word went out that Whiting had 'opened up' to his interrogators. ", "A former saloon car racing champion, 43-year-old Whiting lived in palatial splendour at Ightham, Kent, and had built up a fortune of more than a million pounds, apparently from a garage business in nearby Wrotham.", "\n\nIn June 1990, just a few weeks after Charlie Wilson's cold-blooded murder in Spain, Whiting was abducted from his garage by an armed gang who also stole five top-of-the-range cars. ", "The cars were all quickly recovered from nearby locations but there was no sign of Whiting. ", "Then a few days later surveyors carrying out preliminary investigations for a new theme park at Rainham Marshes, in Essex, stumbled across Whiting's body hidden in undergrowth.", "\n\nThe father of three had been stabbed nine times and then shot twice with a 9mm pistol, a so-called 'hit-man special'. ", "The two men eventually charged with his killing were later acquitted.", "\n\nA matter of weeks after Nick Whiting's murder, 27-year-old Stephen Dalligan – brother-in-law of acquitted Brink's-Mat defendant Tony White – was gunned down in the Old Kent Road, in the heart of south-east London. ", "Dalligan survived but refused to talk to police about his criminal associates or any of the circumstances behind the shooting. ", "Detectives investigating knew only too well that yet again all roads led to Brink's-Mat. ", "Being involved with the robbery was extremely dangerous, and it seemed that other villains were sending out a clear message to their 'associates'.", "\n\nBack in prison, Brink's-Mat insurance investigators visited the incarcerated prisoners connected to the robbery on at least half a dozen occasions. ", "However, many of the gang members were worried that their conversations were being monitored, and in the end most insisted that the investigators had to deal directly with relatives or their legal representatives.", "\n\nThe pressure was being piled on those associated with the Brink's-Mat robbery because investigators feared the gold would soon completely disappear. ", "They already had proof that millions of Brink's-Mat pounds had been spent on huge shipments of drugs from Morocco and South America.", "\n\nIn Albany prison on the Isle of Wight, Kenneth Noye had other priorities as he ticked off the days of his incarceration. ", "He wanted to be transferred out of the jail's tense, top-security atmosphere to somewhere nearer to home. ", "Noye made numerous requests to the prison authorities and eventually ended up at the relatively relaxed Swale-side prison on the Isle of Sheppey in Kent. ", "Noye received a hero's welcome in Swaleside, where he encountered numerous familiar faces from the Old Kent Road pubs and clubs he'd frequented throughout his adult life.", "\n\nWithin weeks of arriving at Swaleside, fitness fanatic Noye was given the best job inside the jail – gym orderly. ", "This gave him access to a phone for incoming and outgoing calls. ", "Soon he was running his criminal 'empire' from the end of that phone.", "\n\nYounger, extremely fit inmates – many of whom Noye met through his new job – looked to Noye for advice and guidance. ", "They respected him, and he rewarded their loyalty inside prison with promises to 'invest' in their criminal activities once they got out.", "\n\nWhen one prison officer celebrated his birthday, Noye bought him a £600 watch-bracelet. ", "Noye and the officer even declared the gift to the governor. '", "There was nothing the authorities could do about it because it was all done out in the open,' explained another officer.", "\n\nNoye had a vast supply of phone cards so that he could use the main prison phone whenever required, although he preferred the privacy of the outside line at the gym. ", "He even got his favourite cigars brought in for him by friendly screws. ", "Besides his own TV in the cell, Noye also kept a desktop computer and stereo, and Brenda brought her husband a brand-new duvet for his bed.", "\n\nIn addition, Noye got his wife to bring in various items of sports equipment including boxing gloves, weightlifting belts, three tracksuits, badminton racquets and shuttlecocks. ", "He donated it all to the prison gym – on condition he had first refusal to use any of it himself. ", "And – proving his undoubted influence and power inside Swale-side – Noye even paid out of his own pocket for a funfair to be set up in the grounds one Saturday for inmates and their families during a special open day.", "\n\nNoye insisted on paying for every single ride so that none of the prisoners or staff families had to spend a penny of their own money. ", "The whole event cost him many thousands of pounds. '", "A lot of us were surprised that Noye was allowed to pay for it but there was nothing in the rules against it,' one prison staff member later explained.", "\n\nWhile he was in jail, Kenneth Noye sold Hollywood Cottage for more than £1m and encouraged wife Brenda to purchase a £300,000 detached house in nearby Sevenoaks. ", "It wasn't nearly as isolated as their previous home, and Noye had made a fat profit of more than half a million pounds through the sale. ", "Even from inside prison, the Brink's-Mat team knew how to make a tidy sum out of their various 'investments'.", "\n\nNaturally, Kenneth Noye told anyone who would listen in prison that he was only defending himself when he killed John Fordham. '", "He jumped on me first, I swear it,' Noye insisted. '", "I had no choice.'", "\n\nInside Swaleside prison, Noye eventually joined forces with Pat Tate, one of the jail's most feared inmates. ", "Tate was already well known to many criminals after staging a daring escape from a magistrates' court in December 1988. ", "The heavily tattooed, 18-stone Tate had been charged with armed robbery after a knife gang held up a Happy Eater restaurant in Laindon, Essex, and stole £800. ", "Outside the court he leapt on a 1,000 cc motorbike driven by a pal and escaped. ", "Two policemen and a WPC – who tried to stop him fleeing – were injured in the process.", "\n\nTate became Kenneth Noye's personal body builder and minder. ", "Amongst the bench presses and dumb-bells, Tate convinced Noye that there was a fortune to be made out of a new designer drug called Ecstasy. ", "As Brink's-Mat investigation chief Brian Boyce later pointed out: 'As the drugs explosion came about I think everyone turned to drugs and it was drugs that became the highway and conduit for all other criminal activities.'", "\n\nOut on the mean streets of south-east London, many blaggers were fast concluding that the lucrative days of armed robberies were numbered. ", "Security vans were monitored with radar by the police, and it was virtually impossible to rob a bank in broad daylight. ", "As a result, drugs were emerging as the main criminal currency that could be turned into huge fortunes by London's underworld.", "\n\nNoye's south-east London associate and robber-turned-drug dealer Gordon McFaul explained: 'It was gettin' hard work goin' robbin'. ", "Villains stopped wantin' to go robbin'. ", "They became more interested in drugs, like. ", "Many of these villains had hit their forties and fifties, and drugs provided the perfect retirement pension and it was a lot safer than \"going across the pavement\" [robbing]. ", "Puff [cannabis] and coke were the favourites. ", "You'd bung a few people at customs here and you'd get the stuff through the ports easy. ", "Drugs were wiping out the armed robbery trade. ", "It was as simple as that.'", "\n\nDrugs were undoubtedly easy money compared to robbing, and there was usually even a middleman to take a fall if the law caught up with anyone. ", "Before meeting Pat Tate, Noye had been reluctant to get involved in the drug trade because it was unknown territory to him. ", "But he knew that other Brink's-Mat gang members were already heavily involved, so if they wanted to replace all those millions that were starting to be frozen by the Brink's-Mat insurance agents then drugs really were the only answer.", "\n\n### **NINETEEN**\n\nEcstasy was just starting to take off in Britain in the late 1980s. ", "Unlike heroin and cocaine, 'E' could be sold to teenagers as user-friendly – it was initially claimed to be far less lethal than its Class A equivalents. ", "An amphetamine, it propelled the release of a chemical – serotonin – which gave an immediate rush to the brain. ", "However it wasn't long before its known side effects, including panic attacks, kidney, liver and heart problems, became evident.", "\n\nNevertheless Noye and other members of the Brink's-Mat team could smell a real earner with 'E'. ", "It had the potential to give them a return of ten times on the gold bullion money they'd invest in it. ", "Inside Swaleside prison in Kent, Pat Tate and Kenneth Noye soon spread the word. ", "From the late 1980s to early '90s, Brink's-Mat cash would deluge Britain with Ecstasy.", "\n\n'Ecstasy provided the gang and their fences with a perfect investment opportunity,' explained one of the detectives involved in the Brink's-Mat inquiry. '", "There is absolutely no doubt that the flood of Ecstasy into Britain started largely because of the Brink's-Mat cash that was floating around at the time.'", "\n\nCertain members of the Brink's-Mat team had already invested money in cocaine, but they'd soon follow Noye's example and move onto 'E' because it was even more profitable and far less risky. ", "Drugs had fast become the backbone of all business opportunities inside and outside prison. ", "All it needed was a few phone calls and the money would come pouring in.", "\n\nBrink's-Mat investigators even encouraged the prison authorities to allow Noye and other Brink's-Mat inmates a free rein because they were convinced they might lead them to others involved in the Brink's-Mat job, as well as to the remaining gold. ", "The Brink's-Mat inmates knew that being in prison had its advantages because it meant they were all one step removed from the purchase of the drugs. ", "In other words, it was actually more convenient for them to control the drug deals from inside prison because they had the ultimate alibi if anyone tried to finger them.", "\n\nBut the Brink's-Mat gang members knew that being behind bars wouldn't stop the insurers chasing after what legitimately belonged to them. ", "Many of the Brink's-Mat criminals' bank accounts had been frozen but most of the gold was still missing. ", "Significantly, the villains now acknowledged that the Brink's-Mat insurance investigators were working under their own steam, not in the pockets of the police, so some of the robbers had decided to negotiate with them in order to get them off their backs. ", "Brink's-Mat wanted its money back – nothing more, nothing less.", "\n\nInsurance agents had already spent many months following the wives, families and associates of the gang. ", "They'd checked out everything – from the money spent on weekly shopping for the family to the types of cars they bought, to the cost of the luxury holidays the wives regularly took while their husbands were in prison.", "\n\nIn the middle of 1988, lawyers representing the Brink's-Mat gang met insurance investigators once again and tried to work out a deal that would suit both sides. ", "But it would take time because none of the villains wanted to be completely cleaned out of cash. ", "They also expected to stay in control of the situation, even from inside prison. ", "McAvoy was particularly obsessed with 'holding the reins'. ", "As one of his oldest friends explained: 'Mickey trusted no one, and the only way he could deal with people was to be in complete control of the situation, or at least as far as he was concerned.'", "\n\nThe Brink's-Mat insurance representatives were relieved to find that dealing with the men's lawyers and accountants was much easier (and safer) than talking to some of the alleged robbers still at liberty. ", "Many of those who hadn't been convicted were negotiating on behalf of the incarcerated members of the Brink's Mat 'team'. ", "As one of the investigators pointed out: 'With some of these characters you had to watch your back constantly to see who was sitting nearby. ", "Guns were often shown tactfully, just to remind us who we were dealing with.'", "\n\nBut McAvoy, Robinson and Noye would never show such disrespect to the insurance agents. ", "As far as they were concerned, dealing with the Brink's-Mat investigators was just another aspect of their job. ", "They'd got involved in a risky venture, so they needed to find a way out of this latest spot of bother.", "\n\n*\n\nNaturally those Brink's-Mat gang members who were in prison also continued to receive numerous visits from police detectives still trying to persuade them to reveal who else was involved in the robbery, the subsequent laundering operation and the location of the remainder of the gold. ", "All of the men showed complete and utter contempt towards the police. ", "They said they weren't interested in deals anymore. ", "On one occasion Kenneth Noye lost his temper with two detectives, thumped his hand on the table in front of him and warned them to 'Fuck off out of my life!'", "\n\nAs one of the detectives later recalled: 'That was when we saw Noye's true colours. ", "He didn't like us putting him under pressure. ", "He was not a pleasant man. ", "He had a temper that was terrifying.'", "\n\nOn 14 November 1992, all the incarcerated Brink's-Mat gang members watched themselves portrayed on television from their prison cells. ", "The story of the raid had been made into a prime-time TV film called _Fool's Gold_ starring Sean Bean as Mickey McAvoy. ", "Unsurprisingly, the Brink's-Mat gang members were irritated that the new round of Brink's-Mat publicity – fuelled by the film – inevitably sparked further police activity at a time when insurance investigators were still pushing hard to recover all the stolen gold.", "\n\nWhile in prison, at least two of the gang were told that they'd been barred from membership of the Freemasons. ", "It annoyed them enormously as they had been busily planning all sorts of new ventures linked to their Masonic contacts for when they were released. ", "They still needed that impressive Masons' network to ensure that their criminal careers could continue unhindered.", "\n\nBut one setback wasn't going to stop them from keeping a lot of fingers in a lot of pies.", "\n\nHaving reaped enormous profits from the Ecstasy and cocaine deals, certain members of the Brink's-Mat gang decided to go it alone and cut out the tedious middlemen who seemed to accompany every big drug deal and always took a chunk of the profit. ", "The Brink's-Mat gang members knew that the risks would be higher than before but they believed that by building an independent empire to handle all the deals their profits would soar.", "\n\nTheir contacts inside the Kent Constabulary and Met Police remained invaluable. ", "While still in prison, Kenneth Noye began to get reports from the National Criminal Intelligence Service (NCIS) through one of his police contacts. ", "He discovered that his own movements and phone calls were being monitored and that officers from the south-east regional crime squad had joined forces with the American Drug Enforcement Administration (DEA) to target Noye and other members of the Brink's-Mat gang, who'd recently started setting up drug deals through Noye's old contacts in the Miami Mafia. ", "Noye was told by his inside source that US drug enforcement agents had monitored prison phone calls he'd made to an intermediary to Florida, and had almost enough evidence to implicate him in a huge drug deal. ", "Noye immediately pulled out of the deal and the NCIS realized they had been compromised. ", "A six-month ongoing investigation into Kenneth Noye had to be abandoned at a cost of tens of thousands of pounds.", "\n\nElsewhere, the curse of Brink's-Mat continued on its murderous path. ", "One of the gang's London-based money launderers, Donald Urquhart, was shot dead by a hired assassin in a London street in January 1993. ", "It later transpired that the gun used in the killing was supplied by another Brink's-Mat associate, policeman-turned-underworld-gun-dealer Sydney Wink.", "\n\nPolice later revealed that a hit man had stalked Urquhart, fifty-five, for up to three months before shooting him in front of his girlfriend as they left their local pub in Maryle-bone High Street in central London. ", "When detectives examined the Urquharts' car, they found it was equipped with three telephones and a fax machine – he had used it as an office for many of his business deals. ", "Urquhart was a former hod-carrier who claimed he'd built up his fortune during the property boom of the 1970s and '80s. ", "But detectives soon uncovered his various 'interests' in the Cayman Islands and Jersey tax havens.", "\n\nNo one seemed safe – apart, ironically, from those Brink's-Mat gang members still serving lengthy sentences for their role in the Crime of the Century.", "\n\n### **TWENTY**\n\nIt wasn't just drugs that the Brink's-Mat gang were expanding their operations into. ", "Kenneth Noye was released from prison in the summer of 1994, and soon afterwards spent a month on the northern half of the Mediterranean island of Cyprus. ", "Noye intended to invest hundreds of thousands of pounds into a timeshare development that he believed would earn him a fortune, just like his old pal John Palmer. ", "Palmer's Canary Island timeshare empire had made him a legend in the underworld and earned him tens of millions of pounds. ", "His fortunes had taken a slight knock when, in December 1991, having earlier been acquitted of handling Brink's-Mat gold, Palmer was given an eighteen-month suspended sentence for his part in a mortgage fraud. ", "His old friend Garth Chappell, who had been found guilty of involvement in the Brink's-Mat theft, was also convicted on the same charge. ", "Palmer, who had already admitted obtaining nearly £65,000 by deception, was also ordered to pay £13,052 compensation and £5,000 costs.", "\n\nBut this didn't stop him retaining a vice-like grip on his vast domain and travelling everywhere with a shotguntoting 'associate'. ", "By the mid-1990s Palmer was looked up to by many villains as the perfect example of a 'runaway success'. ", "Kenneth Noye was convinced he could make a similar fortune in northern Cyprus. ", "Three million tourists – mainly from the UK – visited the south of Cyprus every year but only 30,000 came to the north; an explosion of popularity was inevitable. ", "However, even after his release, Noye was very much still a target for the police. ", "All his movements and phone calls on the island were monitored by British secret service agents in collusion with the Metropolitan Police.", "\n\nIf Noye knew he was being watched, he certainly didn't seem to care. ", "In northern Cyprus his entrepreneurial spirit knew few boundaries. ", "Halfway through his stay on the island, Noye found a stretch of isolated coastline just north of the port of Famagusta. ", "It was cheap and seemed the perfect location to build a timeshare empire. ", "Noye's scheme would cater for tourists wanting to reserve for themselves several weeks each year in an island villa. ", "While in northern Cyprus, Noye agreed to invest more than £500,000 in the development and employed his old criminal associate Brian Reader's brother Colin to run it on his behalf. ", "Noye called it the Long Beach Country Club.", "\n\nThe attraction of the timeshare – as Noye had already learned from his old friend Palmer – was that by selling access to the properties in blocks of one week at a time, the amount made from all the weekly bookings added together would be much greater than the actual real-estate value of the property. ", "Noye helped finance the project by selling some of his gold stock and a number of other properties, including a trailer-park business in Florida. ", "He even got one crony to fly some cash out to him in northern Cyprus.", "\n\nNoye believed that within five years the Long Beach Country Club would be booming. ", "With his £500,000 investment in thirty-two timeshare villas; the sale of the weekly units would bring in more than £100,000 per villa, and his share of the profits would amount to a staggering £17m.\n\nBack in London, another character connected to the Brink's-Mat job was about to fall victim to the curse. ", "Ex-Metropolitan Police officer Sydney Wink was a gunsmith and weapons dealer. ", "His speciality – although this was never proved in a court of law – was renumbering illegal weapons, including those used by members of the Brink's-Mat gang.", "\n\nWink was strongly suspected of supplying the guns used in two earlier murders – the 1992 contract killing of Brink's-Mat money launderer Donald Urquhart and the shooting of PC Patrick Dunne by three Yardie gunmen.", "\n\nA week after this, in August 1994, officers investigating PC Dunne's murder raided Wink's Essex home and discovered his dead body – Wink apparently put a pistol to his own head and pulled the trigger. ", "Many have speculated since that he was 'helped on his way', but there is no evidence to suggest it was anything other than suicide, no doubt sparked by double-dealing criminal activities that had led to the killing of a fellow police officer.", "\n\nThe network of connections between the Brink's-Mat gang and the police grew ever more complex. ", "When certain members of the Brink's-Mat gang got wind that the British intelligence services were keeping an eye on them, they began casting around to try and 'buy' the services of a hard-up British intelligence officer. ", "They believed it was only a matter of time before they found someone they could 'turn'.", "\n\nMany ex-spies suffered from personal and money problems, making them especially vulnerable to tempting offers from cash-rich criminals. '", "The gang actually believed they could buy anyone off if the price was right, and they didn't like the way they were still being watched closely,' one detective later explained.", "\n\nEventually Kenneth Noye made contact with a former intelligence officer whose security clearance had been withdrawn but who still had access to certain computers. ", "The agent agreed to keep Noye informed – for a price – because he was bitter about the way the intelligence services had treated him.", "\n\nBut what Noye didn't realize was that the 'agent' had been planted to spy on him. ", "As one Brink's-Mat police insider explained: 'The idea was to monitor Noye's activities. ", "We knew he was well aware of our surveillance so this seemed the best way of keeping an eye on him without him knowing.'", "\n\nPolice had also been tapping phones belonging to Michael Lawson, Noye's criminal associate (and good friend) who'd bought the smelter that was found in Noye's house by the Brink's-Mat investigators following the death of PC John Fordham. ", "Police taps were also put in the offices as well as on the mobile and hotel telephones used by both men.", "\n\nSurveillance officers were astounded when Noye 'entertained' three prison officers and his best friend from when he was inside Swaleside prison at his new house in Sevenoaks, Kent. ", "This flagrant breach of the rules only came to light because Customs and Excise officers also had Noye under surveillance and traced the prison officers' car registration number to Swaleside prison.", "\n\nAn unexpected development came in 1994 when John 'Little Legs' Lloyd was named on the _America's Most Wanted_ TV crime show. ", "A couple of weeks after it was first screened he took the biggest gamble of his life by walking, with his brief, into Rochester Row police station to give himself up. ", "The Crown Prosecution Service eventually ruled that there was insufficient evidence linking him to the Brink's-Mat job. ", "The gamble had paid off. ", "Less than a year later, Lloyd, according to police sources, allegedly donated a five-figure sum to a consortium of insurance companies because he knew that even though there wasn't enough evidence to prosecute him in a court of law, he had been fingered for his role in the Brink's-Mat raid. ", "Lloyd was advised that by making this 'donation' he would at least avoid being hauled into a civil trial.", "\n\nAnother man who, like Noye, had recently been released from Swaleside was his former henchman and fitness trainer Pat Tate. ", "Within weeks, Tate was running Essex's main Ecstasy supply route after getting financial backing from Noye and other Brink's-Mat gang members for his drug business. ", "The gold from the heist was almost single-handedly helping finance the huge influx of the designer drug into the UK, reaping massive ten- and twenty-fold profits for the gang in the process.", "\n\nIn December 1994, a brick was thrown through the toilet window of Tate's house. ", "When he peered outside, a gunman opened fire from close range with a revolver. ", "Tate raised his right arm to shield his face and the bullet hit him in the wrist, travelled up his arm, and smashed bones in his elbow.", "\n\nTate later admitted to his mother that his own murderous habits might have provoked the attack. ", "He even hid a gun under the hospital bed where he'd been taken following the shooting. ", "Just a few months earlier Tate had ambushed a 27-year-old drug dealer called Kevin Whitaker, who worked for a rival gang of drug pushers in Romford, Essex. ", "Tate and an associate had paralysed Whitaker by forcing him to snort a substance called ketamine. ", "Vets use it to numb horses before castration, but it is known in the world of narcotics as Special K. One of Tate's associates then snatched a bag containing £60,000 worth of cannabis.", "\n\nAs helpless Whitaker's muscles froze, the laughing gangsters pierced his groin with a syringe and pumped a deadly concoction into his blood. ", "They had injected him in the groin with Ketamine, or Special K, a paralysing drug, often used on horses. ", "Powerless but conscious and pleading for mercy, Whitaker was then injected with lignocaine. ", "He died within minutes and they dumped his body in a ditch near Basildon, in Essex.", "\n\nPat Tate was trying to scale the underworld ladder at least two rungs at a time, and he'd arrogantly overlooked the fact that revenge was now in the air. ", "This was also combined with resentment amongst many other Essex criminals that he – Tate – was using the Brink's-Mat proceeds to elevate his own standing, even though he played no part in the so-called Crime of the Century.", "\n\nAs all this was going on, the bid to recover the Brink's-Mat gold and its proceeds continued. ", "The insurers even brought a civil action against the Woolwich Building Society to gain access to all the transactions made by suspected Brink's-Mat robber John 'Little Legs' Lloyd's daughter Jacqueline Seton, who lived in Chislehurst, Kent. ", "She was also named in a writ against six people in a civil action alleging they had 'wrongly interfered' with the gold and demanding full restitution for its value.", "\n\nIn January 1995, the High Court ordered Mickey McAvoy to make a payment of more than £27m to the insurers – in effect making him responsible for the entire raid, although it was acknowledged that he was unlikely to pay the entire sum back to the authorities. ", "In any case he claimed, unsurprisingly, that he didn't even know where the gold was (although everyone in the south-east London underworld knew only too well that he was expecting a windfall when he finally got released from prison).", "\n\nIn June 1995 – with the pressure mounting – Kenneth Noye actually agreed to return nearly £3m of the proceeds from the Brink's-Mat robbery. ", "In a confidential settlement, Noye gave laundered money back to the Brink's-Mat underwriters. ", "It later emerged that investigators had traced the money that was held in bank accounts in Britain and Ireland to him.", "\n\nNoye also gave up his claim to the eleven bars of Brink's-Mat gold worth £110,000 which were found under the patio of Hollywood Cottage. ", "Noye conceded the deal after underwriters agreed to make no claims against his recently acquired £300,000 mansion in Sevenoaks, which was now in his wife Brenda's name.", "\n\nAccording to evidence that would later be given in court, at a pub just off the Old Kent Road – small and dirty enough to keep most ordinary punters out, and therefore chosen for its privacy by a number of south-east London faces – Kenneth Noye and 'Little Legs' Lloyd began planning a vast cash-card-cloning scheme that they believed would net them an even bigger fortune than that yielded by the Brink's-Mat robbery. ", "Lloyd – common-law husband of Brink's-Mat handler Jean 'Lady Goldfinger' Savage – was looking for backers to set up this audacious crime, so it was only natural he would turn to his old Brink's-Mat gang members for an 'investment'.", "\n\nThe hole-in-the-wall job (also known as the ATM scam) had the potential to be the biggest crime ever committed as it involved stealing _one billion pounds_ from cashpoint machines. ", "This was a classic instance of one crime being financed by the proceeds from another – in this case, the Brink's-Mat job. ", "Its legacy wasn't just murder and mayhem, it also encouraged criminals to seek out bigger and even more lucrative 'targets'. ", "And there was another even more outlandish reason behind the willingness of certain members of the Brink's-Mat gang to back the hole-in-the-wall job with cash. ", "They believed that this crime would be so big that it would overshadow Brink's-Mat to such an extent that the police would at last ease off on their current investigation.", "\n\nThe gang's plan was to tap into the latest banking technology, which meant they needed to recruit corrupt communications engineers and computer experts in order to make huge numbers of cloned cashpoint cards. ", "These would then be used to empty cash from the bank accounts of thousands of ordinary people. ", "If they pulled it off, it could throw the entire British banking system into chaos.", "\n\nIt emerged in the evidence given in court that computer boffin Martin Grant was recruited from inside Blantyre House open prison in Kent, where Kenneth Noye had been held during the last few months of his sentence. ", "Grant had been jailed for attempting to murder his wife and child, so was as far away from being a professional criminal as you could get. ", "In prison, he had studied for a degree in electronic communications. ", "Grant was allowed out on day-release for work experience at a van-hire business owned by Paul Kidd, another villain involved in the cash-card-cloning scheme.", "\n\nIn the late spring of 1995, a few months after the plan's inception, the hole-in-the-wall criminals and their Brink's-Mat backers enjoyed a champagne dinner at a Kent hotel followed by some late night 'entertainment' in the company of a group of prostitutes who'd been hired for the entire night. ", "Amongst those villains was nervy computer wizard Martin Grant. ", "Unbeknownst to the gang, Grant – who was plainly out of his depth amongst the hard men of south London – was already feeding information about the cash-card scam to police. ", "He'd confessed to a prison chaplain about the planned robbery and later made a statement of over 300 pages to Scotland Yard detectives.", "\n\nOn that evening, when the men were supposed to have sex with the prostitutes, Grant got cold feet. ", "He didn't want to sleep with any hookers, not even the ones specially recruited in London's West End by the Brink's-Mat criminals. ", "Kenneth Noye became particularly infuriated with Grant when he turned down one of the girls. ", "Tensions had been building between the two men for weeks, and Noye had only agreed to keep Grant on the team because his computer knowledge was invaluable.", "\n\nEventually Grant forced himself to go through the motions and sleep with one girl to indicate he was still 'on their team' and avoid giving himself away as a grass. ", "It was a disaster, and the other gang members made fun of him because of his failure to perform. ", "They had none of Grant's scruples and swapped hookers amongst themselves as well as taking mountains of cocaine. ", "But Kenneth Noye remained furious with Grant, and he told the other villains he was very suspicious about his behaviour.", "\n\nLater, Grant provided a fascinating insight into Little Legs Lloyd and his friend Kenneth Noye. '", "Noye and Lloyd were just names to me at first. ", "They meant nothing. ", "But people inside prison talked about them as if they were gods.' ", "Grant said he attended one meeting with the gang where Noye and Legs produced prison paperwork on his (Grant's) record and family background, which clearly had been given to Legs by prison staff. ", "Those details included the addresses of Grant's mother and brother.", "\n\nThen, in a chilling incident, Little Legs drove Grant up to his mother's house in the Midlands, walked him through the front door and introduced himself to Grant's mother, 'just to let me know he knew where she lived,' Grant explained: 'John Lloyd then phoned Kenny Noye to say he had met my mum. ", "I was so scared.'", "\n\nGrant added: 'Kenny Noye and Lloyd told stories about hijacking vehicles in the early days and what they did to people who crossed them.' ", "Grant said they also made continual references to other criminal associates in Spain and the United States.", "\n\nAfter they had eventually arrested the hole-in-the-wall suspects, detectives were so worried that Noye and Lloyd might harm Grant that they put him in a safe house with armed officers twenty-four hours a day, only moving him by helicopter. ", "Grant lives in fear of the two criminals to this day: 'I know they hold a grudge against me and I'm very nervous about it.'", "\n\nNevertheless, the information Grant had provided allowed the police to swoop. ", "At Blantyre House prison – where Kenneth Noye had once been an inmate – a warder and inmate were arrested in July 1995. ", "At least six other prisoners were moved from the prison, following a number of nationwide raids by Scotland Yard's cheque and credit card squad.", "\n\nOn 25 July 1995, the mansion in Yalding, Kent, of southeast London legend in his own lifetime Billy Hayward was raided by detectives investigating the same hole-in-the-wall scam. ", "Officers seized more than 70,000 blank cash cards and 28 computer disks. ", "They immediately arrested Hayward and four other suspected members of the firm.", "\n\nDetectives decided they didn't have enough evidence to go after the Brink's-Mat backers, including Kenneth Noye, even though they knew the names of the robbery gang members who'd invested money in the scheme through their associate Hayward because they were even named in open court.", "\n\nNot surprisingly, a murder contract was eventually put out on computer boffin Martin Grant. ", "This was allegedly taken out by the rest of the gang, who rightly presumed he'd grassed them up. ", "As Roy Ramm, one of the senior detectives involved in the case, later explained: 'The ATM scam was a classic example of a group of south London robbers and villains who saw an opportunity to get a great deal of money, but did not have the technical expertise so they worked outside their circle and brought in somebody who eventually destroyed them.'", "\n\nOver on Spain's Costa del Crime, an artful old face from the 'Good Old Days' of the Krays and the Richardsons was circling the proceeds of the Brink's-Mat robbery, much to the concern of gang members like McAvoy and Robinson. ", "Joe Wilkins was one of a dying breed of London villains who loved playing everyone off against each other. ", "The cops, other mobsters, even poor old Joe Public – they all provided an income to dodgepot Joe Wilkins at one time or another. ", "Joe Wilkins exuberantly performed the roles of sometime fraudster, Soho vice king and friend to many of London and Spain's most notorious British gangsters.", "\n\nRumours had flown around that the Houdini-like Wilkins was given a 'helping hand' to flee prison in the early 1990s, specifically so that he could move to Spain and work as a major informant for the police and security services, who'd long been obsessed with nicking many of the villains who were still living in luxury there. ", "At 6ft 3in tall, Joe Wilkins was a handsome, larger-than-life character who favoured Michael Caine-style horn-rimmed specs, and was married for a time to the glamorous dancer Pearl Read, who later modelled in her bra, at the age of fifty-six, as part of Age Concern's 1998 advertising poster campaign.", "\n\nIn Spain, Wilkins agreed to introduce coppers posing as businessmen to major villains operating there and in Gibraltar. ", "They were lured into 'investing' their dirty money into a laundering scheme that was really a police front. ", "It turned into a five-year operation that snared dozens of criminals 'washing' money from vice, drugs and tobacco-smuggling rackets. ", "However, that sting eventually led to years of legal wrangling and accusations of entrapment against the police. ", "This ended in August 2003, when, after 414 days, the main case was thrown out at South-wark Crown Court in London, with the judge denouncing the sting as 'massively illegal'. ", "But then Joe Wilkins was never one to do things by halves. ", "This south Londoner with more front than Woolworths was even rumoured to have played a role in the 1989 'Death on the Rock affair' in which three IRA members were gunned down by the SAS in cold blood while travelling through Gibraltar.", "\n\nIn the late 1990s, Wilkins was introduced to one of the Brink's-Mat gang who was on holiday in Marbella. ", "Wilkins suggested that he knew a way in which the remaining Brink's-Mat gold could be turned into hard cash without going through a smelting process. ", "He claimed that certain Colombian cocaine cartels were prepared to be paid in gold for shipments of drugs, which could – in every sense of the phrase – kill a lot of birds with one stone. ", "The Brink's-Mat gang members knew only too well that the police were still hot on their trail, and this seemed a practical and highly lucrative way of converting the gold into pure cash, with the added incentive of huge profits on the actual shipments of cocaine.", "\n\nBut what no one realized at the time was that, in a similar move to his previous double-crossing, Wilkins had been persuaded to make the approach by officers from Scotland Yard and America's DEA, who wanted to try and close down the Colombian cartels as well as track down the remainder of the Brink's-Mat gold.", "\n\nThen the Curse of Brink's-Mat struck once again with a vengeance. ", "In 2004 Joe Wilkins died suddenly in Estepona at the age of sixty-eight, and to this day no one knows exactly why. ", "His family have always refused to discuss his death, but one detective who dealt with Wilkins on the Costa del Sol admitted: 'Joe pushed his luck. ", "He was playing us all off against each other and one day his time was up. ", "None of us were surprised but it was still very sad because Joe was a one-off – a likeable, almost loveable rogue who could light a room up with his charisma, but the stupid old sod thought he was invincible and that cost him his life.'", "\n\nNo one who played those sorts of games was safe.", "\n\n### **TWENTY-ONE**\n\nThe tenth of November 1995 was a Friday night like any other in Raquel's nightclub in Basildon, Essex, when a youth called Stephen Smith bought four tablets of Ecstasy. ", "But, later that night, one of those pills would kill a school-girl called Leah Betts, sparking a nationwide debate on the dangers of Ecstasy, as well as outrage against the evil drug dealers responsible.", "\n\nThe consignment of Ecstasy from which Leah's fatal pill came – bought through Kenneth Noye's friend and former Swaleside prison henchman, the 18-stone muscleman Pat Tate – had undoubtedly been purchased with proceeds from the Brink's-Mat heist; it could perhaps be argued that this was yet another example of the curse's deadly work.", "\n\nNightclub boss Tony Tucker was Tate's right-hand man, along with another steroid freak called Craig Rolfe. ", "Raquel's piano bar had been transformed into the neon-lit Buzz Bar on that particular night, complete with hypnotic dance music to help bring the young crowd in.", "\n\nTate – by now nicknamed the Enforcer – and Tony Tucker were themselves living life on the edge. ", "They took constant rounds of drug cocktails of cocaine, ketamine and Ecstasy, which caused them to suffer violent mood swings. ", "On one occasion Tate got into an argument at a Basildon pizza restaurant over the topping he wanted. ", "He punched the manager and then smashed his head down on a plate-glass counter. ", "The manager was too scared to make a statement to police. ", "But none of this seemed to bother the Brink's-Mat gang, who happily bankrolled Tate and Tucker's drug deals.", "\n\nThe Ecstasy tablets supplied by Tate and Tucker in the club that fateful night were called Apples. ", "Four of them were obtained by Stephen Smith, who gave one to his friend Leah Betts for her birthday that night. ", "The young man bought them in good faith, without being told they were double strength. ", "They cost Leah Betts her life.", "\n\nThis was of little concern to the Brink's-Mat gang. ", "Their only priority was the vast profit they were making. ", "Conservative estimates put the value of the Ecstasy business in Britain by the mid-1990s at more than £500m per year.", "\n\nThe Ecstasy trade adhered to the classic economic rule – buy low, sell high. ", "Most of the Ecstasy flooding into Britain could be bought wholesale by the criminals for as little as £1 a tablet. ", "A large proportion came from the Netherlands, where some of the Brink's-Mat gang members still had close contacts through their earlier gold-smelting activities. ", "It was then sold on the street through people like Tucker and Tate for sometimes as much as £20 per tablet, a huge mark-up.", "\n\nThe Brink's-Mat gang knew that the sheer scale of the production of Ecstasy meant that there was a vast supply network in existence, and it was a much easier way of making money than smelting down gold. ", "From manufacture in Europe to use in Britain, the Ecstasy trade chain was complex, with up to fifty pairs of hands often involved. ", "The Brink's-Mat gang cut that down to just five or six and saw their profits leap. ", "Nevertheless, they were still able to keep their distance from the actual deals, so the risk of being caught was substantially reduced.", "\n\nMost of the Ecstasy came through ports like Dover, in Kent, and Harwich, in Essex, as well as illegal landings on the quieter beaches of England's south coast. ", "Freedom of movement under EU laws meant it was difficult for customs officers to track down the Ecstasy traffickers, who were capable of smuggling thousands of tablets in something as small as a briefcase. ", "From English ports, the Ecstasy was quickly moved to a warehouse in London that the Brink's-Mat backers had rented specifically for its distribution. ", "It was then taken to wholesale suppliers in the main urban centres of Essex, Kent and East Anglia, as well as the more familiar territory of south-east London. '", "Enforcer' Pat Tate was in charge of ensuring that tens of thousands of the tablets every weekend got into the hands of small-time dealers, who were essential to the entire process.", "\n\nNot everyone in the criminal underworld approved of the switch from robbing banks and security vans to dealing in drugs. ", "Former Krays henchman Freddie Foreman explained years later: 'Drugs were becoming like heavy gangsterism. ", "There were too many people involved. ", "It became widespread. ", "There was also a stigma in dealing drugs. ", "Some people would name so-called drug dealers to police just to get them off the streets. ", "All the people I know and associate with are from the old school and they don't want to know about drugs at all.'", "\n\nBut the Brink's-Mat gang didn't care about what other criminals thought.", "\n\nHowever there were other problems brewing for the Brink's-Mat gang. ", "The so-called 'King of Catford', Tony White – who'd escaped criminal prosecution even though he'd long been suspected of being one of the Brink's-Mat robbers – was furious with Kenneth Noye for settling insurance claims on the missing gold bullion because it sparked civil proceedings against White by insurance agents. ", "White found it particularly irritating because he'd been tempted to do the same thing himself.", "\n\nAt a High Court civil hearing, judge Mr Justice Rimmer stated that White did 'at least' participate in the planning of the robbery and added: 'Mr White is a dishonest man with an appalling criminal record.'", "\n\nThe judge also pointed out that White's earlier acquittal at the Old Bailey in 1984 only meant that the jury were not satisfied White was guilty according to the standard of proof required. ", "White and his wife, Margaret, were then ordered by the High Court to repay £2,188,600 and £1,084,344 respectively in compensation to the insurers of the gold. ", "It represented the value of the amount of gold that White was alleged to have been given from the original robbery. ", "White furiously blamed Noye for opening up the floodgates by paying up so easily, and the split in the ranks of the Brink's-Mat gang began to widen by the day.", "\n\nAs time went by, even more new 'camps' started to emerge. ", "The actual robbers still saw themselves on a much higher plane than the backers like Noye and other 'associates', who had only been responsible for turning the gold into hard cash. ", "McAvoy and Robinson kept themselves particularly aloof; they believed that by serving their sentences they had the right to expect every penny of their share to be waiting for them when they finally got released. ", "Anything less than that and, as one south-east London criminal later explained, 'There would be hell to pay.'", "\n\nThere was a feeling amongst the actual robbers that people such as Noye, Reader and Perry were 'taking the piss' because, after serving much shorter sentences, they were now once more out and about, benefiting from the proceeds of the raid The publicity that Noye had garnered ever since the stabbing of undercover cop John Fordham in his garden also greatly irritated the actual Brink's-Mat robbers. ", "They blamed Noye for sparking the police's near-obsession with bringing them all to justice, believing that the killing of a copper had galvanized the police at a time when the Kent and Met forces were not exactly getting on like a house on fire.", "\n\nMeanwhile Brink's-Mat insurers continued to press for the recovery of the rest of the gold from the robbery. ", "The investigators continued to travel as far afield as Scotland, the Isle of Man, Ireland, Denmark, Germany, Spain, Cyprus, Greece, Hong Kong and the Far East. ", "Investigators also traced a huge sum of money in one bank account in the Middle East after months of constant surveillance. ", "Yet the Brink's-Mat gang could still flex their muscles if they felt the need. ", "One nosy insurance agent, who'd been watching a gang member while he was abroad, had heroin planted on him in an attempt to get him arrested when he arrived back in Britain.", "\n\nThe Brink's-Mat gang remained as obsessed as ever with turning the gold into much vaster wealth. ", "And naturally they continued to cultivate links with policemen and politicians in order to make sure they got advance notice of any potential 'problems'. ", "In many ways the Brink's-Mat gang had become its own secret club. ", "In an effort to hold the gang together they even held parties to make sure everyone involved was still 'on board'. ", "In other words, 'join in or get out' seemed to be the overriding message.", "\n\nGang members regularly paid for two women to host parties in a rented house in Bexleyheath, on the edge of the south-east London suburbs where so many of the gang hailed from. ", "They always invited other 'important' people who could be of great use to them. ", "Everyone – from bank managers to police officers to solicitors – was asked. ", "These gatherings were held most Fridays through the second half of 1995 and the first few months of 1996.", "\n\nThe hookers were encouraged to sleep with guests so that the robbers would have even more favours to call in if anyone posed a threat to their many illicit operations. ", "Kent police allegedly knew all about the parties but there was little they could do about them since no actual laws were being broken.", "\n\nBut across the Dartford Tunnel in the badlands of Essex, a deadly feud sparked by the Brink's-Mat gold was about to come to a bloody conclusion.", "\n\n*\n\nOn an icy-cold December day in 1995, an anonymous Range Rover was parked in front of a set of padlocked gates that led to a fishing lake close to the 130-acre Whitehouse Farm, near Rettendon, Essex. ", "The two men who rented out the lake – Ken Jiggins and Peter Theobald – drove towards the car on a lonely farm track blanketed with snow. ", "At first they didn't even notice that one of the rear windows of the Range Rover was shattered.", "\n\nThe Range Rover was blocking their route, so they climbed out of their Land Rover and tapped on the other car's window to ask its occupants to move. ", "But there was no response. ", "The two men they saw inside looked so peaceful that Ken Jiggins thought they were asleep. ", "Then Jiggins spotted that the driver was slumped to one side with blood running from his nose and mouth. ", "His eyes were closed. ", "The passenger was sitting bolt upright with blood all over his face and chest.", "\n\nJiggins stepped back from the car window with a jolt and, hands shaking, called the police on his mobile phone. ", "Next, Theobald realized that there was a third dead body slumped in the back seat. ", "It was Kenneth Noye's old prison friend, gym fanatic Pat Tate, who'd been blasted twice in the head and once in the chest. ", "Neither of the men could see any footprints leading away from the vehicle in the snow.", "\n\nWithin less than an hour the place was crawling with police as the Range Rover – registration number F424 NPE – was covered with a tarpaulin and loaded onto a police lorry with the bodies of Pat Tate and his criminal associates Tony Tucker and Craig Rolfe still inside.", "\n\nForensic experts spent the rest of the day combing the track and surrounding area for any clues. ", "Overhead a helicopter scanned the fields with a heat-seeking camera for any more evidence of what had happened. ", "Police believed Rolfe, Tate and Tucker had been lured to their deaths by the promise of a massive drug deal.", "\n\nIt wasn't until detectives started searching more widely that they uncovered the Ecstasy connection between the Brink's-Mat gang and Pat Tate. ", "Police discovered that Tate, Tucker and Rolfe had been invited to meet in order to inspect a landing site for a light plane just close to where they died. ", "The aircraft was due to bring in hundreds of thousands of pounds' worth of Ecstasy. ", "Their 'host' was another associate of the Brink's-Mat gang, Michael Steele, fifty-five.", "\n\nSteele had met the other three men at a pub and climbed in the back of their Range Rover alongside Tate, who was so relaxed about the 'meet' that he didn't even bother bringing along a gun. ", "But as the car turned into a quiet lane off the A130, it had to stop at a closed gate where Steele's accomplice, Jack Whomes, was hiding. ", "Steele opened the back door of the Range Rover to get out and open the gate as Whomes rose from the ground and ran towards the car blasting away with a shotgun.", "\n\nOnly Tate had time to put up his hands and hunch down – Tucker and Rolfe were killed instantly. ", "After Whomes reloaded, Steele is believed to have taken the gun from him and then shot each of the men behind their ears 'just to make sure'.", "\n\nInterviews with the police and criminals have uncovered that Tate wasn't averse to horse-trading with police if he thought it would be to his advantage. ", "As one Essex drug insider later explained: 'Pat Tate thought he was a clever bastard. ", "There were rumours that he'd been feeding Old Bill with info to keep them off his back.'", "\n\nWas the Brink's-Mat gang's involvement in the Ecstasy trade one of the 'titbits' Tate offered the police?", "\n\n'If it was then I'd say it was certain he signed his own death warrant,' added the Essex drug insider.", "\n\nWhatever the truth, it didn't stop more 'business opportunities' continuing to come the way of the Brink's-Mat gang. ", "Many more lowly criminals were seeking them out for financial backing in much the same way movie producers seek money to finance new films. ", "Kenneth Noye and at least two other members of the gang got involved in a plan to import a brand-new designer drug into Britain. ", "They spent months in high-level negotiations to buy vast quantities of the hallucinogen khat from African drug barons. ", "Although legal in its raw form, khat leaves were processed by some dealers into capsules of oil, which did breach British drug laws.", "\n\nThe Brink's-Mat gang were persuaded by a number of criminal associates that it would be possible to make even bigger profits out of khat than from Ecstasy, if the market was saturated immediately. ", "They were seriously considering investing as much as half a million pounds in the drug over the following eighteen months. ", "But they were concerned that no one had tried a similar operation before.", "\n\nThe Brink's-Mat gang eventually decided to sit and wait to see if khat had the impact on the British drug scene that everyone kept telling them it would before they risked too much cash. ", "In the end it never properly materialized on the open market. ", "The gang's business instincts had saved them from losing a lot of money.", "\n\nBut the police were still pressing hard by constantly watching Brink's-Mat gang members such as Kenneth Noye and Brian Reader. ", "This meant that they were starting to find it harder to run their criminal enterprises. ", "The police were constantly turning up at their homes demanding answers to questions about crimes in which they might or might not have been involved in. ", "Though Noye and Reader kept their cool, their patience was wearing thin, and some of the gang members were beginning to really think about moving abroad.", "\n\n## **PART THREE: \nALL THE CARDS COME \nTUMBLING DOWN**\n\n'You cannot expect criminals to phone the police up and offer them information just because they want to be seen as \"good citizens\". ", "We have to get out there and meet them and convince them that we won't land them in the shit if they help us. ", "It's a very tricky balancing act.'", "\n\n– Former Scotland Yard Flying Squad \ncommander Ken Drury.", "\n\n### **TWENTY-TWO**\n\n#### **M25/M20 INTERSECTION, SWANLEY, KENT, 1.15 P.M., 19 MAY, 1996**\n\nBrink's-Mat gold bullion handler Kenneth Noye had a lot on his mind, loads of things to do and lots of people to see when a small red Bedford Rascal van swerved in front of him as he headed at speed down the motorway slip road. ", "He angrily flashed the full beams of his Land Rover Discovery at the van and blasted his horn as the vehicle slowed down for the first set of traffic lights on the busy intersection, near Swanley, in Kent, right in the heart of what police often refer to as 'shotgun territory'.", "\n\nAs the lights turned green, Noye – shaking with rage – swung his L-registered Discovery across the two-lane roundabout to pursue the van. ", "He was infuriated and had decided to teach the driver a lesson.", "\n\nElectrician Stephen Cameron, twenty-one, and his pretty blonde fiancée Danielle Cable, nineteen, had set off in the Bedford minivan minutes earlier from their nearby homes to get some bagels for a late Sunday breakfast. ", "Danielle had no idea that her driving had just sparked a tirade of abuse from the motorist in the Land Rover Discovery.", "\n\nJust then Noye cut them up again and Danielle was forced to brake hard to avoid a collision.", "\n\n'That was stupid,' said Stephen Cameron, who was sitting next to his fiancée in the van. ", "He looked across at the driver of the Discovery and shook his head.", "\n\nThe two vehicles moved on to the next set of traffic lights just a couple of hundred feet further along the busy roundabout. ", "This time the Land Rover pulled up sharply in front of them. ", "Noye got out. ", "He was wearing jeans and a T-shirt and a short jacket with a zip.", "\n\nWitnesses later said he seemed to be looking for something in the pocket of that jacket. ", "Cameron, well over six foot in height, stepped out of the van as Noye, now fifty, approached. ", "Cameron towered over the older man as they came face to face. ", "Noye and Cameron exchanged a few words before Noye punched Cameron hard in the face. ", "As he recovered his balance, Cameron noticed something glinting in the other man's hand.", "\n\nHe immediately tried to kick whatever it was out of his grasp.", "\n\n'Get in the van. ", "Get in the van,' Danielle Cable shouted at her fiancé.", "\n\nAs the two men struggled together, Noye twice plunged a knife into Cameron's heart and liver. ", "In the middle of all this, Danielle Cable frantically tried to stop someone from the stream of passing traffic.", "\n\n'Help. ", "Please help us!' ", "she screamed.", "\n\nCameron – despite his injuries – was still trying to kick the knife out of Noye's hand. ", "That's when Danielle saw the four-inch blade glinting in the sunlight.", "\n\nNot one of the many passing motorists even attempted to stop to help. ", "Danielle ran to Cameron as he began staggering towards her, clutching his chest. ", "It was only then she noticed the blood all over him.", "\n\nCameron told her: 'He's stabbed me, Dan, get his number plate.'", "\n\nDanielle looked across at the driver of the Land Rover. ", "Kenneth Noye was walking back to his car still carrying the knife in his hand. ", "Another motorist later said he saw Noye smiling.", "\n\n'Help. ", "Somebody please help us!' ", "screamed Danielle Cable as she once more looked at her fiancé, covered in his own blood.", "\n\nHe collapsed in her arms.", "\n\nNearby, the Discovery's tyres screeched as Noye drove off at high speed. ", "Minutes later an ambulance arrived but it was already too late. ", "Cameron never recovered consciousness, and was pronounced dead at a nearby hospital at 2.10 p.m.\n\nKenneth Noye had a bloodied nose and swollen eyes. ", "He shot back onto the M25, swerving to avoid at least two other motorists. ", "He needed time to think about what to do. ", "After driving around for more than half an hour, he realized he had to break cover and use his mobile phone. ", "He immediately made a flurry of frantic calls in an effort to rally his associates so he could hatch an escape plan. ", "He knew there was no point in waiting around for the police to come calling.", "\n\nNoye spoke to family and friends a total of seventeen times in the nine hours following the killing of Stephen Cameron that tragic Sunday lunchtime. ", "At 2.04 p.m. Noye rang wife Brenda back at their house in Sevenoaks – just forty-nine minutes after the fatal stabbing. ", "The call lasted just eighteen seconds after Noye decided it was too risky to speak in any detail on the phone.", "\n\nOver the next hours a series of short and increasingly frantic calls were exchanged by Noye and his friends, family and contacts. ", "At 10.42 p.m. he spoke to the pilot of the helicopter he intended to use to escape the country. ", "After that Noye's mobile went silent for the following two days until his son Kevin made a brief call to it. ", "It was never used again.", "\n\nWithin twenty-four hours of Noye's attack on Cameron, he flew in a 'close business associate's' private helicopter from a field in Bristol to a golf course in Caen, in Normandy, France. ", "From there he took a private jet, laid on by John Palmer, to Madrid in Spain.", "\n\nNoye knew that the moment the police worked out he was responsible for the road-rage death of Stephen Cameron he'd become the most wanted man in Britain. ", "Having been Public Enemy Number One in the aftermath of John Fordham's killing, this was something he was used to, but, until they made the connection between the two deaths, Noye had to use every available moment to ensure that he put as many miles as possible between himself and his police pursuers.", "\n\nJust as Noye's helicopter rose above the countryside outside Bristol, his Land Rover Discovery, which still contained the knife he'd used to kill Stephen Cameron, was being driven in a bizarre three-car convoy to Dartford, Kent. ", "The last car had a very distinctive number plate and was owned by one of Noye's closest friends. ", "The middle vehicle, Noye's Land Rover Discovery, turned into a scrapyard and minutes later was crushed into a compressed box of jagged steel.", "\n\nKenneth Noye's cronies were already playing a significant part in helping the notorious criminal to cover his tracks.", "\n\n### **TWENTY-THREE**\n\nThe murder of hard-working electrical engineer Stephen Cameron shocked the nation. ", "Headlines the following day included POLICE HUNT FOR ROAD RAGE KILLER and HORROR OF MOTORWAY ROAD RAGE MURDER. ", "Across the country there was stunned disbelief that one motorist could take the life of another just because of a row over their driving. ", "Within the Brink's-Mat gang, word of Noye's involvement was already spreading, and they experienced outrage of a different kind – many of them believed that Noye's reckless act had once again focused even more attention on their own activities. ", "As one gang member later told me: 'Noye was at it all over again. ", "He was a fuckin' liability.'", "\n\nThe only clue to the identity of the Land Rover Discovery driver at this stage was a description given by heartbroken fiancée Danielle Cable. ", "She told police that he was about 5ft 10in, slim with brown collar-length hair. ", "He was also clean-shaven, wearing jeans and a dark bomber jacket. ", "Other witnesses who had been crossing the section of the motorway which ran over the scene of the murder provided police with the opening part of the Discovery's registration number, and officers were hoping that video cameras by the motorway might yield some clues. ", "However the footage was no help in identifying the killer. ", "Next the police announced that they were planning to check a thousand drivers of L-registered Land Rover Discovery vehicles.", "\n\nWhen an e-fit image of the murder was published in newspapers, it prompted various names to be put forward by members of the public as possible suspects. ", "But it didn't provide any firm leads. ", "Police were being very careful not to reveal the identity of Cameron's fiancée, Danielle Cable, as she was the only real witness to the entire incident. ", "There were genuine fears that the killer might come after her if he knew where to find her.", "\n\nNot surprisingly, Cameron's family and friends were having great difficulty coming to terms with what had happened. ", "At an emotional press conference given three days after the killing, Cameron's brother Michael said: 'He was the kindest and most affectionate person. ", "We are absolutely crushed and I don't have the words to express it. ", "The family is so close and there is so much love generated that we are going to get through this.'", "\n\nIt was not until they started studying the computer image of the road-rage killer more closely that detectives on the case began to make a possible connection to Kenneth Noye.", "\n\nNot only was there an uncanny likeness, but Noye's house was reasonably close to the scene of the murder. ", "The team set about making discreet inquiries and established that Noye had been regularly seen driving a Land Rover Discovery. ", "Perhaps significantly, they discovered Noye had left the country the day after the road-rage killing. ", "The connection was becoming more credible.", "\n\nMore than a week after the killing of Stephen Cameron, police raided Kenneth Noye's Sevenoaks home, looking for evidence that might link him to the crime. ", "They took away papers, clothes and a Range Rover, as well as closely quizzing Brenda.", "\n\nWhat they didn't realize was that Noye was actually being shadowed at the time of the killing by undercover detectives investigating his Brink's-Mat criminal activities. ", "However they had not followed him on the day of the murder of Stephen Cameron. ", "The surveillance team monitored his departure from Britain the day after the murder without realizing the significance of his flight abroad.", "\n\nAs one detective later admitted: 'It was just one of those things. ", "No one realized he was someone who was wanted for questioning about the road-rage killing because the police had not identified him by that early stage.'", "\n\nBehind the scenes, detectives tried everything to find Kenneth Noye before news of his link to the killing became public. ", "This was not revealed to other police forces immediately because detectives feared that Noye might find out that he had become a suspect. '", "Noye was lucky. ", "His own continued relationship with some policemen had left many officers deeply untrusting of their colleagues, and that helped him slip through the net,' explained one Kent detective.", "\n\nOn 9 June 1996, Kenneth Noye was publicly named as a suspect in the road-rage death of Stephen Cameron in a huge front-page splash story in the _News of the World_. ", "It was a blow for police who'd hoped they could keep his alleged involvement under wraps until they located him.", "\n\nCOP KILLER NOYE TO BE QUIZZED OVER ROAD RAGE MURDER screamed the headline in Britain's most popular Sunday tabloid.", "\n\nJust days before the road-rage killing, Kenneth Noye had met with a car dealer he knew called John Marshall, who supplied him with stolen vehicle licence plates, including those used on the Land Rover Discovery linked to the death of Stephen Cameron. ", "Following the murder, tattooed Marshall, thirty-four, vanished into thin air after leaving his £250,0000 home in Little Burstead, Essex, to 'meet business contacts'.", "\n\nThe next day he was found shot in the head and chest in his black Range Rover in Sydenham, south London. ", "Marshall had also been a close friend of executed Pat Tate and his brother Russell. ", "It emerged that Marshall had actually worked as a courier for some of the Brink's-Mat-financed Ecstasy runs to and from Holland, but the identity of the murderers remains a mystery to this day. ", "South London villains and many police officers were starting to wonder if the killings would ever stop. ", "The aftermath of the Brink's-Mat robbery had sparked a huge wave of violence and retribution.", "\n\nOn 11 June 1996, Kent police asked Interpol to issue a worldwide alert on Kenneth Noye, stating that he was wanted urgently for questioning in relation to the murder on the M25 of Stephen Cameron. ", "Every one of the 176 countries who were members of Interpol was sent a 'blue warrant' and requested to alert the Kent police murder incident room at Dartford, if Noye was seen.", "\n\nDetectives then announced that another character, called Anthony Francis, was wanted for questioning in connection with the road-rage attack. ", "In reality the name was simply a pseudonym regularly used by Kenneth Noye and a number of his other Brink's-Mat associates. '", "Anthony Francis' was the registered owner of the Land Rover Discovery L794 JTF which was traced to the house in Brigden Road, Bexleyheath where Noye had paid for those hostess parties earlier that year and during part of 1995.", "\n\nBoth the women who rented the house in Bexleyheath moved out shortly after the road-rage attack. ", "Police eventually interviewed both of them. ", "They also dug up part of the back garden just in case any of the missing Brink's-Mat bullion was anywhere to be found. ", "Nothing was located.", "\n\nKent police were informed by the Scotland Yard surveillance team shadowing Noye that he had travelled to northern Cyprus in late May where he had slipped into the familiar surroundings of the port of Kyrenia. ", "Turkish-Cypriot police even had a record of Noye arriving by ship.", "\n\nBut he vanished before the police could link him to the road-rage attack. ", "No one knew where he was now. ", "Worse still, there was no extradition treaty between northern Cyprus and the UK, which was disastrous news for the road-rage police investigation team. ", "Even if Noye was caught, it wouldn't be easy getting him back to stand trial. ", "While he was in northern Cyprus, Noye visited his recently purchased timeshare development, which was still under construction by local builders. ", "The development should have been the perfect refuge – except that too many people knew of his connection with it. ", "Development manager Colin Reader – brother of Brink's-Mat co-defendant Brian – was less than helpful when this author approached him on the island a few months after the killing.", "\n\n'Fuck off' were the only words he'd utter in response to questions about Noye. ", "It was then made very clear that it would be advisable to leave the development immediately or face physical intimidation.", "\n\nIn Swanley, Kent, the family and friends of Stephen Cameron attended his funeral service. ", "It was a measure of the sense of shock within the community and across the country that so many people turned up for it. ", "Crowds stood outside the church listening on loudspeakers. ", "After the service at St Mary the Virgin church, Detective Superintendent Nick Biddiss – the detective leading the hunt for Cameron's killer – said he believed that 'associates' of the criminal community could have information about the killer and his vehicle. ", "Inevitably the trail would lead Biddiss to the doorstep of yet more Brink's-Mat gang members as part of that process.", "\n\nAt 2.30 p.m. on Wednesday, 13 June 1996, thirty armed French police officers – tipped off by Kent police – swooped on a private plane as it landed at Le Bourget airport outside Paris. ", "Four squad cars swept across the runway as gendarmes surrounded the Learjet 55, which had stopped at Paris for refuelling en route to Tenerife.", "\n\nThe previous day the Learjet – registration number N104BS – had flown from Bristol to St Petersburg. ", "The plane and some of its baggage were searched, and five men were held for questioning and then allowed to leave two hours later. ", "In the month since the road-rage killing of Stephen Cameron, that same jet had made a series of flights, some of which detectives believed involved Kenneth Noye.", "\n\nOn 28 June 1996, Noye allegedly flew back into Britain and lunched at the China Gardens restaurant in West Kingsdown with some other members of the Brink's-Mat gang. ", "It was as if they were taunting the police, who, the villains believed, had set up Noye because they were still bitter about how he'd been acquitted for the murder of John Fordham.", "\n\n_Come and get us if you can_ , seemed to be the message.", "\n\nThe police were more and more reliant on their intelligence networks as they sought to track Noye and other Brink's-Mat gang members, who were now creating all sorts of smokescreens to confuse their pursuers. ", "Occasionally scraps of genuine information came to the police from their underworld contacts, many of whom would have preferred to see Noye no longer at liberty since the stir he'd caused was alerting the police to their own illicit activities.", "\n\nRumours were also circulating that Stephen Cameron knew his killer. ", "This was completely untrue, but the lack of hard facts in the case had the knock-on effect of encouraging wild rumours to spread. ", "Equally, in a case that might eventually hang on the question of identity, Noye could argue that the public juxtaposition of his face with the identikit image compiled with Danielle Cable's help damaged his chances of a fair hearing.", "\n\nAt the end of June, Kent detectives revealed that they wanted to speak to a close friend of Noye's called Gerry Copeland. ", "Copeland drove a dark blue Mitsubishi Shogun similar in appearance to the Land Rover Discovery identified by Cameron's fiancée Danielle as the vehicle used by the killer. ", "At this stage the police had still not established that the killer had definitely driven a Discovery, despite being certain of Noye's link to the killing.", "\n\nThere were a number of other Noye 'sightings' in southeast England at the time, suggesting that he was either taunting the police by popping in and out of Britain as he pleased despite being a wanted man, or he was spreading rumours of his presence just to test out the response time of the police and waste their resources.", "\n\nUnderworld sources suggested to police that Noye was renting a villa in Portugal, near Lisbon. ", "They also insisted that he was continually flying in and out of Elstree airfield, just north of London. ", "It was even claimed that he'd popped into a house in Essex for a relative's birthday celebrations.", "\n\nOver in Sevenoaks, Kent, Noye's wife Brenda was still fielding virtually non-stop inquiries from journalists. ", "She'd never forgiven the media for the way they'd treated her husband following the killing of John Fordham. ", "In an interview with this author in July 1996, she claimed that her husband was being persecuted over the road-rage killing.", "\n\nBrenda Noye said: 'Don't talk to me about him wanting to come back to help police. ", "He would be an idiot to come back. ", "What they would do is stick him in a Category A prison for two years, pick the jury and get the guilty verdict they want. ", "I have no idea where he is and I don't want to know. ", "As far as I am concerned, he is better off out of it.'", "\n\nIroning clothes in the kitchen of the house in Sevenoaks, she added: 'I live in fear of my life. ", "I moved here after the Brink's-Mat case because I feared for the safety of my family. ", "Now I am living in fear again because of all this publicity. ", "Nobody had ever heard of my husband before that bloody Brink's-Mat case.' ", "She also said in reference to the death of John Fordham: 'Okay, he was a gold smuggler, but he was put in a position where he had to defend himself.'", "\n\nBy September 1996, the Kent police's frustration was mounting because Kenneth Noye really did seem to have disappeared into thin air. ", "All the surveillance reports, alleged sightings and underworld rumours had come to nothing.", "\n\nThe _Daily Mirror_ put up a £10,000 reward for the arrest and conviction of the 'road-rage killer'. ", "Kent detectives issued an internal wanted poster in the _Police Gazette_ in the same week as the _Mirror_ reward. ", "It included two photographs of Noye and warned that he was 'violent, carries knives'. ", "The special notice was sent to police forces throughout Britain.", "\n\nOn 26 September 1996, the Brink's-Mat curse claimed yet another victim – Kent 'businessman' Keith Hedley was woken on his 45ft motor yacht _Karenyann_ in Corfu by the sound of men apparently trying to steal his dinghy. ", "According to friends who were guests on board, Hedley ran through the boat to collect a shotgun, which he always kept loaded, and fired two shots into the sky to scare the thieves.", "\n\nThe raiders returned fire with three shots, two of which hit Hedley in the shoulder and stomach, fatally wounding him. ", "Police blamed the attack on a group of Albanian pirates. ", "Initially, the incident was brushed off as a tragic example of international piracy, but back in the south London underworld there were rumours that Hedley had crossed the Brink's-Mat gang after some gold he was supposed to be looking after had gone missing.", "\n\nHedley had been on his yacht with a woman called Valerie Pallett, who was unknown to his family – including wife Sylvia – back in the UK. ", "All three of fifty-seven-year-old Hedley's guests – the others were an old school friend called Patrick Hills and his wife Jane – were interviewed after the attack. ", "Hedley, a father of two who lived in Borough Green, Kent, and ran three building firms, had been on the island for six days. ", "Hedley's brother David, sixty, from Folkestone, later said Keith visited the island two or three times a year – often with sons Gary, twenty-nine, and Ian, twenty-five. ", "Of Miss Pallett, his brother said: 'I have never heard of her.'", "\n\nHedley's sprawling farmhouse was located very near to the Noye family home in Sevenoaks, and had even been searched by police during the Brink's-Mat inquiry. ", "Hedley was never charged, despite the discovery of a sawn-off shotgun on his property. ", "But that police raid had sparked suspicion in the underworld that he might have fed information to the detectives in exchange for having any potential charges against him dropped. ", "Though they had been close friends during the years when they lived near each other, Keith Hedley and Kenneth Noye had fallen out about some money that Noye reckoned he was owed.", "\n\nWhatever the truth of the matter, Hedley's death was clearly another example of just how dangerous it was to be associated with the Brink's-Mat robbery.", "\n\nIn November 1996, seven men accused of taking part in the Brink's-Mat-inspired hole-in-the-wall cash-dispenser scam were found guilty. ", "John 'Little Legs' Lloyd – still rumoured to be one of the original Brink's-Mat robbers – was described by the judge as one of the main organizers of this latest crime.", "\n\nThe hole-in-the-wall defendants also included Paul Kidd, thirty-six; Graham Moore, thirty-two; Stephen Seton, sixty-five; Stephen Moore, forty-one; the legendary local villain Billy Hayward; and John Maguire, thirty-six. ", "All but one was from Kent or south-east London. ", "They entered guilty pleas after failing in an attempt to have the proceedings stayed as an abuse of process. ", "Kenneth Noye was named in court as playing a part in organizing the crime, but there had never been enough evidence for police to press for a prosecution. ", "The Brink's-Mat connections were there for everyone to see.", "\n\nAfter Little Legs Lloyd copped a five-year stretch for his part in the hole-in-the-wall scam, this author paid his live-in love Jean Savage a visit at their immaculate bungalow in West Kingsdown, Kent, which they'd bought from Noye more than twelve years earlier. ", "Jean proved a charming lady, despite her two Rottweilers and the seven-foot-high brick wall complete with electronically controlled gates that surrounded the property.", "\n\nFollowing a ten-minute chat on her intercom system, Savage made it clear she wasn't going to talk any further about Lloyd and his criminal activities. ", "In 1999, Lloyd was released from prison and nothing has been heard from him since. '", "But he's around and he's looking for new business opportunities – or so I've heard,' one old south-east London face said at the time.", "\n\n### **TWENTY-FOUR**\n\nAcross the river in north London, a bankrupt property developer and drug dealer called Michael Olymbious had been borrowing a ton of cash from the notorious Adams family. ", "When all Olymbious's businesses had gone belly up a few months earlier, he'd fled to Cyprus to avoid his sinister 'bankers' the A-Team. ", "But, as the old saying goes, you can run but you can't hide.", "\n\nIn 1996, Olymbious slipped back into London to see his family. ", "He agreed to attend a meeting in south London the night before he was due to fly back to Cyprus. ", "As he got out of his car, a lone gunman fired a single bullet, which went right through his head.", "\n\nOne of Olymbious's failed property deals involved the Beluga nightclub on Finchley Road, north London. ", "The Adams family had turned it into the epicentre of their criminal empire. ", "At one time the club had been sponsoring world title fights featuring boxer Chris Eubank and promoted by Barry Hearn, one of Britain's top promoters. ", "When a tabloid newspaper exposed the club's links with the Adams family, Hearn immediately severed his sponsorship links.", "\n\nThe A-Team had carefully nurtured contacts in high places for years. ", "In 1996 one establishment figure came under close scrutiny from detectives and MI5 officers trying to break the family's stranglehold on London's club land. ", "This man owned a private company that supplied the Adams family with an arsenal of weapons, including sub-machine guns, from former Eastern bloc countries. ", "The same 'respectable' individual had, it was claimed, even become a member of the A-Team's inner circle.", "\n\nIn the summer of 1997, the A-Team had the front to put it around that they'd donated thousands of pounds to the Labour Party just before their historic election landslide in May of that year. ", "Tommy Adams told associates he'd made several payments to the party through two henchmen, Michael Papamichael and Edward Wilkinson, both later jailed for other Adams-related offences But since gifts of less than £5,000 do not have to be publicly disclosed by political parties it seems unlikely we'll ever hear the real story behind these allegations.", "\n\nThe A-Team had also invested a lot of their dirty money in the world of horse-racing through their old friend and associate, so-called businessman Brian Wright, who'd long since been fingered to the police as yet another villain linked to the Brink's-Mat laundering operation. ", "Wright – known as 'The Milkman' because he always delivered on time – had been linked to race-fixing at meetings across the country. ", "Organized crime investigators had kept an eye on him for years. ", "Through Wright, the A-Team were reckoned to have forged close connections to specific jockeys and bookmakers involved in race-fixing.", "\n\nIn 1997, yet another Brink's-Mat associate came to a nasty end in a classic underworld hit. '", "Scarface' Danny Roff was one of the prime suspects in the 1990 murder of Great Train Robber Charlie Wilson in Spain. ", "Roff's nickname came from a distinctive scar under his right eye and a liking for heavy gold jewellery.", "\n\n'Scarface' had been involved in helping launder the proceeds of Brink's-Mat, and there was already officially a strong link between the robbery and Wilson's murder. ", "Roff, thirty-six, had been paralysed in the spine after an earlier attempt on his life and was in a wheelchair. ", "As he arrived home in his Mercedes in Wanstead Road, Bromley, Kent, he began struggling to get out of his car.", "\n\nJust then two masked gunmen ambushed Roff and shot him at least five times in the head and chest. ", "As one old south London face said afterwards: 'Roff was always going to end up dying like that. ", "He had it coming. ", "He thought he was fuckin' invincible.' ", "Another Brink's-Mat source said: 'Roff tried to keep a bit of the Brink's-Mat cash for himself after a drug deal and as a result got forced into carrying out the Charlie Wilson hit on behalf of others. ", "But Charlie's people got him in the end.'", "\n\nA few weeks later, Kenneth Noye encouraged the word to go out that, like Roff, he'd also been executed in a gangland contract killing. ", "It was an attempt to take the heat off the worldwide hunt for him. ", "But the stories were treated with understandable scepticism by police. ", "There was another rumour that Noye had travelled to Brazil to check out potential 'retirement' properties. ", "Others claimed he intended to get plastic surgery carried out while he was in Rio before returning to Britain to live. ", "But as usual, there was no concrete evidence whatsoever to back up these claims.", "\n\nKathy McAvoy – wife of incarcerated Mad Mickey McAvoy – reflected some of the rest of the gang's irritation with Noye when in 1997 she told this author: 'He's a fool and an idiot. ", "Only an idiot would do the things he's done. ", "He was a fool because he allowed himself to be caught in certain situations.' ", "Kathy McAvoy claimed that Noye was not liked by the other members of the Brink's-Mat gang. '", "He's been portrayed as a hero but he isn't. ", "He's nothing like that. ", "He was no more than a fence.'", "\n\nKathy McAvoy would only agree to meet this author in a crowded shopping mall in Bromley, south London, after certain assurances had been made. ", "She also made a point of hammering home the message that her husband and other robbers had little time for Kenneth Noye. '", "He's just a load of trouble. ", "Not even one of us really. ", "A bloke from the suburbs, who acted like he was from south-east London when he wasn't,' added Kathy McAvoy.", "\n\n'I feel sorry for Brenda [Noye's wife]. ", "He's left her to face all the music and it can't be easy. ", "She's a lovely lady,' she added. ", "Kathy McAvoy confirmed that she had talked to underworld figures about Noye's disappearances and there was a collective feeling that 'we'd like him to just stay away for ever.'", "\n\n*\n\nThe key to Kenneth Noye's survival was that all of his criminal associates, friends and family believed he'd been wrongly accused of the road-rage killing, so they were willing to go to great lengths to help him.", "\n\nThe Krays' legendary associate Freddie Foreman summed up the attitude of many when he said: 'Obviously anything that goes wrong, any major crime that happened recently, Kenny Noye is going to have his name put up front.'", "\n\nNoye and Tony White's brilliant brief Henry Milner – whose legal skills continued to be used by many of southeast London's best-known criminal faces – handled all inquiries about Noye with great skill. ", "But like everyone else, he said he had no idea where Noye had gone.", "\n\nBy the middle of 1997, Brink's-Mat insurers believed they had recovered virtually the whole of the original value of the stolen gold bullion. ", "But that didn't allow for the fact that the £27m had undoubtedly been turned into hundreds of millions through numerous successful investments by the criminals.", "\n\nWith Kenneth Noye on the run, John 'Little Legs' Lloyd in prison for the hole-in-the-wall scam and McAvoy and Robinson still banged up, it was thought that maybe the Brink's-Mat trail would finally run cold. ", "The police presumed that the gang and its associates would put the brakes on their 'business opportunities' and try to keep a lower profile. ", "But greed always conquers brains in the end.", "\n\n### **TWENTY-FIVE**\n\nIn late 1997, Brink's-Mat cash helped finance an audacious plot to spring a gang of villains from inside a British jail. ", "The extraordinary escape plan involved smuggling in quantities of Semtex explosive, blasting a hole in the jail wall and flying the prisoners to freedom by helicopter. ", "One employee at the top-security Whitemoor prison in Cambridgeshire was arrested after an inmate leaked the escape plans to prison authorities. ", "The key figure in the scheme was one of Kenneth Noye's oldest criminal associates, south Londoner George Caccavale, fifty-six. ", "He was serving eighteen years inside Whitemoor for his part as the leader of a nine-man gang jailed for a total of 167 years at Bristol Crown Court in July 1997 after being convicted of being involved in a £65m drug-smuggling operation.", "\n\nCertain members of the Brink's-Mat gang decided to help finance the escape bid because Caccavale had been a loyal and trusted associate of theirs. ", "But, as one Brink's-Mat source explained, 'Noye and some of the others needed to get George out to recoup their original investment.' ", "They'd ploughed millions into his operation and needed a return on their money, especially since the costs associated with their way of life were so high. '", "We're talking about paying informants, safe houses, new vehicles, private planes. ", "None of it comes cheap,' explained one who should know.", "\n\nNevertheless, it's a measure of the power they believed they held that they would even consider such a daring plan.", "\n\nIn November 1997, three Brink's-Mat associates travelled by private jet to the Costa del Sol to meet a gang of well-known drug dealers and armed robbers who'd agreed to acquire the Semtex and hire a helicopter for the audacious escape plan. ", "The gang even had an informant working inside Whitemoor, who was prepared to smuggle the Semtex into the prison. ", "The informant had been trapped into helping the gang because he'd been caught in a compromising position with a woman planted by the criminals. ", "The same man was also smuggling drugs on behalf of other prisoners inside Whitemoor.", "\n\nFollowing the anonymous tip-off, prison authorities foiled the escape plan just a week before it was due to be carried out. ", "They'd become particularly sensitive to such plots since the 1994 escape of six inmates, including five IRA terrorists, from the same jail.", "\n\nThe Brink's-Mat gang were furious. ", "Until Caccavale was out of jail, their investments were effectively lost.", "\n\nIn late 1997, while Kenneth Noye was still on the run, he bought a £200,000 yacht in Cadiz, Spain, and immediately sub-leased it out to various hashish gangs to use for drug smuggling from Morocco. ", "He followed this by investing half a million pounds in a carefully planned hashish smuggling operation operating through one of the most notorious criminals in Gibraltar – just two hours' drive from his Spanish hideaway south of Cadiz. ", "Noye – using a false British passport – never once even had his picture ID checked by border patrol officers from either Spain or Britain.", "\n\n'It's the easiest border to walk through in the world. ", "I've never ever seen police check the photo ID on a British passport,' said one regular Gibraltar visitor, Anthony Bowman. '", "No wonder Noye got through so easily.'", "\n\nA Spanish police source in southern Spain revealed that British police in Gibraltar actually monitored a man later identified as Noye meeting local criminals around this time. ", "The source explained: 'This is very embarrassing. ", "But there were so few up-to-date photos of Noye that the police in Gibraltar had no idea that the man they had video footage and photos of was Noye.'", "\n\nNoye had been meeting an infamous Gibraltarian criminal who was under constant surveillance because he was believed to be the mastermind behind one of the biggest drug-smuggling cartels in the world. ", "At that time, Noye had been using a false passport in the name of another well-known local British criminal, which further confused the situation.", "\n\nBut the Spanish police source added: 'It is highly embarrassing that British police were monitoring the most wanted man in their own country without even realizing it.' ", "However the same source also confirmed that just a couple of months later, Spanish police also had Noye within their sights when they were monitoring the movements of the local girlfriend he had at the time, Mina Al Taiba. '", "She was under surveillance because she was a known associate of several criminals on the Costa del Sol,' explained the source. ", "Like the Gibraltarian police, the Spaniards failed to recognize Noye, so, although wanted in his Britain for a crime that had shocked an entire nation, he remained at liberty.", "\n\nJust before Christmas 1997, Noye made direct contact with one of his closest police contacts inside Scotland Yard. ", "As one highly placed source explained: 'Noye was taking a hell of a risk but he wanted to sound out the Yard about what would happen if he decided to walk into a police station and give himself up.' ", "Noye was told he would not get any special favours and warned that Kent detectives believed they had conclusive proof of Noye's involvement in the road-rage death of Stephen Cameron. ", "Noye's call to Scotland Yard was from a scrambled phone line, which prevented the police from tracing the call. ", "But they believed the clarity of the line meant that Noye was definitely within a 25-mile radius of London when he made it.", "\n\nMany of the Brink's-Mat gang's closest associates in the drug world were not having it all their own way, either. ", "So-called heroin king James Hamill was jailed for eighteen years in February 1998 after being found guilty of running one of Britain's fastest-growing heroin-supply rings. ", "The police believe that some of the Brink's-Mat proceeds were 'invested' in Hamill's operation. ", "Hamill, thirty-eight, had aspirations to become one of Europe's most powerful godfathers and he'd taken a lot of advice from two particular members of the Brinks-Mat gang over the years.", "\n\nJust two weeks before Hamill was jailed in Aberdeen, one of his closest associates – feared Glasgow gangster Stephen Docherty – plunged to his death from a high-rise block. ", "In the high-risk, high-profit drug empires, life often came cheap.", "\n\nThe Brink's-Mat team had been seriously considering joining forces with Hamill and his Scottish gang to supply virtually every type of recreational drug to 'customers' across Britain and possibly even into Europe. ", "But they pulled out immediately after Hamill's arrest.", "\n\nKenneth Noye continued masterminding huge drug deals as he continued to evade justice. ", "By early 1998, he was mostly settled in an isolated location on the Spanish coastline, just south of Cadiz. ", "Noye boasted to associates that he'd decided to concentrate on smuggling hashish because he believed that Spanish police were more concerned about so-called heavier drugs such as cocaine and heroin.", "\n\nAt his house, Kenneth Noye – using at least two aliases – occasionally upset his neighbours. ", "As neighbour Tewe Dungholt explained: 'When I met Noye he almost killed me because he thought I was a burglar after I jumped over his garden wall to talk to his gardener, who also attends to my house. ", "I was just walking across his lawn when I saw this man come out of the back door with something glinting in his hand. ", "I immediately realized it was a knife and stopped in my tracks to explain who I was. ", "He put it down by his side immediately and then spoke to me briefly before suggesting I should leave his property. ", "I would not say he was rude, but he was very menacing and I only ever saw him one other time in the street as he drove past in his Shogun.' ", "Herr Dungholt added: 'I realized he was not a man to cross.'", "\n\nNoye became increasingly confident that the authorities would never catch up with him. ", "He even flew his own father and one of his blonde mistresses in from south-east London to stay with him during the early part of 1998. ", "Noye was being very careful not to implicate his wife at this time so she was deliberately kept 'off the scene'. ", "Their eventual separation was almost definitely prompted by Noye's desire to help protect Brenda from the fallout caused by the road-rage killing.", "\n\nBut the longer Kenneth Noye was on the lam, the more the feeling grew that maybe some of his criminal enemies – including certain members of the Brink's-Mat gang – had decided that they were fed up with all the unwelcome attention he had caused through his alleged involvement in the road-rage killing.", "\n\nNotorious Costa del Crime resident Mickey Green, described by Ireland's Criminal Assets Bureau as one of the world's biggest cocaine traffickers, had become so adept at escaping justice since his days as a notorious London armed robber thirty years earlier that he'd been nicknamed The Pimpernel by authorities. ", "It was said that Green had evaded arrest on the Costa del Crime for a couple of years by wearing a disguise and using a false identity. ", "In the nineties he spent much of his time in Spain, having been released on a legal technicality the last time the law had got their hands on him. ", "Green was the classic 'Mister Big' with alleged links to the Mafia and Colombian drug cartels. ", "He was a regular visitor to South America, where he nailed down a number of huge cocaine deals with successors to the most famous drug baron in the world, Pablo Escobar, who'd been killed by drug enforcement agents in 1993. ", "There was even talk that Green had been one of the actual robbers who took part in the original Brink's-Mat raid.", "\n\nGreen was using a lot of cash that had been provided to him by certain members of the Brink's-Mat gang because they knew that vast profits could be made out of cocaine if it was purchased direct from the 'source' in Colombia. ", "Green wasn't in the slightest bit fazed by travelling to places like Medellin, a city that was virtually ruled by the Colombian drug cartels.", "\n\nWhen American DEA agents monitoring the big Colombian drug barons reported that a 'limey' criminal had been in a series of meetings with gangsters, they passed on his name and details to their colleagues at Scotland Yard, but there was nothing anyone could do without any more concrete evidence. ", "It was also thought by detectives in London that Green should be allowed to continue setting up cocaine deals in the hope that he would lead them to other even bigger fish.", "\n\nGreen always returned from his trips to Medellin looking as if he didn't have a care in the world. ", "He believed he was untouchable. ", "His palatial hacienda, just east of Marbella, was worth more than £2m, and he'd got a friend to live in a gatehouse and keep an eye on the property whenever he was on his travels. ", "As one of his Costa del Crime associates explained: 'Mickey was from the old school. ", "He'd done well for himself and kept on his toes for much of the past twenty-five years. ", "Good luck to him!'", "\n\nWell into his sixties, Green had, over the years, been shadowed by British, Dutch and French authorities, who suspected him of major criminal activities. ", "There had even been a rumour that he kept £1m in French francs hidden in a box buried under a flowerbed at his Marbella villa. ", "Green's personal fortune was estimated to be at least £50m.\n\nMichael John Paul Green was born in 1942 in Wembley to a family that originally came from Ireland. ", "He was said to be your original medallion man, with a taste for birds and booze. ", "He first made his criminal reputation in 1972 when a notorious London supergrass called Bertie Smalls named him as leader of a gang of robbers known as the Wembley Mob – at the time the UK's most successful team of armed blaggers. ", "Green was eventually jailed for eighteen years for his part in the robbery of a bank two years earlier in Ilford that yielded £237,000, although he was suspected of involvement in numerous other crimes.", "\n\nGreen got out on parole after serving seven years of his sentence, and was soon back in the thick of things. ", "He teamed up with old Wembley Mob partner Ronnie Dark, and they developed a lucrative VAT scam on gold krugerrands. ", "They bought the gold coins – which weren't liable for VAT – then melted them down into ingots and sold them back to the bullion house, collecting a hefty wodge of VAT in the process. ", "It was reckoned Green and his pals made £6m in under a year.", "\n\nGreen went on to act as a 'consultant' to the Brink's-Mat gang and helped them set up their own VAT-avoidance scam, which is believed to have added at least £10m to the profits from the gold itself. ", "But then Green was arrested by Spanish police in 1987 after two tons of hash were seized in Barcelona. ", "Green was mysteriously granted bail and fled to Morocco, leaving behind eleven powerboats and yachts that were allegedly used to run drugs from North Africa to Spain.", "\n\nWhen Green turned up in Paris, Interpol were alerted. ", "French police swooped on his swish Left Bank apartment where they found gold bullion and cocaine but no Mickey Green. ", "That gold was allegedly part of the Brink's-Mat consignment, and it was suspected that he was using it to buy shipments of cocaine directly from the Colombian cartels. ", "In his absence, Green was later sentenced to seventeen years in jail for possession of drugs and smuggling. ", "Green's next stop was California where he rented Rod Stewart's mansion under an alias. ", "A few months later FBI agents knocked his front door down as he was lounging by the pool and arrested him. ", "Green was put on a flight bound for France and the jail sentence that was waiting for him, but he got off when the plane made a stopover at Ireland's Shannon airport. ", "It's unclear why it took more than an hour for anyone to notice his absence.", "\n\nUsing his Irish passport, he slipped unnoticed past customs men and headed for Dublin where he had many contacts. ", "Green took full advantage of the weak extradition laws that existed between the Irish Republic and France at the time and settled in Dublin.", "\n\nHe even splashed out on a massive half-a-million-pound farmhouse just outside the city. ", "But then Green ran a red light at a busy junction in his Bentley and killed a local taxi driver called Joe White. ", "Green was fined and banned from driving, but there was uproar in the local press because he was not given a custodial sentence, despite the death of an innocent man. ", "Under mounting pressure, Irish police made it clear they were planning to grab Green's assets, including his farmhouse property, so, in typical fashion, the Londoner disappeared. ", "It was later claimed during another criminal's trial in London that Green bribed two witnesses in the death-crash court case to make sure he wasn't sent to jail. ", "During the trial of Green's associate, supergrass Michael Michael, a female drug courier told the court that she and an Irishman were paid to lie about the car smash that killed Joe White. ", "Shortly after leaving Ireland, Green turned up once again in Spain and simply carried on where he had left off, still apparently untouchable on the Costa del Crime.", "\n\nBut characters like Mickey Green really got up Mad Mickey McAvoy's nose. ", "He suspected they were spending his share of the Brink's-Mat gold, even though McAvoy had made it crystal clear over and over again that he was fully expecting to be given all 'his' gold when he was released.", "\n\n### **TWENTY-SIX**\n\nA beige 3-litre Vectra containing two Kent detectives and a Spanish officer headed off slowly behind Kenneth Noye's Mitsubishi Shogun as it began twisting and turning down the hill from his house into the nearby _pueblo_ of Atlanterra, seventy miles south of Cadiz. ", "It was late August 1998. ", "The English police had been provided with the number of a mobile phone that Noye was using and used the British security services to track it down to this area of Spain.", "\n\nTwo other vehicles – a Golf GTI and an Astra – joined the convoy from different positions as Noye hit the straight road out of Atlanterra through Zahara and towards the larger coastal port of Barbate. ", "As usual Noye was driving at very high speed, but the officers were all confident he had no idea he was being shadowed.", "\n\nNoye drove through the busy centre of Barbate and headed onto a narrow road that ran through a forest towards the coastal hamlet of Los Caños de Meca. ", "Minutes later he picked up his mistress Mina from her rented beachside house, and the couple headed back towards Barbate at high speed.", "\n\nBehind them, detectives had decided that because the road was so quiet and the area so sparsely populated they would use only the Vectra to shadow Noye. ", "The two other cars were driven separately back to Barbate to await instructions. ", "But then, as Noye sped through the isolated forest road from Los Caños to Barbate, disaster struck.", "\n\nAs one officer later explained: 'We lost him at the second curve. ", "He just disappeared. ", "There was a crossroads up ahead and he could have gone in any of three directions.'", "\n\nInstead of panicking, the detectives remained convinced he'd end up in Barbate, so they slowed down and called to the other two vehicles to keep an eye out for him in the town. ", "For the following tense half-hour none of the investigators caught a glimpse of Noye's now familiar dark blue Shogun with its distinctive Belgian plates. ", "The officers began to wonder if perhaps Noye had been tipped off about their operation. ", "It was 10.30 p.m. on a busy Friday night, and the reality was that Noye could have slipped through their grasp.", "\n\nAs the minutes ticked towards eleven, it was decided that the three cars should float around Barbate in the hope of spotting Noye's Shogun parked up in the busy town. ", "They prayed he had stopped to eat dinner somewhere.", "\n\nIn fact, Noye's love of fresh fish had resulted in him heading for El Campero restaurant, right in the centre of Barbate. ", "It served the most delicious cuttlefish, squid, bream, sole, dogfish, mackerel, sardines, anchovies and fresh tuna. ", "At 11.20 p.m. Noye and his mistress Mina walked hand in hand into the front veranda of the restaurant and were seated at a corner table close to the pavement. ", "Noye always chose such tables because if any 'problems' arose he knew he could slip away quickly.", "\n\nJust as he was sitting down, the three detectives in the Vectra spotted the Shogun. ", "As they circled the square in front of the restaurant they spotted Noye himself almost immediately.", "\n\nThe officers radioed to the other cars to meet them in a street adjoining the square, where they parked two of the vehicles, the Golf GTI and the Vectra. ", "They agreed that they would have to act like drunks in order to get near enough to the restaurant to make certain that it was indeed Noye.", "\n\nThe detectives bought a few litre bottles of beer from a nearby bar, got back into the Astra and double-parked it virtually in front of the restaurant. ", "Then they began playing The Prodigy's 'Firestarter' at full blast on the car stereo. ", "As one detective later recalled: 'Basically we were singing and shouting and acting like it was a Friday night out for the lads.'", "\n\nThree of the officers then tumbled out of the car and manoeuvred themselves nearer to Noye's table. ", "They watched as Noye ordered a bottle of white Rioja and a seafood salad.", "\n\nMore officers then linked up from the other cars after being radioed in by the team that had spotted Noye and began weaving their way back up the pavement towards the restaurant. ", "Then four of the 'drunks' surrounded Noye's table. ", "Noye tried to ignore them in the hope they would go away. ", "The last thing he wanted was a bit of aggro with a bunch of drunken British hooligans. ", "One of the officers later explained: 'I then dropped my bottle of beer on the floor and leapt on him. ", "There was a smash of a glass on the table and I floored him.'", "\n\nThe detective got Noye in a painful headlock and fell to the ground with him. ", "Two other detectives each grabbed one of Noye's arms, which they yanked up behind his back while a fourth officer handcuffed him. ", "Eighteen-stone Spanish police chief Miguel Fernandez later claimed he was the one who had to sit on Noye – who was struggling fiercely – in order to get him handcuffed.", "\n\nIn the middle of all this, Noye's mistress Mina coolly got up and disappeared off into the night before the detectives thought to apprehend her. ", "Four policemen literally picked Noye up off the floor and carried him to the back of the Astra. ", "As two officers got in the front of the car, Noye shouted: 'Why am I being detained? ", "I want to see a lawyer and I want to see a doctor.'", "\n\nMinutes after his arrest, Noye was deposited at Barbate's small, scruffy police station where charges were formally read to him. ", "Noye was then searched. ", "All detectives found were a cheap wristwatch and a wallet carrying 1,400,000 pesetas (more than £6,000) in cash.", "\n\n'What's the cash for?' ", "detectives naturally inquired.", "\n\n'Spending money for the weekend,' came Noye's sarcastic reply.", "\n\nNoye also had in his possession a chequebook with five cheques signed to a man called Kerry Stuart Mayne and a further cheque for £5,000 made out to a furniture company. ", "Another chequebook was registered to Mayne, the fake name used by Noye during his stay in Spain and even at a local bank where he'd set up an account.", "\n\nIt also happened to be the name used by one of Noye's main money men, who paid regular visits to Noye when he was out in Spain to keep him supplied with cash. ", "The police discovered a passport in the name of 'Alan Edward Green' in which were found stamps showing he had visited Jamaica and Tangiers on several occasions. ", "Kent police hoped the fake UK passport would ensure that Noye's extradition could be speeded up because it meant Spanish police would not pursue him under his real name.", "\n\nBy approximately 2 a.m. – just over two hours after his dramatic capture – it was decided Noye should immediately be transferred to a high-security jail near Cadiz, 35 miles north of Barbate. ", "Kent police knew all about Noye's friends and associates and they didn't want to take any risks with their highly prized prisoner.", "\n\nBack in London, the notorious Adams family's power and influence seemed to be everywhere. ", "At the same time as the net was closing on Kenneth Noye in Spain, an official with the Crown Prosecution Service took a bribe from the brothers and leaked confidential information to them to alert them about police plans to close in on the family. ", "Mark Herbert, a £14,000-a-year administration officer working at the CPS headquarters in London, knew exactly who the Adams family were because his own father was a policeman. ", "He didn't just limit his activities to warning the Adamses when the police noose might be tightening. ", "Herbert also took the names of informants off a CPS computer file with a view to sharing them with his criminal paymasters. ", "As Victor Temple QC later told a court, 'it needed little imagination to anticipate what might happen if the name of informants were to fall into the wrong hands.' ", "Fortunately detectives intercepted the handwritten and potentially lethal document.", "\n\nA court case in September 1998 (just days after Noye's arrest in Spain) ended for once with a conviction and jail sentence for a member of the Adams family. ", "Tommy Adams was given a seven-and–a-half-year stretch for importing cannabis. ", "In public, the police were delighted to have finally made charges stick on an A-Team member but Tommy – chewing gum and laughing as he was taken down to begin his sentence – saw it in a different light.", "\n\nThe police had confiscated £1m in cash from Adams, but they'd hoped for at least £6m. They were convinced some of that money came directly from the laundering of Brink's-Mat gold.", "\n\nBut what got most of London's big firms talking was the rumour that the rest of the A-Team had 'allowed' that prosecution to go through to teach wild man Tommy, who'd been setting up drug deals without telling the rest of the family, a lesson. '", "The brothers went to see Tommy in Belmarsh prison,' one Adams associate later explained. '", "They told him they were dumping him because he'd gone behind their backs. ", "He'd been caught freelancing and he was paying for it. ", "They could have gone and bribed the jury – £1m is not a problem... or given him the bullet, so he got off pretty lightly.'", "\n\nIn early 1999, the A-Team's 'influence' in criminal courts returned with a vengeance when police went for a prosecution over a notorious torture case. ", "David McKenzie was a wealthy 46-year-old financier with an office in Mayfair, in London's West End. ", "McKenzie laundered drug money for the Adams family, but his investments took a nosedive and he lost close to £2m of the A-Team's dirty money. ", "McKenzie said he'd been summoned to a meeting at Terry Adams's mansion in the north London suburb of Finchley for 'a discussion'. ", "He was later found beaten and cut up so badly that one detective said his body looked like a London Underground map. ", "Patsy Adams's golf partner 'Big' Chris McCormack, forty-four – a close associate of all three brothers – stood trial at the Old Bailey accused of causing McKenzie grievous bodily harm with intent.", "\n\nBy this time Terry was privately acknowledged as 'the chief exec of the Adams family board'. ", "McKenzie's courtroom testimony confirmed Terry's status as the main man. '", "Everyone stood up when he walked in,' McKenzie explained. '", "He looked like a star... he was immaculately dressed, in a long black coat and white frilly shirt. ", "He was totally in command.'", "\n\nThe Old Bailey jury of six men and six women deliberated for a day and were then sent to a hotel for the night – with round-the-clock armed police protection. ", "At lunchtime the next day the enforcer was acquitted of the assault. ", "As Big Chris heard the verdict, he turned to the jury and said 'Thank you', before adding: 'Come and have a drink with me over the pub.'", "\n\nDespite the acquittal, the case made the A-Team realize that they were pushing their luck, and two of them headed out to supposedly 'retire' on the Costa del Sol. ", "At their peak the A-Team were rated as 'ten times more scary than the Krays'.", "\n\nFor now, however, their alleged connection to the Brink's-Mat robbery was starting to cause them a lot of aggravation they could do without.", "\n\nIn May 1999, after many months of wrangling, Noye – who continued to run his criminal enterprises from inside a Spanish prison cell – was finally brought back to Britain to await trial after many months of legal wrangling. ", "He was given an entire wing of the notorious Belmarsh prison, in south-east London, to himself because of fears he might escape.", "\n\nIn a series of tape-recorded telephone interviews conducted inside Belmarsh, one fellow inmate said: 'Kenny Noye was the king inside here. ", "He knew many of the staff and inmates already from when he previously served time. ", "Some of them even knew him from his days as a petty villain in south-east London and Kent. ", "It was like home from home for him.'", "\n\nAnother source revealed that Noye's 'boys' inside Belmarsh prison boasted about how Noye was so confident he would be acquitted of the murder of Stephen Cameron that he'd authorised his sidekick in Spain to continue paying a builder to finish off the Atlanterra _casa_ to Noye's very specific orders.", "\n\nShortly after Noye's dramatic arrest in Spain, his wife Brenda sold their house in Sevenoaks to a Japanese businessman for £500,000 and moved to Cornwall. ", "Noye had stepped back from Brenda's life in order to give her a fresh start, and she purchased a secluded £250,000 clifftop house called Redsands, in the small fishing village of Looe. ", "With Noye finally back in Britain, many of the other Brink's-Mat gang members must have hoped that the police inquiries would slow down. ", "They might now be able to sit back for the first time in years and start to plan for their futures with the tens of millions of pounds of money laundered from the missing gold.", "\n\nMickey McAvoy and Brian Robinson had been following Kenneth Noye's exploits especially closely from their prison cells. ", "They'd become increasingly enraged by Noye's continual hogging of the newspaper headlines. ", "Not only did it cause them more 'aggro' with the police, but it also rankled them that Noye was now the best-known of all the so-called Brink's-Mat gang – and he hadn't even been directly involved in the robbery itself.", "\n\nAs one old south-east London face explained: 'Mickey and Brian considered Noye to be a walking disaster. ", "He just didn't seem able to keep out of trouble, and that, in turn, caused them a lot more aggravation. ", "They were sick of hearing of Noye and they felt he was the main reason why the police's Brink's-Mat inquiry was still ongoing, fifteen years after they were given hefty prison sentences.'", "\n\nBoth men continued to go out of their way to keep a clean sheet inside Leicester's Long Lartin prison because they were patiently biding their time in the expectation that many millions of pounds awaited them on their release. ", "Even when other inmates at the prison had attempted a mass breakout, the two Brink's-Mat 'kingpins' had kept a low profile. ", "Thirty prisoners had barricaded themselves on a landing after guards foiled their escape bid. ", "As a consequence of this and other security breaches, the prison was upgraded to a maximum-security prison. ", "But staff noted that McAvoy and Robinson had played absolutely no role in the trouble.", "\n\nAll the countless theories, rumours and innuendo about the circumstances behind the so-called road-rage killing of motorist Stephen Cameron were soon to be put to the test as Kenneth Noye walked into the number two court of the Old Bailey on Thursday, 30 March 2000 – nearly four years after that fatal incident on the M25. ", "Gone was the confident swagger that had characterized Noye's last appearance in the very same dock fourteen years earlier. ", "This time Noye was grey-haired and dressed in a grey cardigan. ", "He sat hunched like an old man in the dock surrounded by three prison officers, his eyes constantly panning the jury of eight women and four men.", "\n\nBefore the case could proceed, judge Lord Justice Latham ordered round-the-clock protection for each juror. ", "Noye pleaded not guilty to the murder charge and insisted the killing had been an act of self-defence. ", "But, as prosecuting counsel Julian Bevan QC informed the court, 'Noye was angry about the way that van was being driven. ", "Immediately after the stabbing, Kenneth Noye got back in his vehicle, a Land Rover Discovery, and sped off along the M25 leaving a dying Stephen by the road. ", "The Crown's case is that the stabbing to death was not merely unlawful. ", "It was murder.'", "\n\nMr Bevan referred to how the driver of a passing Rolls-Royce had seen Noye smile after he'd stabbed Stephen Cameron to death. ", "When that man later gave evidence many believed he was putting his life on the line by 'coming out' about what he claimed to have seen.", "\n\nThe court also heard how Noye had claimed throughout those earlier extradition proceedings in Spain that he was not the killer. ", "But, Mr Bevan told the court: 'He now admits he was the person who held the knife and stabbed Stephen Cameron.' ", "Noye barely even moved a muscle when the prosecutor pointed to photos of huge splashes of red on Stephen Cameron's van.", "\n\nOn Friday, 7 April 2000, Noye took centre stage in the trial. ", "Looking calm and collected but wiping his nose with a spotless white handkerchief, he strolled confidently to the witness box. ", "Noye's testimony was delivered in an atmosphere of hushed expectation. ", "He spoke in a dull, expressionless monotone. ", "Just a couple of feet away Stephen Cameron's parents never once took their eyes off the man who'd killed their beloved son.", "\n\nNoye claimed he mistook Stephen Cameron and his girlfriend for a couple he knew, and that was why he'd stopped his car. ", "He also insisted that when he'd apologised to Cameron for the mistake, the younger man had said: 'You will be, you cunt, I'll kill you.'", "\n\nNoye said that Cameron then kicked him in the waist and he tried to punch him back. ", "He said Cameron also pushed him. ", "Then Cameron punched him on the cheek, Noye told the court, and he fell to the ground, where the younger man began kicking him and saying he was going to kill him. ", "Shortly after that Noye got his knife out.", "\n\nNoye even carried out his own dramatic re-enactment of the incident in the witness box in front of Stephen Cameron's visibly distraught parents. ", "Noye demonstrated the underarm jabbing motion with which he had killed the unarmed man. ", "He claimed he had pulled his knife out from his trouser pocket and told Cameron: 'Don't come near me, nutcase.'", "\n\nNoye then told the jury: 'His girlfriend was shouting \"Get off\", I am saying, \"Hold up\" and he is saying, \"I will kill you.\" ", "I cannot fight – I'm a fit man but I was exhausted. ", "I thought I can't take much more, nobody is trying to stop the fight, not that they could stop him. ", "Then I thought if he catches me again he will take the knife out of my hand and definitely use it on me so I struck out with the knife. ", "I had my head down. ", "I just went like that [demonstrating with a round-arm jab]. ", "I can't remember exactly how I done it, we were close together and I just struck out. ", "I can only remember striking out once but I accept it was twice. ", "He definitely knew I had the knife.'", "\n\nNoye told the jury he kept a knife by his side every day because he feared being attacked by criminals in league with the police, or being kidnapped and forced to reveal the whereabouts of the missing Brink's-Mat gold. ", "Noye claimed he was frequently stopped by police following his release from prison in 1994. ", "It was at this point that he smiled for about the only time during the trial as he described how they regularly kept him under surveillance. '", "They used to follow me around quite a lot.'", "\n\nImmediately after claiming he'd killed Stephen Cameron in self-defence, Noye then shocked the court by revealing to the jury that he had stood trial for the murder of undercover policeman John Fordham. ", "He said he'd killed Fordham for similar reasons. ", "But Noye denied that by the time of the Cameron killing he knew full well that a thrust from the four-inch blade could easily kill another human being.", "\n\nHe was then asked: 'Are you saying that after that ghastly experience you didn't realize it could kill?'", "\n\nNoye replied: 'I appreciated it could kill but I didn't know where I had to thrust the blade.'", "\n\nNoye also admitted using the name of Anthony Francis and using a false address for registering ownership of the Land Rover Discovery. '", "I didn't want no one to know where I lived,' he told the jury. '", "I didn't want no one to know what cars I owned.'", "\n\nNoye's composure cracked only once, when prosecutor Mr Bevan probed him on his reasons for stabbing Stephen Cameron.", "\n\n'You believed he would take the knife off you?' ", "asked Mr Bevan.", "\n\n'Yes,' replied Noye.", "\n\n'And slit your throat?' ", "asked Mr Bevan.", "\n\nNoye was rattled by the melodramatic response and said: 'No, no.'", "\n\n'Let's just leave it there, shall we?' ", "said Mr Bevan.", "\n\nThen Noye snapped. '", "No. ", "We won't leave it, we will get that sorted out right now.'", "\n\nThe court was then dumbstruck when Noye broke down and was close to tears as he described the moment he learned from his wife that Stephen Cameron had died.", "\n\nNoye also insisted he had 'never hurt anybody, I have never even hurt an animal'.", "\n\nBut under cross-examination he admitted he had 'deliberately' stabbed Cameron and, explaining why he carried a knife, added: 'I would have preferred a stun gun or a CS gas canister but they would be illegal.'", "\n\nOne witness in court claimed that the victim was a violent man, but then confessed to having become close friends with Noye's son Kevin since the road-rage attack. ", "He even admitted that the Noye family had paid for his stay at a hotel during the trial.", "\n\nOn the afternoon of Tuesday, 11 April, Bevan gave his closing speech to the court, and accused Noye of invention and exaggeration in his version of what had happened during the killing of Stephen Cameron. ", "Judge Lord Justice Latham told the jury that they would retire to decide on one of four verdicts: guilty of murder; not guilty of murder but guilty of manslaughter; not guilty of murder but guilty of manslaughter by reasons of provocation; or not guilty. ", "The judge also reminded the jury that a person was entitled to defend himself and use such force as was reasonable in the circumstances. ", "The person had honestly to believe that he was under attack.", "\n\nThe key point was the moment when the knife was used. ", "The judge said: 'If you are satisfied he was not acting in the honest belief it was necessary, but it was in retaliation or to carry on a fight, the use of the knife was unlawful.'", "\n\nThe judge then pointed out that the jury might conclude that the use of the knife was instinctive and that Noye did not intend to cause serious injury but risked causing Stephen Cameron some harm. ", "If that were so, they could return a verdict of manslaughter.", "\n\nThe jury were finally sent out on the morning of 13 April. ", "Accompanied by armed police bodyguards, the eight women and four men were sent to a hotel overnight following almost a day of deliberation. ", "The next morning the judge advised the jury that he would accept a majority verdict, and asked them to come back into court at midday for an update on their progress.", "\n\nWhen the jury finally reappeared, they had reached a majority verdict of 11 to 1. ", "Guilty of murder. ", "Noye let out a deep gasp and held his head in his hands. ", "Lord Chief Justice Latham told Noye: 'The jury having found you guilty of murder, there is only one sentence I can impose and that is one of life imprisonment.'", "\n\nNoye looked unsteady on his feet as three burly prison officers led him down the twenty-one steps from the dock of number two court to the cells below. ", "A few minutes later a van, its siren blaring, took him back to Belmarsh prison.", "\n\nIn the hours following the verdict, it emerged that Noye's defence, estimated to have cost between £500,000 and £1m, had been funded by the taxpayer after he had been granted legal aid because on paper he was no longer worth a penny.", "\n\nMcAvoy and Robinson heard the news of Noye's sentencing with relief. '", "They wanted Noye out of the way,' said one old associate. '", "He had caused enough damage and now it was going to be their turn to enjoy life on the outside after nearly twenty years behind bars.'", "\n\nAs one of McAvoy's oldest associates explained: 'Mickey and Brian had served their time like true professionals. ", "They believed they had earned their freedom and a nice life with the proceeds of the robbery. ", "Noye was inside where he belonged, in their opinion, because he'd gone completely over the top during the previous years and caused a lot of problems for everyone else.'", "\n\n### **TWENTY-SEVEN**\n\nJust as Noye's trial was wrapping up in the late spring of 2000, Brink's-Mat associate Mickey Green's Irish lawyer was shadowed by UK customs agents to Barcelona where he was engaged in legitimate business. ", "The agents had been investigating Green's links to the Mafia and Colombian drug cartels and a massive worldwide network importing narcotics into Britain. ", "When Green turned up at the Ritz hotel in the city, he was immediately arrested by UK customs and Spanish police and transported to the nation's most secure jail in the capital Madrid.", "\n\nAt first, both Spanish and UK police hailed the arrest as the end of Green's career as a criminal. ", "One Costa del Sol detective even said at the time: 'Green's luck has finally run out. ", "He'll go back to Britain to face the music.' ", "An extradition hearing was set for Green, and it seemed just a formality that he would be heading home to London and a long stretch inside.", "\n\nBesides being wanted in the UK, Green also still faced a long prison sentence back in France for earlier drug offences. ", "It emerged that Green had invested many millions of pounds in legitimate businesses in Spain, but that much of it had been on behalf of several members of the Brink's-Mat gang. ", "Some of the proceeds of the robbery had also helped finance a number of multi-million-pound drug deals set up by Green on the Costa del Crime.", "\n\nBut Mickey Green wasn't known as The Pimpernel for nothing; a few months after his dramatic arrest in Barcelona, a Spanish court refused to extradite him. ", "The Spanish authorities insisted that UK customs did not have enough concrete evidence to mount a prosecution, so Mickey Green was once again a free man. ", "Rumours of bribes swept the Costa del Crime but a customs source later told this author: 'It's sickening to admit, but smuggling charges against Green were dropped after we decided that the evidence from a former associate of Green's called Michael Michael was not strong enough to bring a prosecution back in Britain.' ", "It was Michael's arrest by customs officers back in 1998 that had convinced them to go after Green because Michael had named Green as a Mister Big of the drug world.", "\n\nAt Michael Michael's eventual trial at the Old Bailey in 2001, prosecutor Nicholas Loraine-Smith named Mickey Green as a major drug baron. ", "He said of Green: 'He was and continues to be involved in importing large amounts of drugs into this country.' ", "It was said after Michael's trial that Green had recruited Michael to head the British end of his huge cocaine and cannabis smuggling racket and that they both made millions in the process.", "\n\nFollowing his arrest and the subsequent court case, Michael Michael had good reason to fear the wrath of Mickey Green. ", "It was alleged in court that Green had links to the murders of two other criminals with Brink's-Mat connections. ", "One was The A-Team's hit man Gilbert Wynter, who'd disappeared from his north London home back in 1998. ", "As we've seen, his body is thought to be in the foundations of the Millennium Dome. ", "The other murder victim with links to Green was a finance chief for the A-Team who was shot dead outside his home. ", "Informant Michael Michael told UK customs investigators that both men were killed after double-crossing Green and the A-Team in a half-a-million-pound cannabis deal.", "\n\nToday Mickey Green is rumoured to spend much of his time in Costa Rica, where he owns yet another luxury home. ", "He's also alleged to have links to property in Thailand. ", "As one of those involved in his Barcelona arrest says: 'Mickey's a survivor and you can be sure he's watching his back very carefully.' ", "It's also believed that while still on the run he double-crossed another couple of the Brink's-Mat gang, so he still knows he has to watch his back.", "\n\nBack in the outside world for the first time in almost twenty years, Mad Mickey McAvoy was already living up to his fearsome reputation. ", "He'd slipped out of prison virtually unannounced around the time of Noye's sentencing which, ironically, had diverted press attention from his release. ", "For the first few months following the end of his sentence he kept a predictably low profile, knowing full well that the police would be on his tail because they still wanted to find the rest of the Brink's-Mat gold.", "\n\nBehind the scenes, McAvoy put out messages to 'relevant parties' that he was expecting his share of the gold to be delivered to him at the right moment. ", "The responses he started to get back made it clear that it was not going to be handed to him on a plate. ", "That's when McAvoy decided it was time to flex his muscles. ", "If the gold wasn't going to be brought to him then he'd go looking for it himself, and God help anyone who got in his way.", "\n\nOn Thursday, 5 October 2000, 'Big Al' Decabral heaved his 20-stone frame into the passenger seat of his son's Peugeot with great difficulty. ", "He was more used to driving around in his vintage Jag, once owned by legendary gangster Reggie Kray. ", "As he checked the time on his gold Rolex, a man holding a gun equipped with a silencer pulled alongside him in the car park of a Halfords store in Ashford, Kent. ", "Before Decabral even had a chance to plead for his life, two shots rang out and his huge, blubbery body slumped against the dashboard. ", "Terrified shoppers fled in fear of their lives but they had nothing to worry about. ", "The shooter had carried out his job with cold professionalism and immediately left the scene.", "\n\nMonths earlier, Decabral had dared to give police an eyewitness account of Kenneth Noye's stabbing of motorist Stephen Cameron, and then even appeared at Noye's Old Bailey trial to give evidence. ", "As a result, it seems that Decabral had signed his own death warrant. ", "Yet another killing had left a bloody trail that led directly to the Brink's-Mat gang.", "\n\nOne of the most remarkable aspects of the Decabral killing was that so few people seemed surprised. ", "The Kent criminal fraternity were positively underwhelmed by this cold-blooded killing in their midst. ", "Decabral had been sailing close to the wind for years as a petty villain but when he stepped forward and fingered Noye he was opening up a can of murderous worms and many believed he even knew what was coming.", "\n\nBut then Kent and south-east London still remained virtually a law unto itself. ", "The power and influence of the Brink's-Mat gang and a number of other legendary faces made Kent the perfect gateway to the lucrative drug markets of Europe. ", "One retired bank robber even made a small fortune running an unofficial 'ferry service' from a tiny port near Dover across to Holland where drug barons would then get off for 'company meetings' in Amsterdam before slipping back into the UK unnoticed.", "\n\n'You could get in and out of Europe without the cozzers knowing anything about your movements,' explained retired cannabis smuggler Gordon Scott. '", "The fella who ran it had this tasty motor launch complete with bedrooms, a fully stocked bar and he'd even bring on the dancing girls if you booked well in advance.'", "\n\nThe area of Kent countryside stretching from Kenneth Noye's one-time home town of West Kingsdown past Biggin Hill – and its handy airstrip – and across to Swanley was known to detectives as 'the Bermuda Triangle'. ", "As one senior police officer explained: 'Things that went in there had a habit of never coming out again. ", "And we're talking about everything from people to lorryloads of bootlegged fags and booze, not to mention gold.' ", "The construction of the nearby M25 had meant easy access to the Bermuda Triangle at all times of the day and night.", "\n\nDetectives fully intended to interview Mad Mickey McAvoy about the Decabral killing because there was a suspicion that he might have had something interesting to say about it, but in the end there was no evidence to link him to the murder. ", "Perhaps someone deliberately killed Decabral knowing it would look as if it had been 'commissioned' by Noye? ", "It was no secret that McAvoy wanted to make sure that Noye never got released from jail. ", "As one south London underworld source explained: 'Think about it... it does make sense... It would explain why the execution was carried out in such a public manner. ", "Also, a lot of \"chaps\" had the incentive to frame Noye.'", "\n\nA few months after Decabral's murder, detectives searching for Brink's-Mat gold were tipped off about a 'burial site' on the south coast. ", "Officers used hi-tech imaging equipment to search a timber yard at the rear of a builders' merchants in Graystone Lane, off Old London Road, Hastings, in East Sussex. ", "After initially conducting virtually a fingertip search, a pneumatic drill was then used to dig deeper in the covered yard. ", "A Scotland Yard spokeswoman told reporters at the scene: 'This search is based on information we have received following a lengthy inquiry which has lasted many months. ", "I cannot say exactly what we are looking for. ", "A drill has been used to dig into the concrete floor of the yard.'", "\n\nBut nothing was ever found and there was a deep suspicion that the original tip was yet another red herring presented to Brink's-Mat detectives simply to divert them away from the right path. ", "There were many occasions when the police thought they had a breakthrough in their search for the Brink's-Mat gold. ", "One time, detectives went digging for it on a farm in Sussex following a tip-off from an informant. ", "The cat-and-mouse games were continuing, even though it was nearly twenty years since the original robbery.", "\n\nIn early 2001, Kenneth Noye lost his appeal against a life sentence for the Cameron killing. ", "Friends and associates said that he'd keep appealing on all fronts because he was determined to get released from prison eventually for what he saw as a miscarriage of justice. (", "A later appeal was granted in the autumn of 2010, but in March 2011 his sentence was upheld.)", "\n\nBut even as Noye's case returned to court, the killings continued.", "\n\nThe shooting in broad daylight of 63-year-old Brink's-Mat robber Brian Perry as he got out of his car in Bermondsey, south-east London, sent a shiver of fear through the underworld. ", "A masked hit man, dressed in dark clothes, shot Perry in the head, chest and back. ", "Perry was found lying in a pool of his own blood after local residents heard the gunshots just after 1 p.m. The masked assassin was seen escaping in a dark grey or blue Ford Escort fitted with false number plates. ", "It sped off towards the Old Kent Road shortly after the shooting. ", "Perry had been murdered in cold blood, right in the heart of his 'home territory'. ", "Whoever commissioned the hit was sending out a very clear message.", "\n\nMany detectives and gangsters believed that Perry's death was yet more evidence of the deadly ongoing feud between members of the Brink's-Mat gang. ", "It also sent out a terrifying warning to other villains. ", "One source very close to many of the gang told this author: 'Certain people wanted their share of the gold and when it wasn't there waiting for them they started getting very upset.'", "\n\nDetective Superintendent Jon Shatford, the new head of the Flying Squad, led the investigation into Perry's brutal killing. ", "The day after the murder, a Scotland Yard spokesman admitted: 'We believe this may be connected to the Brink's-Mat robbery. ", "And we are still looking for proceeds from that incident.' ", "Detectives investigating the hit on Perry sought out Mad Mickey McAvoy for questioning, although they insisted that did not imply he was responsible for the murder.", "\n\nPerry had earlier served a nine-year prison sentence for his role in laundering profits from the Brink's-Mat raid. ", "It was strongly rumoured that at the time of his death, Perry knew where at least £10m worth of the gold from the heist remained hidden. ", "One source also claimed that Perry was suspected of secretly aiding the police in their inquiries, and that may have been the last straw as far as his enemies were concerned. '", "A lot of people were saying that Perry was \"helping\" the cozzers,' said one Brink's-Mat associate. '", "He signed his own death warrant if that really was the case.'", "\n\nAnd so the cycle of death and destruction continued. ", "A few months after Perry's death, two of his oldest associates were murdered separately near the busy Kent ports of Chatham and Rochester. ", "Jon Bristow, thirty-nine, and Ray Chapman, forty-four, had both bought boats shortly before they were killed, and in the south-east London underworld it was said that the men had been 'bigging it up' with wads of cash that they said Perry had given them for 'services rendered'.", "\n\nMickey McAvoy insisted to anyone who would listen that he just wanted to lead a quiet life after finally getting out of prison. ", "Naturally other criminals tried to implicate him, but McAvoy insisted those rumours were untrue.", "\n\nOn 16 November 2001, Joseph Pitkin, thirty-one, of Verulam Avenue, and Bilal Akhtar, twenty-two, from Canning Road, in Walthamstow, east London, both pleaded not guilty to the murder of Brian Perry. ", "Prosecutor Richard Whittam said Perry's connection to the £26m robbery 'may or may not' have been a reason for the murder.", "\n\nProsecutors alleged Pitkin shot Perry while Akhtar drove the getaway car. ", "Neither man had any known motive to kill Perry. ", "A balaclava found at the scene had mixed DNA, which included both Mr Pitkin's and Mr Akhtar's. ", "But in the end the trial was abandoned and both men acquitted after the prosecution admitted that the only evidence available was circumstantial.", "\n\nLess lucky was John Palmer, who was in court again, this time on charges of committing what prosecutors described as 'the largest timeshare fraud on record'. ", "It was alleged that he had swindled 20,000 people out of £30m. The legal team representing Palmer at his trial had claimed he'd been 'persecuted' because of his alleged links to the Brink's-Mat robbery. ", "Following his conviction for conspiracy to defraud, his lawyers promised a 'vigorous and full' appeal after Palmer was ordered to pay £33m in cash and assets to the state. ", "Palmer had been sentenced to eight years in jail. ", "He was also ordered to hand over £2.7m in compensation to his victims.", "\n\nPalmer's legal representative Giovanni di Stefano said the 52-year-old intended to pay the compensation but would appeal all other charges. ", "Mr di Stefano admitted: 'We as lawyers can never predict outcome but we anticipate and sincerely hope that justice will not only be done but be seen to be done regardless of whether he is John Palmer, John Smith or anyone.' ", "Palmer had denied the fraud allegations against him throughout his trial.", "\n\nPalmer insisted he'd been specifically targeted by police because of his alleged involvement in the smelting down of the Brink's-Mat gold. ", "Mr Di Stefano added: 'Brink's-Mat will always be with him. ", "I'm sad to say that his acquittal has led to a persecution rather than a prosecution.'", "\n\nHowever police claimed that Palmer – who often wore body armour – was connected to the Russian mafia and had led a criminal gang involved in fraud, money laundering, drug trafficking, bribery, possessing firearms, and falsifying passports and credit cards.", "\n\nTo add to Palmer's difficulties, there were strong rumours across the London underworld that he'd fallen out with Kenneth Noye after Palmer had lent him his private jet following the murder of motorist Stephen Cameron on the M25. ", "Noye and Palmer were said by sources in the London underworld to be 'at daggers with each other' and as a result both men were kept in separate prisons 'for their own safety'. ", "Noye was under round-the-clock guard in top-security Whitemoor prison in Cambridgeshire, while Palmer remained at an undisclosed jail.", "\n\nHundreds of Palmer's timeshare victims sued him for more than £3m, and in 2005 he was declared bankrupt in the United Kingdom with debts of nearly £4m. Palmer was eventually freed after serving half his sentence. ", "Few had any doubt he would return to crime, not least because his victims and creditors were hounding him for money.", "\n\nIn 2007 he was again arrested on a number of charges including fraud. ", "After being held for two years in a high-security Spanish jail without charge he was released on bail, but was ordered to report to court authorities every two weeks.", "\n\nOne of the most extraordinary aspects of the entire Brink's-Mat saga is that it has never stayed out of the public eye for long, and that is still the case today, nearly twenty years after the first crime was committed. ", "As detective Tony Lundy told this author: 'Brink's-Mat had this extraordinary ripple effect on so many other investigations and crimes and it seemed to gain momentum rather than slow down as the years passed.'", "\n\nBut this notoriety meant that some less important faces with links to the Brink's-Mat robbery found themselves in trouble, even if their profile wasn't as high as that of the core Brink's-Mat 'team'. ", "Take Clifford Norris. ", "A slim, almost fragile man of no more than 5ft 7in, Norris had at one time been involved with a multimillion-pound drug empire, which had been at least partly financed by Brink's-Mat money. ", "At the age of thirty, Norris was a key figure in south-east London's drug trade. ", "He owned an expensive mock-Tudor mansion and drove flashy cars.", "\n\nNorris later admitted he made mistakes, and the drug empire he was involved in was 'out of control'. ", "When, many years after the robbery, he crossed a couple of the Brink's-Mat gang over a drug deal, Norris went on the run. ", "In August 1994 police followed his wife to a holiday cottage in East Sussex where Norris was hiding. ", "Officers also stumbled upon – next to a set of golf clubs – a silenced Ingram sub-machine gun. ", "After five years in hiding from both criminals and police, he'd finally been tracked down. ", "Norris was sentenced to nine and a half years for drug and firearms offences. ", "On his release in 2001, rumours gradually surfaced that Clifford Norris had tried to reunite with his former Brink's-Mat 'pals'. ", "But Norris was warned in no uncertain terms to keep away. ", "He eventually ended up living in the single room of a mud-coloured hostel above a DIY shop on a jobseeker's allowance of £56.20 a week. ", "The only way he could guarantee he would stay alive was to walk away from all the stolen riches and return to the real world, which proved a much harsher place.", "\n\nThe police continued to keep a close eye on all the Brink's-Mat gang, especially those who'd been released from prison over the previous couple of years. ", "In 2003, gold handler Michael Lawson – one of Kenneth Noye's best friends – was convicted of running a multimillion-pound drug-smuggling operation, but acquitted after an appeal and retrial. ", "However the authorities accused him of laundering the proceeds of drug smuggling through the buying and selling of houses and land. ", "They had a sneaking suspicion that Lawson was still using proceeds from the original Brink's-Mat robbery for some of his criminal enterprises but no charges were ever brought against him.", "\n\n### **TWENTY-EIGHT**\n\nOn 14 May 2003, Brink's-Mat gang member George Francis, now sixty-three, was gunned down at point-blank range as he sat in his car outside the courier business he ran in south-east London. ", "He should have known better after being injured by another shooter seventeen years earlier, but 'Georgie Boy' reckoned he was untouchable. ", "Murder squad detectives immediately sought out Mickey McAvoy to ask him about Francis' execution.", "\n\nBut there was no evidence linking McAvoy to any of the Brink's-Mat murders since his release from prison. ", "Despite having no obvious job, McAvoy seemed to have a comfortable lifestyle. ", "He often flew to the Costa del Crime, where he had access to a luxury mansion.", "\n\nBrink's-Mat insurance investigator Bob McCann – who'd spent years tracking the missing gold – later said he believed both Francis and Perry were probably 'quite literally fishing for gold and they got too close'.", "\n\nOne retired Brink's-Mat detective explained soon after the Francis shooting: 'Georgie Boy was another man in the know and he paid for that with his life. ", "One by one those involved are being picked off like targets in a funfair shooting gallery. ", "It's bloody terrifying that this sort of thing still goes on in a so-called civilized society.'", "\n\nAnother source said that Francis was also suspected of secretly helping the police with their ongoing inquiries into Brink's-Mat, and that would almost definitely have had an influence on the decision to take him out. ", "Two ageing hitmen were eventually jailed for life for the murder of Georgie Boy but no one ever found out who commissioned the shooters.", "\n\nThe police continued to face mounting criticism about their sometimes clumsy attempts to find the remaining gold. ", "Brink's-Mat insurance investigator Bob McCann explained: 'It's an open secret Mad Mickey McAvoy went straight under police surveillance in the hope he would lead them to the gold, but so far he's just led them on a merry little dance. ", "These characters are not stupid. ", "They knew they are being watched.'", "\n\nIn the early autumn of 2003, Mad Mickey McAvoy was snapped by a press photographer from the _Sunday Mirror_. ", "The newspaper headlined the article 'BRINK'S-FAT'. ", "McAvoy, now 52, bald and a lot heavier than when he went inside, insisted to a reporter he hadn't received a penny of the profits from Britain's biggest gold bullion robbery, and even made out to the newspaper that he was a reformed character, living the quiet life. ", "Home was actually a half-a-million-pound mansion in Locksbottom in Kent. ", "McAvoy was caught on camera as he swept leaves and cleaned the driveway at his home. ", "McAvoy's appearance in the tabloid also happened to coincide with the twentieth anniversary of the robbery, and a two-part Channel 4 documentary called _Brink's-Mat – The Greatest Heist_.", "\n\nMcAvoy refused to speak on the programme, but gave the TV company a home video of his 1986 prison wedding to second wife Kathy. ", "One of his oldest associates later explained: 'Mickey knew that footage would do him nothing but good because it shows him as a loving husband rather than a villain.' ", "The makers of the documentary series were even accused by police of 'playing along with McAvoy' by not running up-to-date photos or current footage of him on the programme in exchange for him providing the fifteen-year-old video footage of the jail-house marriage. ", "This desire to avoid recent photos of him being shown wasn't just vanity on the part of Mickey – who had lost all of his hair at the same time as gaining a great deal of weight. ", "He wanted to be able to remain incognito. '", "There are photos floating around of him since he got out of jail, and surely they could have filmed him secretly? ", "McAvoy's been made to look like a man who's been unfairly treated by the police and other criminals who took his share of the Brink's-Mat gold. ", "It's a disgraceful whitewash,' added one detective. ", "The programme also for the first time publicly named Brian Perry as one of the actual robbers who took part in the Brink's-Mat raid.", "\n\nA former detective who interrogated McAvoy in prison told the documentary makers: 'He was known as The General because of his ability to plan and execute a raid. ", "He said if he came out of prison and there was nothing left for him there would be a gang war and people would get hurt. ", "He is very intelligent and is keeping his head down now because he knows the police are still looking at him. ", "Many people believe he is the one who can lead them to the millions of pounds of still unaccounted-for gold bullion. ", "If that is the case, he is taking his time.'", "\n\nMcAvoy claimed to everyone he encountered at this time that he was perfectly happy keeping a low profile and refused to be drawn on the subject of the gold he might be expecting to get after leaving prison. ", "The Channel 4 documentary claimed hit-man victim Brian Perry had betrayed McAvoy by refusing to help him trade in his share of the fortune for a reduced jail sentence.", "\n\nPerry was portrayed on the programme by an actor repeating the words he had said in a statement to police: 'Once the cell door is closed, what's he [McAvoy] got to trade?' ", "Former Metropolitan Police commander Roy Ramm, who led the investigation, told the programme: 'The message was that Mickey was out of touch. ", "He's saying to us – whatever Mickey thinks, he's out of it.'", "\n\nSources close to McAvoy and the programme makers, Blast! ", "Productions, later revealed that McAvoy had 'strung along' the programme's makers for months by promising them an on-screen interview. '", "It's obvious he only wanted to know what we'd found out about him from the police and other criminals,' one TV executive later explained.", "\n\nOne of McAvoy's closest associates later explained: 'Mickey's a very clever operator and he never intended to go on the programme in the first place, he just wanted to know what Channel 4 were up to.' ", "But McAvoy himself then 'went fucking ballistic' about the programme because it clearly stated that McAvoy sent a letter threatening to kill Brink's-Mat villain Brian Perry, later murdered by a hit man. ", "McAvoy continued to deny any link and to keep a long distance from any accusations. ", "The programme also featured a scene showing an actress playing McAvoy's wife at Perry's minicab office in south London. ", "One of McAvoy's associates later revealed: 'Mickey was well upset about that scene with his wife, and he was pissed off with the producers for not agreeing to drop the scene.'", "\n\nAlthough there was no direct evidence of McAvoy's involvement in any of the deaths linked to Brink's-Mat, police were planning to visit him once again at his luxurious homes in Spain and Kent to find out if he could provide any fresh leads on the identities of the killers.", "\n\nInside top-security Whitemoor prison in Cambridgeshire, Kenneth Noye referred all police inquiries regarding the recent spate of murders to his solicitor. ", "One source close to Noye explained at the time: 'Kenny's not worried. ", "He's inside prison so he couldn't have pulled the trigger. ", "I think he's a bit fed up with always being blamed for other people's deaths. ", "He's more interested in continuing his appeal against his murder conviction.'", "\n\nWhile in jail, Kenneth Noye was facing up to his life sentence with that same wheeler-dealer attitude he seemed to use to cope with life on the outside. ", "In April 2005 he flexed his muscles in typically Noye style by heading up a delegation of prisoners who claimed that the flickering shadows of wind turbines overlooking the prison were disturbing sleep for many inmates. ", "The machines were switched off at night as a result.", "\n\nThree months later, Whitemoor prison was locked down for two days following an explosion in one of the wings. ", "A full search was carried after the firework-like blast, although it caused no damage to the prison. ", "In the middle of all this, Kenneth Noye remained his normal calm self. ", "He'd spent two thirds of the last twenty years of his life in prison and he knew how to play the system better than anyone else.", "\n\nThere seems little doubt that Brink's-Mat gold helped turn Noye's favourite Mediterranean island haven in northern Cyprus into a smaller but much more dangerous version of the Costa del Crime. ", "Brink's-Mat money had helped set up timeshare resorts, build hotels and enabled a number of gangsters with links to the robbery to buy large detached mansions on the island. ", "On a five-mile stretch of the coast between the port of Kyrenia and the town of Lapta, southeast London faces lived a champagne lifestyle behind the gates of their luxury homes – similar to that once enjoyed by British crooks in southern Spain. ", "Less than a mile from the centre of the northern Cyprus town of Lapta was the secluded £2m villa of Dogan Arif, unofficial leader of the Arif gangland family who terrorized south London with their robbing and drug-trafficking operations in the eighties. ", "They also played a role in handling much of the Brink's-Mat gold. ", "Arif had been jailed for seven years in 1990 for conspiring to supply £8m worth of cannabis.", "\n\nOne of the most notorious regular visitors to northern Cyprus was Brian Wright, the so-called 'Milkman' who'd been hovering on the edge of the Brink's-Mat laundering operation for a number of years. ", "Wright had even used some Brink's-Mat cash to partly finance a gang that flooded Britain with £500m worth of cocaine back in 1999 and 2000. ", "By all accounts, Wright enjoyed a lavish lifestyle in northern Cyprus until the long arm of the law eventually caught up with him. ", "On 15 March 2005 Wright was recognized and arrested by Spanish police. ", "He was extradited to Britain, where he denied the allegations against him. ", "After a two-month trial Wright was convicted of conspiracy to evade prohibition on importing a controlled drug and conspiracy to supply drugs, and on 3 April 2007 Brian Brendan Wright, by now sixty, was sentenced to thirty years in prison.", "\n\nThree years later, another drug baron, Raymond Spencer, fifty, was deported from northern Cyprus to mainland Turkey, from where he was extradited to the UK and jailed for thirteen years at York Crown Court on a smuggling charge. ", "It was a rare occasion when a British villain actually fell foul of the Turkish and northern Cypriot authorities, and most presumed that Spencer was sent home because he wasn't prepared to 'grease the right palms' and didn't come from the badlands of south-east London, whose gangsters remained largely untouched.", "\n\nA potentially significant discovery was made in 2005. ", "Inside a London deposit box, Scotland Yard detectives found six suitcases crammed with gold and suspected that it might be connected to the Brink's-Mat robbery. ", "The gold 'grains' were carefully wrapped in plastic and wedged inside travel luggage. ", "They'd been found after police raided the deposit box as part of their ongoing Brink's-Mat investigation. ", "The raid – part of the Met's Operation Rize – was on one of thousands of deposit boxes in London opened over a five-day period. ", "These boxes had been targeted based on intelligence indicating that they contained the proceeds of the illegal activities of crime syndicates, who had used safe deposits to hide their assets for years.", "\n\nCommander Allan Gibson of Scotland Yard's specialist crime directorate told reporters that his officers had never seen anything like it. ", "The haul was said to be the single largest discovery of untraceable gold ever found in Britain. ", "Provisional estimates suggested that the suitcases' contents could be worth £8m. Alongside the gold, Scotland Yard officers also found £30m in cash, much of it stuffed into plastic supermarket bags, which police believed was also the proceeds of organized crime, although they had no concrete evidence that it was all linked to the Brink's-Mat robbery.", "\n\n'We have identified six suitcases of gold grains which, if real, could be very, very valuable. ", "It's a phenomenal amount. ", "They were wrapped like a large packet of peas and were so heavy officers couldn't pick them up,' Gibson later explained. ", "Police stressed that the focus of their inquiries was on the people who had rented the safety deposit boxes. ", "They belonged to a firm called Safe Deposit Centres Ltd, two of whose directors had been arrested on suspicion of money-laundering offences and bailed to return to a central London police station in September of that year.", "\n\nThe firm had only been established in 1986 – three years after the Brink's-Mat robbery – raising the possibility that the gold had been kept in temporary storage before being hidden inside the company's vault. ", "The discovery also brought back to the public eye the fact that it was still very unclear how much – if any – of the Brink's-Mat bullion had ever actually been recovered.", "\n\nThe discovery of the gold did nothing to stem the bloody flow of murders linked to Brink's-Mat. ", "When a bodybuilder confessed to being the resident 'dismemberer' for the Adams family in 2008 it became clear that some of the bodies he had disposed of were murdered because of their links to Brink's-Mat.", "\n\nStephen Marshall, thirty-eight, had originally been arrested after stabbing a former work colleague to death and cutting his body into pieces. ", "When the body was first discovered it led to the case being known as the 'Jigsaw Murder'. ", "Marshall stunned detectives after his arrest by alleging that he'd hacked up four other bodies while working for Terry Adams. ", "Marshall's claims were of great interest to the Brink's-Mat investigators because there was no doubt that some of the bodies he had handled were connected to the Brink's-Mat heist and its murderous aftermath.", "\n\n'A-Team' chief Terry Adams had been investigated by police in connection with twenty-five murders as well as having built up an estimated fortune of £200m through his vast racketeering and drug trafficking empire, not to mention the money he made by laundering Brink's-Mat gold. ", "Potential witnesses had been too terrified to testify against Terry Adams but he was eventually jailed in 2007 for seven years for the relatively minor charge of money laundering.", "\n\nMeanwhile his 'butcher' Stephen Marshall, a former gym owner, continued to 'sing like a canary' as they say in the underworld. ", "The jury at Marshall's eventual trial in 2010 also heard from a woman who backed up Marshall's claims that he had been asked to dispose of the remains of murder victims for the Adams family. '", "He would cut up bodies. ", "He said he would put them into black bags and bury them, sometimes in Epping Forest,' added the witness, who was not identified for her own safety. ", "She also mentioned he kept different knives for the jobs, as well as a cleaver, chainsaw and hacksaw.", "\n\nMarshall had worked as a doorman at clubs, which is where he'd first encountered the A-Team. ", "On four occasions – between 1995 and 1998 – he'd been asked to help dismember the bodies of criminals who'd crossed the crime family. ", "His barrister, Peter Doyle QC, said Marshall, of Borehamwood, Hertfordshire, had thought it 'sensible' not to ask questions. ", "Marshall was eventually sentenced to life for the original murder and ordered to serve a minimum of thirty-six years after pleading guilty at St Albans Crown Court.", "\n\nAt last it seemed that people were not so scared of talking about the once feared A-Team. ", "One of the brothers' associates lifted the lid on the family in an article in a tabloid newspaper. ", "He said: 'We were in a club. ", "One of the brothers nodded in a geezer's direction. \"", "That one. ", "He's got to go.\" ", "Later that night the bloke was taken on a detour on his way home... and stabbed to death.'", "\n\nMany thought that the Adamses' former henchman must have had a deathwish but there was some twisted logic to what he was doing. ", "As one A-Team associate later explained: 'It wasn't a stupid move because the family would be less likely to come after someone who was in the public eye.'", "\n\nAs one senior detective who worked on and off on the Brink's-Mat investigation for more than twenty years commented: 'Nothing really surprises us any more when it comes to Brink's-Mat. ", "These villains were out of control, many of them off their heads on drugs bought with their new-found riches. ", "The trouble was that when that money either ran out, or in the case of some of them, never materialized, there was only one way to respond and that was to kill people to show others that even twenty-five years after the robbery was committed, if they dared to cross the gang they would still pay for it with their life.'", "\n\nAnd so it is that the Curse of Brink's-Mat still continues to cast a shadow over the lives of so many people. ", "By the end of 2011 stories relating to the case and its aftermath are still popping up in the media with alarming regularity, even though the crime itself was committed during the Thatcher era. ", "It has persisted through four more prime ministers and still it rolls on, leaving death and destruction in its path, leaving good and bad men haunted by the horror of its power and influence over so many people's lives.", "\n\n## **EPILOGUE**\n\nThe Brink's-Mat villains' epic conversion of gold into hard cash brought more money into this country than any other gang of criminals in history. ", "And when they spent it, they often helped keep legitimate businesses afloat in the poorer areas of south-east London, as well Spain's Costa del Sol.", "\n\nEven the police themselves admitted that they hadn't really made life _that_ difficult for them. ", "Detectives only ever laid their hands on about thirty per cent of the stolen gold at most. ", "The rest of it has gone up more than one hundred fold in value since the heist in 1983.", "\n\nBut Brink's-Mat also marked the end of an era in British crime. ", "Robbery was overtaken by far more lucrative, straightforward enterprises such as drugs, arms dealing and racketeering, even people smuggling. ", "And in the last twenty years there has also been a massive influx of foreign criminals into the UK. ", "These characters don't share the same values as the McAvoys and Robinsons of this world.", "\n\nMany of south-east London's oldest faces have slipped quietly out of the criminal limelight in recent years with no obvious British successors waiting in the wings. ", "Large sections of south-east London have been gentrified, and in many cases the children of those old-school robbers have ended up in straight jobs, often encouraged by their fathers – most of whom will happily admit that crime really doesn't pay. ", "As legendary Krays associate Freddie Foreman says: 'We want our kids to have honest jobs and happy lives, not going in and out of prison and living in fear of a knock on the door. ", "That's not the life I ever wanted for my kids, and I've gone out of my way to make sure they avoided all my pitfalls.'", "\n\nToday, the UK remains in the grip of organized crime, mainly fuelled by drugs, which first got a stranglehold, in part, thanks to that massive influx of Brink's-Mat cash. ", "Drugs undoubtedly have sparked the majority of the shootings on our streets today. ", "Young gangsters seem to have adopted a 'shoot now, ask questions later' attitude, which has made Britain's cities a lot more deadly than they were when the Brink's-Mat robbery was committed.", "\n\nThe statistics speak for themselves. ", "At least a hundred London murders were linked to organized crime in 2009. ", "That's not including the gangsters chopped into little pieces by their enemies, who disappear without trace. ", "Hundreds more are seriously hurt in shootings across the capital.", "\n\nMany villains from the Brink's-Mat era believe things have got completely out of control in recent years. ", "One gang member said: 'It's not like it used to be. ", "A lot of these new foreign gangs are run by ruthless characters who wouldn't hesitate to kill their own mothers if they got in their way.' ", "They feel that the younger gangsters are threatening the peace and stability that used to be provided by those faces back in the sixties\n\nOne former detective, who spent five years working on the Brink's-Mat inquiry, is convinced that there is still a large amount of gold from the robbery that remains hidden, and at least two of today's younger London gangs have started 'breaking a few arms' in a bid to locate it. '", "It's well known that some of the gold is still out there and I understand a couple of really nasty gangs of younger villains have decided to do everything in their power to find it.'", "\n\nBrink's-Mat continues to impress the underworld – even amongst the new wave of deadly, cold-blooded gangsters – some of whom were not even alive when the heist was carried out. ", "But what of the future? ", "What will happen to all the old faces And who's trying to muscle into the nation's underworld?", "\n\nBritain has become a key staging post for numerous foreign criminals ranging from African smugglers of people and drugs to ruthless eastern Europeans who rule the sex trade with a rod of iron. ", "None of them play by the same 'rules' as the old-time Brit gangsters epitomized by the 'professionals' who broke into the Brink's-Mat warehouse almost thirty years ago.", "\n\nForeign law-enforcement agencies have warned Britain that the influx of gangsters into this country means that organized crime is likely to escalate further in the new decade. ", "Britain has adopted gang-busting legislation similar to that used in the United States and the Irish Republic to seize assets.", "\n\nYet some things never change. ", "Millionaire criminals continue to try and corrupt and compromise detectives, according to those who should know, and it is claimed that police corruption has become even more of a problem now than during the Brink's-Mat era. ", "There remains a hard core of 250 'premier league' criminals at the top of the British underworld, many of whom are constantly tracked by the NCIS. ", "This includes at least three members of the Brink's-Mat gang, still active after all these years.", "\n\nThe cold, harsh reality is that criminals will continue to thrive whatever governments try to do to eliminate them. ", "Today, cybercrime has become the ultimate soft target for the underworld. ", "As one old face explained: 'Going across the pavement was a risky enterprise in the old days. ", "Now you can scam someone out of a fortune on the internet, without even leaving your front room. ", "It's a different world out there.'", "\n\nBoth police and villains believe that there is unlikely ever to be another robbery on the scale of Brink's-Mat. ", "Security systems are far more sophisticated today, and few criminals would see the sense in such a high-risk operation. ", "So we're left with the aftermath of a legendary robbery that continues to reverberate to this day. ", "It would not be in the least bit surprising if more victims fall to the Curse of Brink's-Mat before this book is actually published.", "\n\nAs one detective so rightly commented: 'It's going to go on long after every single bar of gold has either been recovered or turned into cash because there are a lot of people out there who believe the Brink's-Mat robbery owes them a living.'", "\n\n## **REAL-LIFE CAST OF CHARACTERS**\n\n### **THE DEAD:**\n\nJON BRISTOW – made the mistake of knowing one of the robbers and it cost him his life.", "\n\nSTEPHEN CAMERON – encountered Kenneth Noye on a motorway and it cost him his life.", "\n\nRAY CHAPMAN – also knew the same blagger and ended up in the same boat as his friend Bristow.", "\n\nALAN DECABRAL – dared to give evidence against one Brink's-Mat villain and ended peppered with bullets in shopping mall car park.", "\n\nJOHN FORDHAM – stabbed to death in the grounds of Kenneth Noye's mansion in Kent during a Flying Squad operation in 1985.", "\n\nGEORGE FRANCIS – paid the ultimate price after one nearmiss.", "\n\nKEITH HEDLEY – ended up being shot dead by three men as he holidayed on his yacht in Corfu in September 1996.", "\n\nALAN 'TAFFY' HOLMES – shot himself in the garden of his home after being questioned by fellow police officers about links to Brink's-Mat.", "\n\nJOHN MARSHALL – shot dead in his black Range Rover in Sydenham, south London.", "\n\nDANIEL MORGAN – ex-cop who ended up with an axe through his head.", "\n\nSOLLY NAHOME – worked for the Adams family and was gunned down outside his north London home on 27 November 1998.", "\n\nMICHAEL OLYMBIOUS – crossed the most deadly outfit in town, so it was only a matter of time before they caught up with him.", "\n\nBRIAN PERRY – shot dead by two gunmen as he got out of his car outside his office in south London in 2001.", "\n\nDANNY ROFF – mowed down by hired assassins outside his home in Bromley, Kent.", "\n\nPAT TATE – shot dead with two other men in the infamous 'Range Rover Killings' in Essex.", "\n\nDONALD URQUART – 'iced' by a hit man on the streets of west London.", "\n\nNICK WHITING – his mutilated body was found on Rainham Marshes, Essex. ", "He'd been stabbed nine times and then shot twice with a 9 mm pistol.", "\n\nJOEY WILKINS – died under mysterious circumstances on the Costa del Crime after an apparent robbery.", "\n\nCHARLIE WILSON – even the most legendary villains were not immune to the curse of Brink's-Mat.", "\n\nSIDNEY WINK – put a pistol to his head and pulled the trigger, or so they say.", "\n\nGILBERT WYNTER – now believed to be part of the supporting foundations of the O2 Dome.", "\n\n### **THE LIVING:**\n\nTERRY ADAMS is currently in prison after being found guilty of money laundering. ", "Police believe his criminal empire has finally crumbled.", "\n\nTOMMY ADAMS lives on the Costa del Sol after serving time and has (according to other faces) gone into retirement.", "\n\nTONY BLACK is believed to have a new identity and lives under the constant shadow of death somewhere in the Home Counties.", "\n\nSTEPHEN DALLIGAN was shot six times in the Old Kent Road but survived.", "\n\nMICKEY LAWSON still lives in the Kent area where he runs a second-hand car business.", "\n\nJOHN LLOYD was released from prison after serving a long sentence for the hole-in-the-wall scam and now lives back in Kent.", "\n\nMICKEY McAVOY was released from prison in 2000 and divides his time between homes in Kent and Spain.", "\n\nKENNETH NOYE remains in jail for the murder of motorist Stephen Cameron. ", "His most recent appeal was rejected in March 2011.", "\n\nJOHN PALMER denies all connections with Brink's-Mat and is thought to still have a fortune of approximately £20m.\n\nBRIAN READER has retired to the Kent countryside.", "\n\nMICHAEL RELTON was released from prison many years ago and is thought to be living in quiet retirement in southern France.", "\n\nBRIAN ROBINSON has kept a noticeably low profile since his release from prison and rarely sees any of his old underworld pals.", "\n\nTONY WHITE is believed to have been recently released from prison and is living back at his villa in Spain.", "\n\nAll the main investigators into the Brink's-Mat robbery have now retired, so rather than risk incurring the curse that has afflicted so many cops and robbers I have chosen not to include them in the list of the 'Living'...\n\n### AVAILABLE FROM JUNE 2013\n\nFor millions of people across the world, lighting up a joint is no more controversial than having a cup of tea. ", "But in _Hash_ Wensley Clarkson explores the dark and sinister side of this multi-billion pound business: one fuelled by a brutal underworld network of dealers, drug barons, bent cops and even terrorists. ", "Sex, intimidation, bribery and murder are all employed in a quest for vast profits.", "\n\nTravelling from the lawless Rif mountains in Morocco to darkened warehouses in Spain, protected by heavily armed gangsters, this is a revelatory roller-coaster ride through the secret world of Hash.", "\n\n**Available from:** \nwww.quercusbooks.co.uk\n" ]
{ "pile_set_name": "Books3" }
[ 0.006012024048096192, 0, 0, 0.01238390092879257, 0, 0.02040816326530612, 0, 0, 0.010101010101010102, 0, 0, 0.01818181818181818, 0, 0.020833333333333332, 0, 0.03333333333333333, 0, 0, 0, 0, 0.0038535645472061657, 0, 0.009345794392523364, 0, 0, 0, 0, 0, 0.010638297872340425, 0.007575757575757576, 0, 0, 0, 0, 0.008547008547008548, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008064516129032258, 0, 0, 0, 0, 0.014705882352941176, 0.00909090909090909, 0.010869565217391304, 0, 0, 0, 0, 0, 0, 0, 0.008695652173913044, 0, 0.016129032258064516, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.01020408163265306, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0125, 0.0136986301369863, 0.005917159763313609, 0, 0, 0, 0, 0, 0, 0, 0, 0.021052631578947368, 0, 0, 0, 0, 0, 0.005376344086021506, 0, 0, 0, 0, 0.004484304932735426, 0, 0, 0.02962962962962963, 0.0058823529411764705, 0.006289308176100629, 0.019736842105263157, 0, 0, 0, 0, 0, 0.013157894736842105, 0, 0.007462686567164179, 0.010638297872340425, 0.012658227848101266, 0, 0.007462686567164179, 0.005714285714285714, 0.011695906432748537, 0, 0, 0, 0.0125, 0, 0, 0, 0.007352941176470588, 0.01195219123505976, 0, 0.0031746031746031746, 0.006944444444444444, 0, 0.011538461538461539, 0, 0, 0, 0, 0.0036900369003690036, 0, 0.006993006993006993, 0, 0.015267175572519083, 0, 0.014492753623188406, 0, 0, 0, 0.00904977375565611, 0, 0, 0, 0, 0, 0.01098901098901099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005780346820809248, 0, 0, 0, 0, 0, 0, 0, 0.0070921985815602835, 0, 0, 0, 0, 0, 0, 0, 0, 0.008403361344537815, 0, 0, 0, 0.008438818565400843, 0.00641025641025641, 0.005847953216374269, 0.008771929824561403, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006535947712418301, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007462686567164179, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004878048780487805, 0, 0, 0, 0, 0, 0, 0.025477707006369428, 0.00909090909090909, 0, 0, 0.01744186046511628, 0.011235955056179775, 0.005025125628140704, 0.006134969325153374, 0, 0.006896551724137931, 0.009174311926605505, 0.008771929824561403, 0, 0, 0, 0.005376344086021506, 0, 0, 0.004761904761904762, 0, 0.005154639175257732, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.015748031496062992, 0, 0, 0.011111111111111112, 0.004464285714285714, 0.006666666666666667, 0, 0.007142857142857143, 0.009433962264150943, 0, 0, 0.006172839506172839, 0, 0.006666666666666667, 0, 0.007142857142857143, 0, 0, 0, 0, 0, 0, 0.023809523809523808, 0.013157894736842105, 0.01098901098901099, 0, 0.005555555555555556, 0.006666666666666667, 0, 0.006289308176100629, 0, 0, 0, 0.008771929824561403, 0, 0.03125, 0.010309278350515464, 0.0125, 0, 0, 0, 0.006756756756756757, 0, 0, 0, 0, 0, 0, 0, 0.008547008547008548, 0.0078125, 0, 0.0038314176245210726, 0.0136986301369863, 0, 0.00510204081632653, 0.005076142131979695, 0.008130081300813009, 0, 0.008849557522123894, 0, 0, 0.005263157894736842, 0, 0, 0, 0, 0, 0, 0, 0.006493506493506494, 0, 0, 0, 0, 0, 0, 0, 0.009708737864077669, 0.00641025641025641, 0.01048951048951049, 0.01, 0, 0.006309148264984227, 0.004629629629629629, 0, 0, 0, 0, 0.009345794392523364, 0.011111111111111112, 0, 0.007194244604316547, 0.017543859649122806, 0, 0, 0, 0, 0.012658227848101266, 0.006211180124223602, 0.009708737864077669, 0.005128205128205128, 0.004975124378109453, 0, 0.006172839506172839, 0.01282051282051282, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.006369426751592357, 0, 0.005128205128205128, 0, 0, 0, 0.011111111111111112, 0, 0.0045662100456621, 0.006024096385542169, 0.01282051282051282, 0, 0.0031746031746031746, 0.011363636363636364, 0, 0.005988023952095809, 0.008771929824561403, 0, 0.008368200836820083, 0.020833333333333332, 0.00980392156862745, 0, 0, 0, 0, 0, 0, 0.013888888888888888, 0.010101010101010102, 0.008733624454148471, 0, 0, 0, 0, 0, 0, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0, 0, 0, 0.0055248618784530384, 0, 0, 0, 0, 0, 0, 0, 0, 0.010526315789473684, 0, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004310344827586207, 0.01276595744680851, 0, 0.013605442176870748, 0, 0, 0.011904761904761904, 0.007380073800738007, 0, 0, 0, 0.0106951871657754, 0.0028011204481792717, 0, 0.00749063670411985, 0.005649717514124294, 0.015384615384615385, 0.01090909090909091, 0.017543859649122806, 0, 0.006802721088435374, 0.005681818181818182, 0.017045454545454544, 0, 0, 0, 0.009433962264150943, 0, 0.014925373134328358, 0.0037593984962406013, 0, 0, 0, 0, 0, 0.0070921985815602835, 0.006211180124223602, 0, 0, 0, 0, 0, 0, 0.02531645569620253, 0, 0.014705882352941176, 0, 0, 0, 0, 0.00558659217877095, 0, 0, 0.023255813953488372, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0.021739130434782608, 0, 0.011111111111111112, 0, 0, 0, 0, 0.008298755186721992, 0, 0, 0, 0, 0.012244897959183673, 0, 0.03225806451612903, 0, 0, 0, 0, 0, 0.007633587786259542, 0, 0.006756756756756757, 0, 0.012195121951219513, 0, 0, 0.01935483870967742, 0.013157894736842105, 0, 0, 0, 0.012345679012345678, 0, 0, 0.015267175572519083, 0.010869565217391304, 0, 0.007407407407407408, 0.013333333333333334, 0, 0, 0.010309278350515464, 0, 0, 0.005813953488372093, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008333333333333333, 0, 0, 0.01195219123505976, 0, 0, 0, 0, 0.0045045045045045045, 0.009009009009009009, 0.005, 0, 0, 0.00641025641025641, 0, 0, 0, 0, 0.007692307692307693, 0, 0.010638297872340425, 0, 0, 0, 0, 0, 0.004761904761904762, 0.01904761904761905, 0, 0.006622516556291391, 0, 0, 0, 0, 0, 0.012048192771084338, 0.016304347826086956, 0, 0, 0, 0, 0.007462686567164179, 0.004672897196261682, 0, 0, 0, 0, 0.006802721088435374, 0, 0, 0, 0.00273224043715847, 0.018518518518518517, 0, 0, 0, 0, 0, 0, 0, 0.008620689655172414, 0, 0.020202020202020204, 0, 0, 0, 0, 0, 0, 0.006944444444444444, 0, 0.010101010101010102, 0.004166666666666667, 0, 0, 0.007246376811594203, 0, 0.013333333333333334, 0.0045045045045045045, 0.01098901098901099, 0.010101010101010102, 0, 0, 0.007936507936507936, 0, 0, 0.010101010101010102, 0.014705882352941176, 0, 0, 0, 0, 0.012987012987012988, 0, 0.007751937984496124, 0, 0, 0, 0.007407407407407408, 0.013157894736842105, 0, 0.009708737864077669, 0.01, 0.010526315789473684, 0, 0.015625, 0.0058823529411764705, 0.010526315789473684, 0, 0.015267175572519083, 0.005917159763313609, 0.007194244604316547, 0.007936507936507936, 0.007874015748031496, 0, 0.003236245954692557, 0, 0.006289308176100629, 0, 0, 0.0038461538461538464, 0.004048582995951417, 0, 0.017857142857142856, 0.015151515151515152, 0.0058823529411764705, 0.007380073800738007, 0.00625, 0, 0.015384615384615385, 0, 0, 0, 0, 0.004, 0.008333333333333333, 0.00641025641025641, 0, 0.00823045267489712, 0, 0, 0, 0, 0, 0, 0, 0.005988023952095809, 0, 0, 0, 0, 0, 0.007751937984496124, 0, 0.00975609756097561, 0.005263157894736842, 0, 0, 0, 0, 0.0032258064516129032, 0, 0.019736842105263157, 0, 0, 0, 0, 0, 0.005319148936170213, 0.006172839506172839, 0, 0.02127659574468085, 0.007194244604316547, 0.009433962264150943, 0.05, 0, 0, 0, 0.014705882352941176, 0.008547008547008548, 0.005714285714285714, 0, 0, 0.019417475728155338, 0.012738853503184714, 0.011363636363636364, 0, 0.008547008547008548, 0.02127659574468085, 0.004166666666666667, 0, 0, 0.005917159763313609, 0, 0.009259259259259259, 0.037037037037037035, 0, 0.008695652173913044, 0, 0, 0.009009009009009009, 0.00749063670411985, 0.015873015873015872, 0.014814814814814815, 0.01694915254237288, 0, 0, 0, 0.004901960784313725, 0.0136986301369863, 0, 0.02040816326530612, 0.03546099290780142, 0, 0.017391304347826087, 0.029411764705882353, 0.00425531914893617, 0, 0, 0.010309278350515464, 0, 0, 0, 0, 0.004081632653061225, 0, 0.011494252873563218, 0.005405405405405406, 0.006060606060606061, 0, 0.008130081300813009, 0, 0.0029940119760479044, 0, 0, 0.005, 0, 0, 0.02247191011235955, 0.014705882352941176, 0.017391304347826087, 0.024096385542168676, 0.010526315789473684, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010869565217391304, 0.011904761904761904, 0, 0.006896551724137931, 0.03125, 0.02145922746781116, 0.003257328990228013, 0, 0.016666666666666666, 0, 0, 0, 0.005405405405405406, 0.02247191011235955, 0.009950248756218905, 0.009950248756218905, 0, 0, 0, 0.008333333333333333, 0.005780346820809248, 0, 0, 0.006493506493506494, 0, 0.00411522633744856, 0, 0, 0, 0, 0, 0, 0, 0.017857142857142856, 0.017241379310344827, 0, 0, 0.009900990099009901, 0, 0, 0, 0, 0, 0.010638297872340425, 0, 0.007751937984496124, 0, 0, 0, 0.0125, 0, 0.007352941176470588, 0, 0, 0, 0, 0, 0, 0.009900990099009901, 0, 0, 0, 0, 0.02247191011235955, 0, 0.007936507936507936, 0, 0, 0, 0, 0, 0.007751937984496124, 0.007462686567164179, 0, 0, 0, 0, 0, 0, 0.0072992700729927005, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00411522633744856, 0, 0, 0, 0, 0, 0, 0, 0, 0.006666666666666667, 0.004291845493562232, 0, 0, 0.0196078431372549, 0, 0.006944444444444444, 0, 0, 0.014814814814814815, 0, 0, 0, 0.017699115044247787, 0.005747126436781609, 0, 0, 0.012048192771084338, 0.005434782608695652, 0, 0, 0.003952569169960474, 0.007936507936507936, 0, 0, 0.011904761904761904, 0.006666666666666667, 0.011494252873563218, 0, 0.0045662100456621, 0.015151515151515152, 0, 0.013513513513513514, 0, 0, 0.004048582995951417, 0.005128205128205128, 0.013793103448275862, 0.007142857142857143, 0, 0, 0, 0, 0, 0, 0.012195121951219513, 0, 0.012345679012345678, 0, 0.006191950464396285, 0, 0, 0.01020408163265306, 0, 0.004608294930875576, 0.012658227848101266, 0, 0, 0, 0, 0, 0.006369426751592357, 0.012658227848101266, 0.015873015873015872, 0.021897810218978103, 0.008, 0, 0, 0, 0.014084507042253521, 0, 0.018518518518518517, 0, 0, 0.009523809523809525, 0, 0.037037037037037035, 0.029411764705882353, 0.006666666666666667, 0, 0.009259259259259259, 0.005555555555555556, 0, 0.00625, 0, 0, 0.021052631578947368, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0, 0.010416666666666666, 0, 0, 0, 0, 0.03076923076923077, 0, 0, 0.031746031746031744, 0, 0, 0, 0, 0, 0.013513513513513514, 0, 0, 0.005291005291005291, 0, 0, 0, 0, 0.017341040462427744, 0, 0, 0, 0.021739130434782608, 0.007246376811594203, 0, 0.015625, 0, 0, 0, 0, 0.011904761904761904, 0, 0.006944444444444444, 0.010101010101010102, 0, 0.024390243902439025, 0.007352941176470588, 0, 0.012987012987012988, 0.006711409395973154, 0, 0, 0, 0, 0, 0, 0.011560693641618497, 0, 0, 0, 0, 0.009216589861751152, 0.006172839506172839, 0, 0.009009009009009009, 0, 0, 0.013888888888888888, 0.004347826086956522, 0, 0.008032128514056224, 0.009615384615384616, 0.013888888888888888, 0, 0, 0, 0.023255813953488372, 0, 0, 0, 0, 0, 0.009433962264150943, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010101010101010102, 0, 0, 0, 0, 0.009433962264150943, 0.03389830508474576, 0, 0.009852216748768473, 0, 0.011673151750972763, 0.005917159763313609, 0.028169014084507043, 0, 0, 0, 0.013157894736842105, 0.004608294930875576, 0.008064516129032258, 0.00819672131147541, 0.01694915254237288, 0, 0, 0, 0, 0, 0.013605442176870748, 0.006060606060606061, 0, 0, 0.007936507936507936, 0.0055248618784530384, 0.017857142857142856, 0, 0, 0, 0, 0.0072992700729927005, 0, 0.008264462809917356, 0.007547169811320755, 0, 0.015384615384615385, 0.006211180124223602, 0, 0.007518796992481203, 0, 0, 0, 0, 0.017857142857142856, 0.009433962264150943, 0.024390243902439025, 0.019736842105263157, 0, 0.006211180124223602, 0.02, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010638297872340425, 0.008064516129032258, 0.008547008547008548, 0, 0, 0.00909090909090909, 0, 0.01694915254237288, 0, 0.02586206896551724, 0.023255813953488372, 0.02040816326530612, 0.04285714285714286, 0.012658227848101266, 0.0078125, 0.006211180124223602, 0.02631578947368421, 0.0070921985815602835, 0, 0.00510204081632653, 0, 0, 0.00510204081632653, 0.05263157894736842, 0, 0, 0, 0, 0, 0, 0, 0.005555555555555556, 0.0034482758620689655, 0, 0, 0, 0.01098901098901099, 0, 0.0037593984962406013, 0, 0.0049261083743842365, 0, 0, 0, 0.011111111111111112, 0.017857142857142856, 0, 0.007462686567164179, 0, 0, 0.019230769230769232, 0, 0, 0, 0.005319148936170213, 0.012195121951219513, 0, 0, 0, 0, 0, 0, 0, 0, 0.007692307692307693, 0, 0, 0, 0.0078125, 0.005847953216374269, 0, 0, 0, 0.009009009009009009, 0.008849557522123894, 0.010869565217391304, 0, 0.008771929824561403, 0, 0.004975124378109453, 0, 0.0125, 0.017391304347826087, 0, 0.00641025641025641, 0.0056179775280898875, 0, 0.016260162601626018, 0.0078125, 0.013513513513513514, 0, 0, 0, 0, 0, 0.007936507936507936, 0, 0.011627906976744186, 0, 0.00909090909090909, 0, 0, 0, 0.03333333333333333, 0, 0, 0.015384615384615385, 0, 0.009615384615384616, 0, 0, 0, 0, 0.014285714285714285, 0.0078125, 0.022321428571428572, 0, 0, 0, 0.015503875968992248, 0, 0.0035587188612099642, 0.013043478260869565, 0.008849557522123894, 0.023809523809523808, 0, 0, 0.013333333333333334, 0, 0, 0, 0, 0, 0, 0.008333333333333333, 0.015267175572519083, 0, 0, 0, 0.006993006993006993, 0, 0, 0, 0.010676156583629894, 0.006666666666666667, 0, 0.007352941176470588, 0, 0, 0.005405405405405406, 0.019230769230769232, 0, 0.005263157894736842, 0.007246376811594203, 0.006711409395973154, 0.015873015873015872, 0, 0, 0.010638297872340425, 0.00398406374501992, 0.013513513513513514, 0.005, 0.022388059701492536, 0.017391304347826087, 0, 0, 0, 0, 0, 0, 0, 0.012987012987012988, 0, 0.012422360248447204, 0, 0, 0, 0.023622047244094488, 0.02040816326530612, 0, 0.007142857142857143, 0.007246376811594203, 0.008849557522123894, 0.017241379310344827, 0.004629629629629629, 0, 0, 0.01507537688442211, 0, 0.023809523809523808, 0.006369426751592357, 0.004784688995215311, 0.014388489208633094, 0, 0.010101010101010102, 0, 0, 0.013745704467353952, 0, 0.005917159763313609, 0, 0.01990049751243781, 0.012345679012345678, 0, 0, 0.012658227848101266, 0.010101010101010102, 0.012903225806451613, 0.015789473684210527, 0.016666666666666666, 0.022988505747126436, 0.009174311926605505, 0, 0, 0.015151515151515152, 0, 0, 0, 0, 0.023255813953488372, 0.012903225806451613, 0.021052631578947368, 0.023529411764705882, 0.015037593984962405, 0.025974025974025976, 0, 0.020618556701030927, 0.024, 0, 0, 0.02040816326530612, 0.011764705882352941, 0.020833333333333332, 0.01639344262295082, 0.01694915254237288, 0, 0.007692307692307693, 0, 0.0125, 0.009433962264150943, 0.008849557522123894, 0.01904761904761905, 0, 0, 0.014035087719298246, 0, 0.008771929824561403, 0.007633587786259542, 0.008, 0.011764705882352941, 0.018518518518518517, 0, 0, 0.012987012987012988, 0.023391812865497075, 0.0125, 0, 0.02197802197802198, 0.00684931506849315, 0, 0.021052631578947368, 0.011764705882352941, 0.014925373134328358, 0, 0.004901960784313725, 0.01282051282051282, 0, 0.008620689655172414, 0.00847457627118644, 0, 0.013157894736842105, 0.004761904761904762, 0.022058823529411766, 0, 0, 0, 0, 0.030927835051546393, 0, 0, 0, 0, 0, 0, 0.005376344086021506, 0, 0.005988023952095809, 0.008064516129032258, 0.009174311926605505, 0.01282051282051282, 0.0037735849056603774, 0.005434782608695652, 0.017241379310344827, 0, 0.005154639175257732, 0, 0, 0.008928571428571428, 0.008928571428571428, 0.031446540880503145, 0, 0, 0.005319148936170213, 0.011494252873563218, 0.02459016393442623, 0.012048192771084338, 0.0196078431372549, 0.009174311926605505, 0, 0, 0, 0.005154639175257732, 0, 0, 0.017094017094017096, 0.02127659574468085, 0, 0.01098901098901099, 0.009523809523809525, 0, 0, 0.017857142857142856, 0, 0, 0, 0, 0.01639344262295082, 0.00909090909090909, 0.015037593984962405, 0, 0, 0, 0.006802721088435374, 0.01639344262295082, 0.0038022813688212928, 0.00819672131147541, 0, 0.017241379310344827, 0, 0, 0.038461538461538464, 0.010638297872340425, 0.00816326530612245, 0, 0.007042253521126761, 0.0033003300330033004, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.042105263157894736, 0, 0.008, 0.014084507042253521, 0.043478260869565216, 0, 0, 0, 0, 0.0136986301369863, 0, 0, 0.02127659574468085, 0, 0.047619047619047616, 0, 0.0196078431372549, 0.022727272727272728, 0.02040816326530612, 0, 0, 0, 0.011363636363636364, 0, 0.014925373134328358, 0.02631578947368421, 0.014285714285714285, 0, 0, 0, 0.0136986301369863, 0.007407407407407408, 0.01098901098901099, 0, 0.022222222222222223, 0, 0, 0, 0, 0, 0, 0.005649717514124294, 0.007692307692307693, 0.0078125, 0.013333333333333334, 0.012396694214876033, 0.014705882352941176, 0, 0, 0, 0, 0, 0, 0.09090909090909091, 0, 0, 0, 0, 0, 0.008333333333333333, 0.015151515151515152, 0, 0, 0.00625, 0, 0.012195121951219513, 0.02631578947368421, 0, 0, 0.015151515151515152, 0, 0, 0.011560693641618497, 0.016666666666666666, 0, 0.017543859649122806, 0.06666666666666667, 0.009009009009009009, 0, 0, 0, 0, 0.043478260869565216, 0, 0, 0, 0.011235955056179775, 0, 0, 0.07692307692307693, 0, 0, 0, 0, 0, 0.00980392156862745, 0.02127659574468085, 0.125, 0, 0, 0.025, 0, 0.019230769230769232, 0, 0.007352941176470588, 0, 0.043478260869565216, 0.006802721088435374, 0.008547008547008548, 0, 0, 0, 0, 0.02912621359223301, 0, 0, 0, 0.007874015748031496, 0, 0.0196078431372549, 0, 0.022222222222222223, 0, 0, 0, 0.013157894736842105, 0.0136986301369863, 0.034482758620689655, 0, 0.010101010101010102, 0, 0, 0.0056179775280898875, 0.006993006993006993, 0.018404907975460124, 0.013513513513513514, 0, 0, 0.03669724770642202, 0, 0.058823529411764705, 0, 0, 0, 0, 0, 0, 0.0196078431372549, 0.020833333333333332, 0, 0, 0, 0.011111111111111112, 0, 0, 0.017241379310344827, 0, 0, 0, 0, 0.023809523809523808, 0, 0, 0.022222222222222223, 0, 0, 0, 0.021505376344086023, 0.011904761904761904, 0.016129032258064516, 0, 0, 0.010638297872340425, 0, 0, 0, 0.017857142857142856, 0.025, 0, 0, 0.02247191011235955, 0, 0, 0, 0, 0, 0, 0, 0, 0.014285714285714285, 0, 0.043478260869565216, 0, 0, 0, 0, 0, 0.015151515151515152, 0, 0, 0.015748031496062992, 0, 0, 0.012195121951219513, 0.026785714285714284, 0.02097902097902098, 0, 0.018691588785046728, 0, 0, 0.011904761904761904, 0.012195121951219513, 0.0049504950495049506, 0, 0.015151515151515152, 0, 0, 0, 0.006172839506172839, 0.005494505494505495, 0, 0.01, 0.007142857142857143, 0, 0, 0, 0.006535947712418301, 0, 0.008849557522123894, 0.011363636363636364, 0.016216216216216217, 0, 0.015503875968992248, 0.011494252873563218, 0, 0, 0, 0.01639344262295082, 0.018867924528301886, 0, 0, 0, 0, 0.022222222222222223, 0, 0.013157894736842105, 0, 0, 0, 0.00819672131147541, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0.009615384615384616, 0.030303030303030304, 0, 0.022222222222222223, 0.02127659574468085, 0, 0.011494252873563218, 0, 0, 0, 0, 0.013157894736842105, 0.006578947368421052, 0, 0, 0, 0, 0, 0, 0, 0.013157894736842105, 0, 0, 0.03333333333333333, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008849557522123894, 0.016129032258064516, 0.011627906976744186, 0.021052631578947368, 0, 0.021052631578947368, 0.009523809523809525, 0, 0, 0.008333333333333333, 0.0078125, 0.013824884792626729, 0, 0, 0.015384615384615385, 0, 0.034482758620689655, 0, 0, 0, 0.014925373134328358, 0.018867924528301886, 0.014492753623188406, 0, 0, 0, 0, 0.01639344262295082, 0.0196078431372549, 0, 0.014705882352941176, 0.010638297872340425, 0.010526315789473684, 0, 0, 0, 0, 0.013986013986013986, 0.02608695652173913, 0, 0, 0, 0, 0.009523809523809525, 0, 0, 0, 0.025, 0, 0, 0.08333333333333333, 0, 0, 0, 0.008064516129032258, 0, 0.02127659574468085, 0, 0, 0, 0, 0, 0, 0, 0, 0.017543859649122806, 0.0037174721189591076, 0, 0, 0, 0, 0, 0, 0, 0.013422818791946308, 0.006802721088435374, 0, 0.010869565217391304, 0.00641025641025641, 0.011627906976744186, 0.012269938650306749, 0.005319148936170213, 0, 0.006993006993006993, 0, 0, 0.01606425702811245, 0.01639344262295082, 0.009615384615384616, 0, 0.011049723756906077, 0.02727272727272727, 0.0053475935828877, 0, 0, 0.0072992700729927005, 0.013888888888888888, 0, 0, 0, 0, 0.02040816326530612, 0, 0, 0, 0, 0, 0, 0, 0.018018018018018018, 0, 0.006802721088435374, 0, 0, 0, 0, 0, 0.015384615384615385, 0.005434782608695652, 0, 0, 0.004975124378109453, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017699115044247787, 0, 0, 0.005952380952380952, 0, 0, 0, 0, 0.015151515151515152, 0, 0, 0, 0, 0, 0, 0.008403361344537815, 0.012244897959183673, 0.014285714285714285, 0.027777777777777776, 0, 0, 0, 0, 0.014705882352941176, 0, 0, 0, 0.02, 0.008, 0, 0, 0, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.07692307692307693, 0, 0, 0, 0.01694915254237288, 0.014388489208633094, 0, 0.02666666666666667, 0, 0, 0.012345679012345678, 0, 0, 0, 0, 0, 0, 0, 0.012195121951219513, 0.018018018018018018, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02564102564102564, 0, 0, 0, 0.015151515151515152, 0.011235955056179775, 0.023121387283236993, 0.025210084033613446, 0.014285714285714285, 0, 0.008064516129032258, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.02727272727272727, 0, 0, 0, 0, 0.037037037037037035, 0, 0, 0, 0, 0, 0.02702702702702703, 0.013513513513513514, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0625, 0, 0.019230769230769232, 0.007352941176470588, 0, 0, 0, 0, 0, 0, 0, 0.09090909090909091, 0, 0.022222222222222223, 0, 0, 0, 0.0625, 0.025, 0, 0, 0, 0.011627906976744186, 0, 0, 0, 0, 0.010752688172043012, 0, 0, 0, 0, 0.007407407407407408, 0, 0, 0.06666666666666667, 0, 0, 0.00980392156862745, 0, 0, 0, 0, 0, 0.008, 0, 0.025, 0.014705882352941176, 0.01639344262295082, 0.011494252873563218, 0, 0, 0.06666666666666667, 0, 0, 0, 0, 0, 0, 0, 0, 0.013513513513513514, 0.005494505494505495, 0, 0, 0, 0.012195121951219513, 0, 0, 0, 0, 0, 0, 0.058823529411764705, 0.009900990099009901, 0.015625, 0.013888888888888888, 0, 0, 0.06666666666666667, 0, 0.018518518518518517, 0.018518518518518517, 0.014285714285714285, 0, 0.013157894736842105, 0.007042253521126761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010752688172043012, 0, 0, 0, 0, 0.029411764705882353, 0, 0, 0, 0.008064516129032258, 0.04, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00819672131147541, 0, 0, 0, 0.02702702702702703, 0.008928571428571428, 0.011764705882352941, 0, 0, 0, 0, 0, 0, 0.013157894736842105, 0.007352941176470588, 0, 0, 0, 0.008064516129032258, 0.008547008547008548, 0, 0, 0.017241379310344827, 0, 0.013888888888888888, 0.0125, 0.006896551724137931, 0.008547008547008548, 0, 0, 0, 0.009259259259259259, 0, 0.008264462809917356, 0.011904761904761904, 0.004651162790697674, 0, 0.011857707509881422, 0.008, 0.004975124378109453, 0, 0, 0.018518518518518517, 0.015789473684210527, 0.004032258064516129, 0.0043859649122807015, 0.017094017094017096, 0, 0.008547008547008548, 0.004694835680751174, 0.005780346820809248, 0, 0.004424778761061947, 0, 0, 0.0136986301369863, 0.022222222222222223, 0.02564102564102564, 0, 0.016129032258064516, 0.02127659574468085, 0.006993006993006993, 0.015151515151515152, 0, 0.01015228426395939, 0.01639344262295082, 0.006060606060606061, 0, 0.027777777777777776, 0.00392156862745098, 0.010471204188481676, 0, 0.012195121951219513, 0.007407407407407408, 0.012987012987012988, 0, 0, 0.009433962264150943, 0, 0.014925373134328358, 0, 0.013793103448275862, 0, 0.015384615384615385, 0.010676156583629894, 0.00851063829787234, 0.007518796992481203, 0.005714285714285714, 0, 0.005154639175257732, 0, 0, 0, 0.011976047904191617, 0.00558659217877095, 0.006211180124223602, 0.00980392156862745, 0, 0.015873015873015872, 0, 0.022222222222222223, 0.016666666666666666, 0.015748031496062992, 0.02112676056338028, 0.009345794392523364, 0, 0.00816326530612245, 0.00546448087431694, 0, 0.006172839506172839, 0.020134228187919462, 0.011111111111111112, 0, 0, 0.01, 0, 0.007352941176470588, 0, 0.004784688995215311, 0.007352941176470588, 0.02666666666666667, 0, 0.009708737864077669, 0.009174311926605505, 0, 0, 0.0136986301369863, 0, 0.00641025641025641, 0.017699115044247787, 0.006622516556291391, 0.01098901098901099, 0, 0, 0.014492753623188406, 0.01818181818181818, 0.009523809523809525, 0, 0, 0.022598870056497175, 0.017857142857142856, 0.008333333333333333, 0, 0.006993006993006993, 0, 0, 0, 0, 0, 0, 0, 0.012658227848101266, 0, 0.00558659217877095, 0.005952380952380952, 0, 0.01818181818181818, 0.016666666666666666, 0, 0.007575757575757576, 0, 0.016, 0.008620689655172414, 0.031007751937984496, 0.010638297872340425, 0, 0, 0.0136986301369863, 0, 0, 0, 0, 0.037037037037037035, 0, 0.01652892561983471, 0, 0, 0, 0.009523809523809525, 0, 0, 0.0136986301369863, 0.01652892561983471, 0, 0.01020408163265306, 0.0033783783783783786, 0.014814814814814815, 0, 0, 0.015503875968992248, 0, 0, 0, 0, 0.023391812865497075, 0, 0, 0, 0, 0, 0, 0, 0.014285714285714285, 0.006493506493506494, 0, 0, 0, 0, 0, 0.011976047904191617, 0.02127659574468085, 0, 0.009708737864077669, 0, 0.005988023952095809, 0.011834319526627219, 0.011764705882352941, 0.008849557522123894, 0.013888888888888888, 0, 0, 0, 0.0136986301369863, 0, 0, 0.012552301255230125, 0, 0.01762114537444934, 0.007042253521126761, 0, 0, 0, 0, 0, 0.007782101167315175, 0.005128205128205128, 0.009708737864077669, 0, 0, 0.010309278350515464, 0, 0, 0, 0.005494505494505495, 0.005952380952380952, 0.007246376811594203, 0.027777777777777776, 0, 0, 0, 0, 0.00980392156862745, 0.01764705882352941, 0.0038461538461538464, 0, 0.015037593984962405, 0.006993006993006993, 0, 0, 0.0056179775280898875, 0, 0.016129032258064516, 0.007874015748031496, 0.004132231404958678, 0.0055248618784530384, 0, 0, 0, 0.007692307692307693, 0, 0, 0.009523809523809525, 0, 0, 0, 0.005714285714285714, 0, 0, 0.009009009009009009, 0.008771929824561403, 0.006944444444444444, 0, 0, 0, 0, 0, 0.005, 0.007462686567164179, 0, 0, 0, 0.008333333333333333, 0.007352941176470588, 0.046511627906976744, 0.013157894736842105, 0, 0.008620689655172414, 0, 0.021739130434782608, 0, 0, 0.008695652173913044, 0, 0.013157894736842105, 0.007407407407407408, 0.009345794392523364, 0.0058823529411764705, 0, 0.007936507936507936, 0, 0, 0.008264462809917356, 0.0038910505836575876, 0.0273972602739726, 0.01276595744680851, 0.013888888888888888, 0.010869565217391304, 0.0125, 0, 0, 0.010526315789473684, 0, 0, 0.00558659217877095, 0, 0.009216589861751152, 0.02, 0, 0, 0.012987012987012988, 0.010101010101010102, 0, 0.006896551724137931, 0.02586206896551724, 0, 0, 0, 0, 0, 0, 0.006493506493506494, 0, 0.005076142131979695, 0, 0, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0, 0, 0, 0.007575757575757576, 0.010638297872340425, 0, 0, 0.010638297872340425, 0.007751937984496124, 0, 0, 0, 0, 0.011235955056179775, 0, 0, 0.007246376811594203, 0, 0.00909090909090909, 0.006993006993006993, 0, 0, 0.005076142131979695, 0, 0, 0.011111111111111112, 0.007751937984496124, 0.01639344262295082, 0.009478672985781991, 0.012738853503184714, 0.01282051282051282, 0.01932367149758454, 0.007692307692307693, 0.007692307692307693, 0.008771929824561403, 0, 0.009009009009009009, 0.014705882352941176, 0.008620689655172414, 0.0056179775280898875, 0, 0.005050505050505051, 0.004484304932735426, 0.008547008547008548, 0.011049723756906077, 0, 0.004149377593360996, 0, 0, 0.006802721088435374, 0, 0.029411764705882353, 0.0111731843575419, 0, 0.006369426751592357, 0.009708737864077669, 0, 0.015267175572519083, 0, 0, 0.0070921985815602835, 0.018018018018018018, 0, 0, 0.011111111111111112, 0, 0, 0, 0, 0.00625, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.017391304347826087, 0.016129032258064516, 0.009174311926605505, 0, 0, 0, 0.005128205128205128, 0.0044444444444444444, 0.013157894736842105, 0.02857142857142857, 0, 0.005747126436781609, 0.0044444444444444444, 0.010752688172043012, 0.00684931506849315, 0.013157894736842105, 0, 0.00819672131147541, 0.006134969325153374, 0.01485148514851485, 0.011494252873563218, 0, 0.008333333333333333, 0.022727272727272728, 0, 0, 0.007633587786259542, 0, 0, 0, 0.015873015873015872, 0, 0, 0, 0.018867924528301886, 0.01818181818181818, 0.005208333333333333, 0.008264462809917356, 0, 0, 0.016260162601626018, 0.010309278350515464, 0.006097560975609756, 0, 0, 0, 0.00558659217877095, 0.006493506493506494, 0, 0, 0.01293103448275862, 0, 0.010416666666666666, 0.007936507936507936, 0, 0.02654867256637168, 0.008333333333333333, 0.01282051282051282, 0.007575757575757576, 0.009523809523809525, 0, 0.006024096385542169, 0, 0, 0, 0, 0.010752688172043012, 0, 0, 0.00625, 0.01, 0, 0, 0.017142857142857144, 0, 0.006060606060606061, 0.03636363636363636, 0.012738853503184714, 0.005988023952095809, 0.006993006993006993, 0, 0.008695652173913044, 0, 0.016666666666666666, 0.007142857142857143, 0, 0, 0, 0, 0, 0, 0.006802721088435374, 0, 0, 0, 0, 0, 0, 0, 0.008298755186721992, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.0030211480362537764, 0.004761904761904762, 0, 0.00425531914893617, 0, 0.005714285714285714, 0, 0, 0.017543859649122806, 0.012658227848101266, 0, 0.0136986301369863, 0, 0, 0, 0, 0, 0, 0, 0.007407407407407408, 0.002898550724637681, 0.006172839506172839, 0, 0.0049261083743842365, 0.015748031496062992, 0.0070921985815602835, 0.012903225806451613, 0, 0.007633587786259542, 0, 0.006993006993006993, 0, 0, 0.013245033112582781, 0.011494252873563218, 0, 0, 0, 0.008264462809917356, 0.009174311926605505, 0.00851063829787234, 0.03225806451612903, 0, 0.017094017094017096, 0, 0, 0.004694835680751174, 0.00546448087431694, 0, 0.005681818181818182, 0, 0, 0.013888888888888888, 0.007874015748031496, 0, 0, 0, 0, 0, 0.007575757575757576, 0.008130081300813009, 0, 0, 0, 0, 0, 0, 0.008403361344537815, 0, 0.011111111111111112, 0, 0, 0, 0, 0.014388489208633094, 0, 0, 0, 0, 0, 0.006622516556291391, 0.018292682926829267, 0.0072992700729927005, 0, 0.015384615384615385, 0, 0, 0.02702702702702703, 0, 0.012578616352201259, 0, 0.011627906976744186, 0.015873015873015872, 0.0070921985815602835, 0.009009009009009009, 0, 0, 0, 0.007518796992481203, 0, 0, 0, 0, 0, 0, 0, 0, 0.016129032258064516, 0, 0.011363636363636364, 0, 0, 0, 0, 0, 0.037037037037037035, 0.023255813953488372, 0, 0.006493506493506494, 0.0051813471502590676, 0, 0, 0.008032128514056224, 0, 0, 0, 0, 0, 0.015873015873015872, 0, 0, 0, 0, 0, 0, 0.005128205128205128, 0.004807692307692308, 0.00819672131147541, 0, 0, 0.011111111111111112, 0, 0, 0, 0, 0, 0.006369426751592357, 0.011627906976744186, 0, 0, 0, 0, 0.016666666666666666, 0, 0.008849557522123894, 0, 0.008771929824561403, 0, 0.004016064257028112, 0, 0.024390243902439025, 0.013513513513513514, 0.008379888268156424, 0, 0.011235955056179775, 0.008849557522123894, 0.014084507042253521, 0.007352941176470588, 0.013245033112582781, 0, 0.005747126436781609, 0, 0, 0.006535947712418301, 0, 0.0064516129032258064, 0.006134969325153374, 0.008130081300813009, 0.004761904761904762, 0.0072992700729927005, 0, 0, 0.009523809523809525, 0.012658227848101266, 0, 0.012048192771084338, 0.007246376811594203, 0, 0, 0.016666666666666666, 0, 0, 0.016666666666666666, 0.023255813953488372, 0.006578947368421052, 0, 0, 0.011764705882352941, 0, 0.01282051282051282, 0, 0.009302325581395349, 0.009852216748768473, 0, 0, 0, 0, 0, 0, 0, 0.007518796992481203, 0, 0.011235955056179775, 0, 0.016666666666666666, 0, 0.00546448087431694, 0.010101010101010102, 0.007874015748031496, 0.005988023952095809, 0.008333333333333333, 0, 0.00684931506849315, 0, 0.007936507936507936, 0.01818181818181818, 0, 0.012195121951219513, 0, 0, 0, 0, 0.01282051282051282, 0.01020408163265306, 0.010869565217391304, 0.006993006993006993, 0.01904761904761905, 0.010869565217391304, 0, 0, 0.013452914798206279, 0, 0.016597510373443983, 0, 0.007662835249042145, 0, 0.007042253521126761, 0.010638297872340425, 0, 0.007194244604316547, 0.005952380952380952, 0.0023752969121140144, 0.004329004329004329, 0.00546448087431694, 0, 0, 0, 0, 0, 0, 0, 0.013824884792626729, 0, 0, 0.006369426751592357, 0.0033444816053511705, 0.015873015873015872, 0, 0.007407407407407408, 0.009900990099009901, 0, 0.010752688172043012, 0.012903225806451613, 0, 0, 0.008849557522123894, 0.016666666666666666, 0.010101010101010102, 0.02127659574468085, 0, 0, 0, 0.014925373134328358, 0.010033444816053512, 0, 0.007142857142857143, 0, 0.008264462809917356, 0, 0, 0.016666666666666666, 0.006944444444444444, 0.0055248618784530384, 0, 0, 0.0035087719298245615, 0.010638297872340425, 0, 0.005714285714285714, 0.013157894736842105, 0.009345794392523364, 0.015503875968992248, 0.00641025641025641, 0.00303951367781155, 0.009966777408637873, 0.01639344262295082, 0, 0, 0, 0.005714285714285714, 0.01694915254237288, 0.01702127659574468, 0.009345794392523364, 0, 0, 0, 0.009584664536741214, 0.014705882352941176, 0.008695652173913044, 0.006802721088435374, 0, 0.00423728813559322, 0, 0.020942408376963352, 0.009852216748768473, 0.011940298507462687, 0.027522935779816515, 0.006211180124223602, 0.02040816326530612, 0.007874015748031496, 0, 0, 0, 0.009259259259259259, 0.0297029702970297, 0.017857142857142856, 0, 0.03333333333333333, 0, 0, 0.008547008547008548, 0.012658227848101266, 0.008695652173913044, 0, 0.008130081300813009, 0.004878048780487805, 0.007633587786259542, 0, 0, 0.024691358024691357, 0.009708737864077669, 0.006666666666666667, 0.012422360248447204, 0.011111111111111112, 0, 0.018867924528301886, 0, 0, 0, 0, 0.008849557522123894, 0, 0, 0.00625, 0, 0.009615384615384616, 0.005208333333333333, 0.012578616352201259, 0, 0, 0, 0.0055248618784530384, 0.004694835680751174, 0, 0.004962779156327543, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00684931506849315, 0.00980392156862745, 0.014598540145985401, 0, 0, 0, 0.011111111111111112, 0.009523809523809525, 0, 0, 0.008771929824561403, 0.012048192771084338, 0.016260162601626018, 0, 0.014760147601476014, 0, 0, 0.009259259259259259, 0.013793103448275862, 0.01935483870967742, 0.011904761904761904, 0.011494252873563218, 0.005208333333333333, 0.014492753623188406, 0, 0.01020408163265306, 0.0070921985815602835, 0.0064516129032258064, 0.023255813953488372, 0.011363636363636364, 0.009345794392523364, 0.009615384615384616, 0, 0, 0.007751937984496124, 0, 0, 0.005025125628140704, 0, 0, 0, 0, 0, 0.015503875968992248, 0, 0, 0, 0, 0, 0, 0.03333333333333333, 0.01557632398753894, 0.007194244604316547, 0, 0, 0.009009009009009009, 0, 0, 0.01098901098901099, 0, 0, 0, 0, 0, 0, 0.02127659574468085, 0.016129032258064516, 0.011764705882352941, 0.011363636363636364, 0, 0, 0.018518518518518517, 0.020833333333333332, 0.009009009009009009, 0, 0, 0, 0, 0, 0, 0.012345679012345678, 0, 0.015384615384615385, 0.017241379310344827, 0.012658227848101266, 0, 0, 0, 0.011363636363636364, 0, 0, 0, 0.020134228187919462, 0.013333333333333334, 0, 0, 0, 0, 0.006622516556291391, 0.008333333333333333, 0, 0, 0, 0.01834862385321101, 0, 0.02127659574468085, 0.012987012987012988, 0.00641025641025641, 0.006622516556291391, 0.017316017316017316, 0.010309278350515464, 0.0070921985815602835, 0, 0.009345794392523364, 0, 0, 0.00816326530612245, 0, 0, 0.006944444444444444, 0, 0, 0, 0, 0, 0, 0, 0.013071895424836602, 0, 0.00847457627118644, 0.013245033112582781, 0, 0, 0.005649717514124294, 0.009259259259259259, 0.007874015748031496, 0.00980392156862745, 0, 0.01910828025477707, 0.011764705882352941, 0, 0.012658227848101266, 0, 0, 0, 0.008064516129032258, 0.007194244604316547, 0, 0.005405405405405406, 0.011976047904191617, 0, 0, 0.011857707509881422, 0.01818181818181818, 0, 0.03571428571428571, 0.010309278350515464, 0, 0, 0.01507537688442211, 0.011363636363636364, 0.006944444444444444, 0.008, 0.004424778761061947, 0, 0, 0, 0, 0.004739336492890996, 0, 0, 0, 0, 0, 0, 0, 0.016853932584269662, 0, 0, 0.021739130434782608, 0, 0, 0.015384615384615385, 0, 0, 0, 0.009708737864077669, 0, 0.012422360248447204, 0.005952380952380952, 0.005555555555555556, 0, 0, 0.004098360655737705, 0.014285714285714285, 0, 0.008583690987124463, 0.016129032258064516, 0.011695906432748537, 0.006493506493506494, 0.003067484662576687, 0.010309278350515464, 0, 0, 0.008928571428571428, 0.009174311926605505, 0, 0.011764705882352941, 0, 0, 0, 0, 0, 0, 0, 0, 0.006711409395973154, 0.014705882352941176, 0, 0, 0.008771929824561403, 0.011627906976744186, 0, 0.013574660633484163, 0, 0, 0, 0, 0.014285714285714285, 0.006060606060606061, 0.008, 0.029585798816568046, 0.015873015873015872, 0.00625, 0, 0, 0.011235955056179775, 0, 0, 0, 0.026905829596412557, 0, 0, 0.0064516129032258064, 0.01694915254237288, 0.007518796992481203, 0.005988023952095809, 0.006535947712418301, 0.011904761904761904, 0, 0.010309278350515464, 0, 0, 0, 0, 0, 0.01904761904761905, 0.013157894736842105, 0.013333333333333334, 0.008264462809917356, 0, 0, 0.00641025641025641, 0.009523809523809525, 0.010309278350515464, 0.008547008547008548, 0.0035842293906810036, 0.007518796992481203, 0, 0.007518796992481203, 0, 0.017094017094017096, 0.009708737864077669, 0.011976047904191617, 0.008928571428571428, 0.00909090909090909, 0.01, 0.010416666666666666, 0, 0, 0.01485148514851485, 0.024390243902439025, 0.014598540145985401, 0, 0, 0.009345794392523364, 0, 0, 0.016483516483516484, 0, 0, 0.021739130434782608, 0, 0, 0, 0, 0.00819672131147541, 0, 0, 0.009345794392523364, 0.023809523809523808, 0, 0, 0.011363636363636364, 0.004608294930875576, 0.013513513513513514, 0.00980392156862745, 0.014925373134328358, 0, 0, 0.009523809523809525, 0, 0, 0.006944444444444444, 0, 0, 0.015748031496062992, 0.00423728813559322, 0, 0.007462686567164179, 0, 0, 0, 0, 0.00823045267489712, 0, 0, 0, 0, 0, 0, 0, 0.005, 0.00423728813559322, 0, 0, 0.008064516129032258, 0, 0.0056179775280898875, 0, 0.006711409395973154, 0, 0.00684931506849315, 0, 0.008928571428571428, 0, 0.005714285714285714, 0.017094017094017096, 0.005025125628140704, 0.01092896174863388, 0.008928571428571428, 0.008130081300813009, 0, 0.005813953488372093, 0, 0.010752688172043012, 0.011428571428571429, 0, 0, 0, 0.011235955056179775, 0.009259259259259259, 0, 0.010526315789473684, 0.004975124378109453, 0, 0, 0, 0.007142857142857143, 0.016666666666666666, 0, 0, 0, 0.0136986301369863, 0.003289473684210526, 0.006369426751592357, 0.007352941176470588, 0, 0.010526315789473684, 0.004464285714285714, 0.008849557522123894, 0, 0, 0.006711409395973154, 0, 0, 0, 0, 0.011764705882352941, 0, 0, 0.00641025641025641, 0, 0.00625, 0, 0.004329004329004329, 0.0049504950495049506, 0, 0.017241379310344827, 0, 0.016666666666666666, 0, 0.009708737864077669, 0, 0.017857142857142856, 0.01694915254237288, 0, 0.009259259259259259, 0.011494252873563218, 0.009345794392523364, 0, 0, 0, 0, 0, 0.017543859649122806, 0, 0.0111731843575419, 0.006172839506172839, 0.015873015873015872, 0, 0.02666666666666667, 0.004807692307692308, 0.017361111111111112, 0, 0.005917159763313609, 0.019704433497536946, 0, 0.006535947712418301, 0.014814814814814815, 0.0064516129032258064, 0, 0.010101010101010102, 0, 0, 0, 0, 0.006493506493506494, 0, 0, 0.005917159763313609, 0, 0.024193548387096774, 0, 0.006289308176100629, 0, 0.023255813953488372, 0, 0.00641025641025641, 0, 0.006493506493506494, 0, 0, 0.00980392156862745, 0, 0, 0.0196078431372549, 0, 0, 0, 0, 0.0125, 0.007692307692307693, 0.005952380952380952, 0.006802721088435374, 0.010416666666666666, 0.011764705882352941, 0, 0.015267175572519083, 0, 0, 0, 0, 0.015625, 0.005813953488372093, 0.013333333333333334, 0.006211180124223602, 0.006211180124223602, 0.005917159763313609, 0.005154639175257732, 0.007692307692307693, 0.010869565217391304, 0.008064516129032258, 0.017045454545454544, 0, 0.016129032258064516, 0.006097560975609756, 0, 0.012578616352201259, 0.01282051282051282, 0.0049504950495049506, 0.0055248618784530384, 0.008097165991902834, 0.011111111111111112, 0, 0, 0, 0, 0.01, 0.02112676056338028, 0.015384615384615385, 0, 0.015306122448979591, 0.021052631578947368, 0.02702702702702703, 0.01694915254237288, 0, 0, 0, 0, 0.007352941176470588, 0, 0.012987012987012988, 0, 0, 0.0078125, 0.0070921985815602835, 0, 0.01098901098901099, 0, 0.016556291390728478, 0.006369426751592357, 0.010810810810810811, 0, 0, 0.02459016393442623, 0.01098901098901099, 0, 0.018691588785046728, 0, 0, 0.004366812227074236, 0, 0, 0, 0.023255813953488372, 0.009202453987730062, 0.008130081300813009, 0.015873015873015872, 0, 0.00909090909090909, 0, 0.008264462809917356, 0.006329113924050633, 0.013888888888888888, 0, 0.0234375, 0, 0, 0.017857142857142856, 0.008403361344537815, 0.015625, 0, 0, 0, 0.008130081300813009, 0.00819672131147541, 0.007352941176470588, 0.011627906976744186, 0.030303030303030304, 0.012195121951219513, 0, 0.006802721088435374, 0, 0.009009009009009009, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00980392156862745, 0, 0.006622516556291391, 0, 0, 0.0072992700729927005, 0, 0, 0.01694915254237288, 0, 0.06666666666666667, 0, 0, 0.06666666666666667, 0, 0, 0.07142857142857142, 0, 0, 0, 0.006329113924050633, 0, 0.004761904761904762, 0.012048192771084338, 0.011363636363636364, 0.00966183574879227, 0.00392156862745098, 0, 0, 0, 0, 0.005025125628140704, 0, 0, 0, 0, 0, 0, 0, 0.00625, 0, 0.012658227848101266, 0.00425531914893617, 0.027777777777777776, 0, 0, 0.02608695652173913, 0, 0, 0.008658008658008658, 0.012987012987012988, 0.010869565217391304, 0.009900990099009901, 0, 0, 0, 0.00819672131147541, 0.005649717514124294, 0, 0.006369426751592357, 0.006493506493506494, 0.00625, 0.01818181818181818, 0.02127659574468085, 0, 0.015873015873015872, 0.01652892561983471, 0.017699115044247787, 0.009615384615384616, 0.011904761904761904, 0.017391304347826087, 0.006060606060606061, 0.008849557522123894, 0, 0.007352941176470588, 0, 0.007194244604316547, 0.006578947368421052, 0, 0.0064516129032258064, 0, 0.016666666666666666, 0, 0, 0.009900990099009901, 0, 0, 0, 0, 0.015151515151515152, 0, 0, 0, 0, 0, 0, 0, 0, 0.006711409395973154, 0, 0.009259259259259259, 0, 0, 0.008695652173913044, 0.004132231404958678, 0.009174311926605505, 0.02247191011235955, 0, 0.017857142857142856, 0.007142857142857143, 0.005988023952095809, 0, 0.005917159763313609, 0, 0, 0, 0, 0, 0, 0.021052631578947368, 0, 0, 0.014705882352941176, 0.010869565217391304, 0, 0.009345794392523364, 0, 0, 0, 0, 0, 0, 0.007936507936507936, 0.008064516129032258, 0, 0, 0.008547008547008548, 0, 0, 0.01, 0, 0, 0, 0.01079136690647482, 0.007692307692307693, 0.010416666666666666, 0.014925373134328358, 0.00819672131147541, 0.039473684210526314, 0, 0.010526315789473684, 0, 0.00625, 0.0049261083743842365, 0.005813953488372093, 0, 0, 0.007042253521126761, 0.013392857142857142, 0, 0, 0.03389830508474576, 0, 0.003875968992248062, 0.021551724137931036, 0, 0.007462686567164179, 0.004651162790697674, 0, 0, 0, 0, 0.009569377990430622, 0, 0.045454545454545456, 0.010526315789473684, 0.012345679012345678, 0, 0, 0.00819672131147541, 0.009900990099009901, 0.010526315789473684, 0, 0.01282051282051282, 0.007751937984496124, 0.017241379310344827, 0.007352941176470588, 0, 0, 0.010471204188481676, 0, 0.0053475935828877, 0.004694835680751174, 0, 0.020618556701030927, 0.009259259259259259, 0.01282051282051282, 0, 0.009345794392523364, 0.00641025641025641, 0, 0, 0.004545454545454545, 0, 0, 0.00851063829787234, 0, 0, 0.018018018018018018, 0, 0.003745318352059925, 0, 0, 0.0106951871657754, 0.007692307692307693, 0.005988023952095809, 0.0037735849056603774, 0.0056179775280898875, 0, 0, 0.006944444444444444, 0, 0.007575757575757576, 0.006097560975609756, 0, 0.00909090909090909, 0, 0, 0, 0.017964071856287425, 0, 0.014184397163120567, 0.016666666666666666, 0.03389830508474576, 0.007352941176470588, 0, 0.009852216748768473, 0.014778325123152709, 0, 0.008333333333333333, 0.011428571428571429, 0.0036363636363636364, 0.006369426751592357, 0.02857142857142857, 0, 0, 0, 0.0064516129032258064, 0, 0, 0, 0, 0.014084507042253521, 0, 0.005128205128205128, 0.005747126436781609, 0, 0.007874015748031496, 0, 0, 0.004975124378109453, 0.007142857142857143, 0.007633587786259542, 0.014084507042253521, 0, 0.008368200836820083, 0.008658008658008658, 0.003194888178913738, 0, 0.006211180124223602, 0, 0, 0.0078125, 0, 0.014388489208633094, 0, 0.002840909090909091, 0, 0, 0, 0, 0.0045045045045045045, 0, 0, 0, 0.004878048780487805, 0.006896551724137931, 0, 0.015873015873015872, 0.004807692307692308, 0.0035587188612099642, 0.00558659217877095, 0.007751937984496124, 0.015625, 0, 0.006756756756756757, 0, 0.010526315789473684, 0, 0.016, 0.012195121951219513, 0.010869565217391304, 0, 0, 0, 0, 0, 0, 0.007692307692307693, 0, 0, 0, 0, 0.008928571428571428, 0.005154639175257732, 0, 0, 0, 0, 0.01098901098901099, 0, 0, 0, 0, 0, 0, 0, 0.011111111111111112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.007575757575757576, 0, 0, 0.011904761904761904, 0.010526315789473684, 0, 0.024390243902439025, 0, 0, 0, 0, 0, 0.008695652173913044, 0.008, 0, 0, 0.011111111111111112, 0, 0.0410958904109589, 0, 0, 0.010416666666666666, 0, 0.011363636363636364, 0, 0, 0, 0.008064516129032258, 0, 0, 0, 0, 0.013333333333333334, 0, 0.012048192771084338, 0.008064516129032258, 0, 0.009174311926605505, 0, 0.004901960784313725, 0, 0, 0.02127659574468085 ]
0.005223
5
[ "microRNA-181a-5p antisense oligonucleotides attenuate osteoarthritis in facet and knee joints.", "\nWe recently identified microRNA-181a-5p (miR-181a-5p) as a critical mediator involved in the destruction of lumbar facet joint (FJ) cartilage. ", "In this study, we tested if locked nucleic acid (LNA) miR-181a-5p antisense oligonucleotides (ASO) could be used as a therapeutic to limit articular cartilage degeneration. ", "We used a variety of experimental models consisting of both human samples and animal models of FJ and knee osteoarthritis (OA) to test the effects of LNA-miR-181a-5p ASO on articular cartilage degeneration. ", "Histopathological analysis including immunohistochemistry and in situ hybridisation were used to detect key OA catabolic markers and microRNA, respectively. ", "Apoptotic/cell death markers were evaluated by flow cytometry. ", "qPCR and immunoblotting were applied to quantify gene and protein expression. ", "miR-181a-5p expression was increased in human FJ OA and knee OA cartilage as well as injury-induced FJ OA (rat) and trauma-induced knee OA (mouse) cartilage compared with control cartilage, correlating with classical OA catabolic markers in human, rat and mouse cartilage. ", "We demonstrated that LNA-miR-181a-5p ASO in rat and mouse chondrocytes reduced the expression of cartilage catabolic and chondrocyte apoptotic/cell death markers in vitro. ", "Treatment of OA-induced rat FJ or mouse knee joints with intra-articular injections of in vivo grade LNA-miR-181a-5p ASO attenuated cartilage destruction, and the expression of catabolic, hypertrophic, apoptotic/cell death and type II collagen breakdown markers. ", "Finally, treatment of LNA-miR-181a-5p ASO in cultures of human knee OA chondrocytes (in vitro) and cartilage explants (ex vivo) further demonstrated its cartilage protective effects. ", "Our data demonstrate, for the first time, that LNA-miR-181a-5p ASO exhibit cartilage-protective effects in FJ and knee OA." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.010638297872340425, 0.006944444444444444, 0.011560693641618497, 0, 0, 0, 0, 0, 0, 0, 0.00546448087431694, 0 ]
0.002884
5
[ "This is a prospective investigation of antecedent risk factors associated with incident late-onset Alzheimer's disease (AD), stroke and stroke- related dementia (SRD) in a cohort of healthy elderly, currently free of dementia and stroke, identified i stratified random sample of MEDICARE recipients from Washington Heights. ", "The presence of key antecedent factors will have been uniformly ascertained before the start of this project, and in year 1, we shall determine, in all subjects, lipid profiles, lipoprotein (a) levels and apolipoprotein E allele frequencies. ", "This cohort will be examined annually for incident AD, stroke and SRD, and contacted semiannually for vital health status. ", "We shall determine relative risks associated with each antecedent factor and establish attributable risks and risk profiles for AD, stroke and SRD. ", "We intend to investigate the following hypotheses with regard to AD: 1) that the etiology of AD is multifactorial and is likely the result of an interaction between environmental and heritable factors; 2) that advanced age, female gender, low educational and occupationally attainment and smoking are effect modifiers or intermediary factors enhancing the effect of either an environmental or inherited factor. ", "3) that the presence of the E4 allele of apolipoprotein E (Apo E4) will be a marker of genetic susceptibility to AD, and that exposure to putative environmental risk factors may further increase the risk of AD in these genetically susceptible individuals. ", "We intend to investigate the following hypotheses with regard to SRD: 1) that the etiology of SRD is also multifactorial and that some of the well-accepted, conventional risk factors for stroke and for dementia will also be risk factors for SRD; 2) that advanced age and either low educational or occupational function, thus increasing the risk of SRD; 3) that a history of diabetes mellitus, hyperlipidemia or high dietary fat intake, and cardiac disease, which are accepted conventional risk factors for stroke, will be most important predictors of SRD; 4) that the presence of high levels of lipoprotein (a), a recently identified potential risk factor for atherothrombotic disease, will independently increase the risk of both stroke and SRD; 5) that a family history of dementia or stroke will be independently associated with an increased risk of SRD." ]
{ "pile_set_name": "NIH ExPorter" }
[ 0.006172839506172839, 0.004132231404958678, 0.008130081300813009, 0.013513513513513514, 0, 0.00390625, 0.007001166861143524 ]
0.006122
5
[ "Motor coordination problems can seriously affect a child\\'s life, including activities of daily living (e.g. eating, dressing, grooming), self-esteem, pastime activities, social relationships and academic attainment.[@ref1] Motor dysfunction can furthermore compound risk for psychopathology,[@ref2] even into adulthood.[@ref3] Developmental coordination disorder (DCD) is a neurodevelopmental disorder characterised by motor function that is markedly deficient given the person\\'s chronological age and measured intelligence, that is not explained by any overt motor or sensory deficit.[@ref4] DCD is often comorbid with other neurodevelopmental disorders, particularly attention-deficit hyperactivity disorder (ADHD), but also anxiety disorders and autism-spectrum disorder (ASD).[@ref2]^,^[@ref5]^--^[@ref7] For example, up to 50% of children with DCD have been reported to have a diagnosis of ADHD, primarily of the inattentive subtype.[@ref8] DCD is also associated with neurocognitive deficits, including in executive functioning.[@ref9] The relationship between IQ and DCD has not been rigorously tested as, because of the current definition, most studies of DCD have excluded individuals with an IQ in the borderline or intellectual disability range. ", "However, a better understanding of the presence of motor dysfunction in children with intellectual disability can pave the way towards suitable interventions and can also shed light on possible shared underlying processes.", "\n\nA diagnosis of DCD is established through a series of multiple assessments that establish coordination and the impact of difficulties on daily life. ", "Screening tools, such as the Developmental Coordination Disorder Questionnaire (DCDQ), can be used effectively in large populations, and have been shown to have good agreement with more detailed movement assessments in populations with attention difficulties, intellectual difficulties or healthy children.[@ref10]^,^[@ref11] However, there are no studies comparing the validity of the DCDQ as a measure of coordination in populations with chromosomal disorders.", "\n\n22q11.2 deletion syndrome (22q11.2DS) is a rare chromosomal disorder that affects ≈1 in 2000--4000 live births and is caused by a hemizygous microdeletion on the long arm of chromosome 22.[@ref12] In childhood, the deletion is associated with high rates of ADHD, ASD, anxiety disorders and oppositional defiant disorder.[@ref13]^,^[@ref14] 22q11.2DS is also one of the strongest known biological risk factors for the development of schizophrenia, with about 25% of adult patients with 22q11.2DS affected.[@ref15] Mild or moderate intellectual disability is common, with reports that the mean IQ of patients with 22q11.2DS is approximately 30 points lower than that of unaffected siblings.[@ref13]^,^[@ref14] Coordination problems are increasingly recognised as a feature of 22q11.2DS, particularly problems with balance, bimanual coordination and visuomotor skills, that may be independent of IQ.[@ref16]^--^[@ref20] Moreover, 22q11.2DS is associated with a number of factors that have been associated with motor problems such as preterm birth, hypotonia, seizures and abnormalities of the central nervous system.[@ref21] We are not aware of studies that have investigated the prevalence of DCD, or of a clear pathway to assigning a diagnosis of DCD in this population. ", "Furthermore, there are no papers on the links between coordination problems and IQ and other neurocognitive function or psychopathology in carriers of this deletion. ", "It may be the case that DCD may index a greater overall neurodevelopmental difficulty, and therefore be related to other psychopathology.", "\n\nWe set out to address these gaps in the literature. ", "Our first aim was to investigate the prevalence of indicative DCD in children with 22q11.2DS in comparison with siblings without the deletion by screening for DCD using the DCDQ. ", "Our second aim was to evaluate the degree to which the DCDQ captured the motor performance difficulties associated with DCD in this population. ", "This was achieved by conducting the gold-standard Movement Assessment Battery for Children-2 (MABC-2)[@ref22] in an occupational therapy clinic in a subset of nine of the children with indicative DCD, to ensure that the DCDQ is accurately reflecting coordination difficulties in this population. ", "Third, we investigated the relationships between indicative DCD and psychiatric problems that are common in children with 22q11.2DS (ADHD, ASD and anxiety disorder). ", "Fourth, we aimed to explore the relationship between indicative DCD and IQ and specific neurocognitive functions in this population. ", "We hypothesised that there would be a high incidence of indicative DCD in children with 22q11.2DS and that most of the children who screened positive would meet diagnostic criteria for DCD; and furthermore, that indicative DCD would be associated with risk of ADHD, ASD and anxiety disorder, as well as poorer cognitive ability. ", "Finally, we also explored whether specific medical aspects of 22q11.2DS (preterm birth, history of heart problems and epileptic fits) contributed to risk of indicative DCD and possible links with psychopathology and cognition.", "\n\nMethod {#sec1}\n======\n\nParticipants {#sec1-1}\n------------\n\nParticipants were members of the ongoing Experiences of CHildren with cOpy number variants (ECHO) study. ", "Children with 22q11.2DS were recruited through medical genetics clinics across the UK, charities for chromosomal conditions as well as 22q11.2DS specifically (Unique, 22Crew and MaxAppeal!) ", "and word of mouth. ", "Unaffected siblings closest in age to the child with the deletion were also invited to take part. ", "Inclusion criteria were age 6 years of age or older (in order for the psychiatric assessment to be valid) and for the child with the deletion, confirmation of 22q11.2DS by Medical Genetics laboratories, using standard methods (fluorescence *in situ* hybridisation/microarray) and subsequently in the laboratory of the MRC Centre for Neuropsychiatric Genetics and Genomics at Cardiff University, using microarray techniques. ", "The current study was based on 70 children with 22q11.2DS (58.6% male, mean age 11.2 years, s.d.", " = 2.2) and 32 unaffected siblings (43.8% male, mean age 11.5, s.d.", " = 2.1). ", "Children with 22q11.2DS did not differ in age (*P* = 0.50) or gender distribution (*P* = 0.16) from the control siblings. ", "Informed and written consent was obtained prior to recruitment from the carers of the children and recruitment was carried out in agreement with protocols approved by the appropriate research and National Health Service ethics and research and development committees. ", "The primary carers of the children provided information on the children\\'s physical health. ", "Ten children (14.2%) with 22q11.2DS were born earlier than 37 weeks, 12 (17.1%) had a history of epileptic fits, 34 (48.6%) of a heart problem and 2 (2.9%) of low calcium levels in early childhood. ", "None of the children were receiving medication for ADHD and one child was taking sodium valproate for epilepsy, along with fluoxetine and risperidone for a psychotic disorder.", "\n\nCoordination assessment (DCDQ/MABC-2) {#sec1-2}\n-------------------------------------\n\nThe DCDQ[@ref23] was completed by the primary carer. ", "It is designed to screen for motor coordination impairments in children 5--15 years old and is well validated.[@ref10] DCDQ scores range from 15 to 75, with discrimination thresholds that are dependent on age. ", "In general, lower scores indicate greater coordination problems. ", "The DCDQ assesses coordination either while moving or when using the hands. ", "It yields a total score as well as separate scores for three subscales: control during movement, fine motor/handwriting and general coordination scores. ", "Participants were categorised into those with and without indicative DCD based on DCDQ total score compared with the appropriate age threshold.", "\n\nThe DCDQ can be used to indicate whether a child is likely to have DCD, although additional assessments are necessary to establish the diagnosis. ", "The DCDQ is useful in establishing functional difficulties in everyday life because of coordination impairment, but reliable and valid motor assessments are required to accurately assess if motor performance is substantially below the level expected given the child\\'s chronological age and/or IQ. ", "To establish the extent to which the DCDQ captures DCD in this population, a subsample of nine children with 22q11.2DS (mean age 12.05, s.d.", " = 2.56, 6 (67%) male) who screened positive on the DCDQ were assessed by trained and experienced occupational therapists using the MABC-2.[@ref22] As the ECHO study recruits children with 22q11.2DS from all over the UK, not all families are able to travel to Cardiff for assessments. ", "Therefore, these nine families were selected based on proximity to Cardiff University. ", "Using the MABC-2, we obtained an overall score, and scores for the three subdomains: manual dexterity, aiming/catching and balance. ", "Scores on the MABC-2 below the fifth percentile generally indicate severe problems with motor coordination that require intervention. ", "Information from the MABC-2, and previously collected assessments were used to establish a research diagnosis of DCD based on DSM-5 criteria.[@ref24]\n\nParents also completed questions on three developmental milestones: age at which the child learned to ride a bike, do up their shoelaces and fasten buttons. ", "These milestones give a general measure of gross and fine motor skill development, complementing other information. ", "Sample sizes for milestone comparisons differ as only a proportion of participants had attained the milestones at the time of data collection.", "\n\nIQ assessment {#sec1-3}\n-------------\n\nFull-scale, verbal and performance IQ was obtained by administering the Wechsler Abbreviated Scale of Intelligence (WASI).[@ref25]\n\nCognitive function assessment {#sec1-4}\n-----------------------------\n\nCognitive function was assessed using tasks that are relevant for risk of psychopathology. ", "Processing speed (five- choice reaction time task), sustained attention (rapid visual processing task), spatial working memory (SWM), spatial planning (stockings of Cambridge) and visual attention (match to sample task) were assessed using the Cambridge Neuropsychological Test Automated Battery (CANTAB).[@ref26] Furthermore, the Wisconsin Card Sorting Test 32 (WCST)[@ref27] was also administered, where the number of perseverative errors measures the set shifting ability of executive function. ", "Non-perseverative errors are also reported. ", "All neurocognitive measures were standardised to have a mean of zero and a standard deviation of one, with the exception of IQ.", "\n\nPsychopathology assessment {#sec1-5}\n--------------------------\n\nThe Social Communication Questionnaire (SCQ),[@ref28] was used to screen for ASD symptoms. ", "Total scores can range from 0 to 39, and a score of 15 or greater is suggestive of putative ASD. ", "The SCQ yields a total score and three subscale scores (behaviour, social and communication). ", "The behaviour subscale measures repetitive and stereotyped behaviours, the social scale probes aspects of reciprocal social interaction such as eye gaze and social smiling, and the communication subscale asks about communication ability including social chat and gestures.", "\n\nThe semi-structured Child and Adolescent Psychiatric Assessment interview (CAPA)[@ref29] was conducted by trained psychologists with the primary caregiver and children themselves where possible and appropriate. ", "Interviews were audiotaped and DSM-5 diagnosis obtained during consensus meetings lead by a child and adolescent psychiatrist. ", "We did not consider diagnoses to be mutually exclusive. ", "Other psychiatric diagnoses and symptoms were obtained from the CAPA. ", "A symptom was counted as present if the individual had scored a two or three on the relevant CAPA question. ", "Anxiety symptoms included any symptom of generalised anxiety disorder, social phobia, specific phobia, separation anxiety, panic disorder with and without agoraphobia, agoraphobia and obsessive-compulsive disorder. ", "An individual with a research diagnosis of one of these anxiety disorders was classified as having 'any anxiety disorder'.", "\n\nAll assessments were carried out as part of the ongoing ECHO study, either in participants\\' homes or during visits to our laboratory at Cardiff University. ", "Sample sizes for analyses using the IQ, cognitive and symptom data differ, as complete data-sets were not available for some participants, because of the individuals having difficulties in completing measures.", "\n\nStatistical analysis {#sec1-6}\n--------------------\n\nStatistical analysis was carried out in R version 3.3.3 (<https://www.R-project.org/>). ", "Differences in group statistics scores between the 22q11.2DS and sibling groups were established using *t*-tests or Wilcoxon tests where appropriate with respect to normality. ", "DCD and mental disorder prevalence in children with 22q11.2DS compared with control siblings was examined using a chi-squared test. ", "Spearman correlations were used to assess associations between the DCDQ total score and age of attaining milestones. ", "Pearson correlation was used to test association between indicative DCD and MABC-2 score. ", "Associations between psychiatric symptoms (ADHD, SCQ score, any anxiety disorder), IQ and neurocognitive measures and indicative DCD were established using linear regression. ", "Predictors were entered hierarchically, age first, then gender and finally the psychopathology, cognition or IQ variable. ", "Sensitivity analyses were carried out to investigate whether comorbid factors (preterm birth, history of epileptic fits or heart problems) contributed to our findings. ", "We calculated rates of indicative DCD excluding the children with either preterm birth, or epileptic fits or heart problems. ", "Furthermore, we repeated the regression analyses including these conditions as covariates one at a time. ", "As levels of medication use (1.4%, 1/70) and history of hypocalcaemia (2.8%, 2/70) were low, these were not taken into consideration in these analyses.", "\n\nResults {#sec2}\n=======\n\nDescriptive statistics about the families are presented in [Table 1](#tab01){ref-type=\"table\"}. ", "Table 1Descriptive statistics of sampleCharacteristicsVariable*n*χ^2^ *(P)*Mother\\'s ethnic background, *n* (%)75European69 (92.0)Mixed5 (6.7)Unknown1 (1.3)Inheritance, *n* (%)70*De novo*58 (82.9)Inherited6 (8.6)Unknown6 (8.6)Highest maternal qualification, *n* (%)75High (university degree and/or other higher postgraduate qualification)18 (24.0)Middle (A-levels/highers/vocational training)34 (45.3)Low (O-levels/GCSEs)15 (20.0)No school leaving exams8 (10.7)Family Income, *n* (%)75≤£19 99919 (25.3)£20 000 - £39 99922 (29.3)£40 000 - £59 99916 (21.3)≥£60 00015 (20.0)Unknown3 (4.0)Age, years: mean (s.d.) ", "rangeProbands70Male11.10 (2.20) 6.20--14.87Female11.58 (2.31) 7.11--14.75Siblings32Male11.75 (1.58) 9.24--14.89Female11.39 (2.40) 6.18--14.88Gender, *n* (%)1.940 (0.163)Probands70Male41 (58.6)Female29 (41.4)Siblings32Males14 (43.8)Female18 (56.3)\n\nPrevalence of indicative DCD in 22q11.2DS {#sec2-1}\n-----------------------------------------\n\nChildren with 22q11.2DS had lower scores on the DCDQ (22q11.2DS group median 39.5; controls median 73.5, *P* \\< 0.001) and all subscales (control during movement *P* \\< 0.001, fine motor *P* \\< 0.001, general coordination *P* \\< 0.001), reflecting poorer coordination. ", "In total 57 children with 22q11.2DS met criteria for indicative DCD (81.4%) compared with two control siblings (6.3%) (χ^2^ = 50.9, *P* \\< 0.001, odds ratio (OR) = 36.7). ", "Similar numbers of males and females (*n* = 36, 87.8% of males, *n* = 21, 72.4% of females) with 22q11.2DS met criteria for indicative DCD (χ^2^ = 2.66, *P* = 0.103, OR = 2.05). ", "Males had a median score of 36 on the DCDQ *v.* 45 in females (*P* = 0.013).", "\n\nChildren with 22q11.2DS had a higher mean age of learning to ride a bike and do up buttons compared with control siblings (difference of 14.26 months for learning to ride a bike; 22.21 months for doing up buttons, [Table 2](#tab02){ref-type=\"table\"}). ", "Developmental coordination problems correlated with age of attainment of doing up buttons (*r* = −0.51, *P* \\< 0.001); but not tying shoelaces (*r* = −0.43, *P* = 0.060) or riding a bike (*r* = −0.27, *P* = 0.086); whereas no associations were found for the siblings. ", "Table 2Results of group comparisonsMeasure22q11.2 DS groupControl siblingsTotal,^a^ *n*χ^2^OR*tz*95% CI for differences in means/medians*P*22q11.2 DS groupControl siblingsIndicative developmental coordination disorder, *n*703250.936.7\\<0.001Positive572Negative1330Age motor milestones achieved, months:^a^ mean (s.d.)Learned to ride a bike75.88 (20.45)61.62 (18.66)40272.95(4.58 to 23.91)0.005Learned to do up buttons72.21 (24.74)50.00 (14.83)48254.78(12.95 to 31.47)\\<0.001Learned to tie shoelaces95.45 (29.97)82.17 (22.7)20241.63(−3.26 to 29.83)0.112Psychopathology, median (IQR)Attention--deficit hyperactivity disorder, symptom count5 (7.75)0 (0.00)70305.87(3 to 7)\\<0.001Putative autism-spectrum disorder score11 (11.00)1 (2.00)67326.94(7 to 12)\\<0.001Anxiety symptoms3 (9.75)0 (1.00)66293.79(1 to 3)\\<0.001IQ, mean (s.d.)Full-scale IQ70.75 (11.94)104.58 (15.71)7031−10.65(−40.22 to −27.44)\\<0.001Performance IQ74.55 (12.87)102.68 (17.46)6731−8.02(−35.19 to −21.06)\\<0.001Verbal IQ70.97 (12.73)105.58 (15.68)6831−10.78(−41.07 to −28.15)\\<0.001Cognitive processing,^b^ mean (s.d.)Processing speed (five-choice reaction time)−0.18 (1.16)0.36 (0.38)6131−3.30(−0.86 to −0.21)0.001Sustained attention (rapid visual processing)−0.26 (1.10)0.47 (0.56)5530−4.04(−1.08 to −0.37)\\<0.001Visual attention (match to sample)−0.23 (1.03)0.45 (0.61)6031−3.81(−1.03 to −0.32)\\<0.001Spatial planning−0.27 (0.99)0.52 (0.81)5729−3.96(−1.19 to −0.39)\\<0.001Spatial working memory−0.34 (0.92)0.72 (0.77)6731−5.96(−1.41 to −0.71)\\<0.001Set shifting ability0.06 (0.82)−0.13 (1.32)66300.76(−0.33 to 0.73)0.450Errors on the Wisconsin Card Sorting Task−0.32 (0.99)0.70 (0.60)6630−6.25(−1.34 to −0.70)\\<0.001[^1][^2][^3]\n\nOf the nine children with 22q11.2DS assessed with the MABC-2 eight had overall scores below the fifth percentile. ", "Of the nine, three had scores below the fifth percentile on the aiming/catching domain, four had scores below the fifth percentile in the manual dexterity domain and five had scores below the fifth percentile in the balance domain. ", "Performance on the individual domains was variable, however, children did not always score below the fifth percentile in all domains, rather, they frequently performed markedly poorly in one or two domains and slightly better in the third domain. ", "Of the eight children who had overall scores below the fifth percentile, three scored below the fifth percentile in one domain, three in two domains and one in three domains. ", "DCDQ total score was not associated with MABC-2 overall standard score, (*r* = 0.63, *P* = 0.070).", "\n\nAssociations between indicative DCD and psychopathology {#sec2-2}\n-------------------------------------------------------\n\nIn total, 32.9% (23/70) of children with 22q11.2DS met criteria for ADHD, compared with 3.3% (1/30) of siblings; 29.0% (20/69) of children with 22q11.2DS met criteria for any anxiety disorder, compared with 6.7% (2/30) of siblings and 34.3% (23/67) of children with 22q11.2DS screened positive for putative ASD whereas no siblings did (0/32). ", "Similarly, the rates of ADHD, putative ASD and anxiety symptoms were higher in children with 22q11.2DS than siblings ([Table 2](#tab02){ref-type=\"table\"}).", "\n\nOf the children with indicative DCD and complete diagnosis data for ASD, ADHD and anxiety, 69.8% (37/53) had at least one psychiatric disorder compared with 15.4% (2/13) of individuals without indicative DCD (*P* \\< 0.001, OR = 5.84). [", "Fig. ", "1](#fig01){ref-type=\"fig\"} shows the high rate of co-occurrence between motor dysfunction and psychopathology. ", "In total, 30.2% (16/53) of individuals with indicative DCD met criteria for at least two, and 11.3% (6/53) for all three disorders. ", "Of children with 22q11.2DS and indicative DCD, 38% (20/53) met the criteria for ADHD, compared with 0% (0/13) of children without indicative DCD (*P* = 0.008, OR = 3.47). ", "Percentages for putative ASD were 41.5% (22/53) *v.* 7.7% (1/13) (*P* = 0.022, OR = 2.46) and for anxiety disorder 32.1% (17/53) *v.* 15.4% (2/13) (*P* = 0.234, OR = 1.7) in children with and without indicative DCD, respectively. ", "All (100%, 20/20) children with ADHD had indicative DCD, as did 89.5% (17/19) of children with any anxiety disorder and 95.7% (22/23) of children with putative ASD. ", "Fig. ", "1Comorbidity in the participants with 22q11.2 deletion syndrome.", "ASD, autism-spectrum disorder; ADHD, attention-deficit hyperactivity disorder; DCD, developmental coordination disorder.", "\n\nThe DCDQ total score was associated with ADHD symptom count (*P* \\< 0.001), but not age (*P* = 0.497) or gender (*P* = 0.374) and this association was driven by inattentive (*P* \\< 0.001) but not hyperactivity symptoms (*P* = 0.051). ", "Scores on all three subscales of the DCDQ were associated with ADHD symptoms (fine motor skill *P* \\< 0.001, control during movement *P* \\< 0.001, general coordination *P* \\< 0.001).", "\n\nDCDQ total score was also associated with putative ASD score (*P* \\< 0.001), but not age (*P* = 0.304) or gender (*P* = 0.188). ", "The control during movement (*P* \\< 0.001), general coordination (*P* = 0.003), as well as fine motor (*P* \\< 0.001) subscales were all associated with putative ASD score. ", "Further analysis showed that all three subtests of the putative ASD score (behaviour *P* \\< 0.001, communication *P* \\< 0.001, social *P* = 0.026) predicted DCDQ total score.", "\n\nDCDQ total score was furthermore associated with anxiety symptoms (*P* \\< 0.001), along with gender (*P* = 0.041), with boys having lower DCDQ scores, but not age (*P* = 0.341). ", "Scores on the fine motor skill subscale were associated with anxiety symptoms (*P* = 0.004) and gender (*P* = 0.005). ", "The scores on the general coordination subscale were also associated with anxiety symptoms (*P* = 0.001) and gender (*P* = 0.033). ", "Anxiety symptoms (*P* = 0.004) but not gender predicted the control during movement score.", "\n\nAssociation between indicative DCD and IQ {#sec2-3}\n-----------------------------------------\n\nMean full-scale IQ of the siblings was higher than in children with 22q11.2DS ([Table 2](#tab02){ref-type=\"table\"}). ", "Of the children with 22q11.2DS with data for full data for IQ (*n* = 67), 4 (5.97%) had moderate intellectual disability (IQ \\< 55), 29 (43.3%) mild intellectual disability (IQ 55--70), 24 (35.8%) had an IQ in the borderline range (71--85) and 10 (14.9%) an average IQ (86--115). ", "This is in comparison with one (3.1%) sibling with mild intellectual disability. ", "Indicative DCD was associated with full-scale IQ in children with 22q11.2DS (*P* = 0.038).", "\n\nRelationships between indicative DCD and cognitive tasks {#sec2-4}\n--------------------------------------------------------\n\nChildren with 22q11.2DS performed more poorly than siblings on the processing speed, sustained attention, visual attention, spatial planning and executive functioning tasks ([Table 2](#tab02){ref-type=\"table\"}). ", "In children with 22q11.2DS, DCDQ score was not related to set shifting ability (perseverative errors *P* = 0.444), or total errors (non-perseverative errors *P* = 0.449) on the WCST, nor the processing speed (reaction time *P* = 0.424), spatial planning (problems solved in minimum moves *P* = 0.765), and SWM (number of errors, *P* = 0.733) tasks of the CANTAB. ", "However, an association was found with poorer performance on visual (*P* = 0.038) as well as sustained attention (*P* = 0.006).", "\n\nSensitivity analysis of comorbid medical aspects {#sec2-5}\n------------------------------------------------\n\nExcluding children with 22q11.2DS with preterm birth, a history of heart problems, or epileptic fits did not affect the rates of indicated DCD, nor any of the links between the DCDQ and psychiatric disorder. ", "However, with regards to neurocognitive function, including epileptic fits or heart problems as a covariate in the analysis reduced the associations between DCDQ score and both full-scale IQ (*P* = 0.056 or *P* = 0.062, respectively) as well as visual attention (*P* = 0.062 and *P* = 0.055, respectively), but not sustained attention (*P* = 0.006 and *P* = 0.009, respectively). ", "Preterm birth did not affect the associations between DCDQ score and the neurocognitive measures.", "\n\nDiscussion {#sec3}\n==========\n\nDCD prevalence {#sec3-1}\n--------------\n\nThe findings indicate that serious motor coordination problems are common in 22q11.2DS, with over 80% of our sample of deletion carriers meeting criteria for indicative DCD. ", "Furthermore, indicative DCD indexed risk of ADHD, ASD and anxiety disorder as well as poorer sustained attention. ", "The prevalence of indicative DCD in our sample differed between males and females with 22q11.2DS, conforming to the pattern of the male preponderance reported in the general population.[@ref30] This contrasts with other disorders such as ADHD, where the prevalence seems to be equal between the genders in 22q11.2DS.[@ref14] DCDQ total score was correlated with age of attainment of developmental milestones providing further support for the validity of the DCDQ in this population. ", "Furthermore, 88.9% of children (eight of nine) who had diagnostic assessments in the occupational therapy clinic, using the gold-standard MABC-2, met criteria for DCD. ", "This provides additional support for using the DCDQ as a proxy measure of developmental coordination dysfunction. ", "Scores on the MABC-2 below the fifth percentile generally indicate problems with motor coordination that require intervention. ", "However, performance on individual domains of the MABC-2 was variable, with no single domain emerging as consistently affected. ", "As such, this evidence suggests that much like the psychiatric and cognitive phenotype in 22q11.2DS, there is also considerable variability in the motor phenotype.", "\n\nPsychopathology {#sec3-2}\n---------------\n\nThe majority of children with indicative DCD (70%) were found to have at least one psychiatric disorder, including high rates of ADHD, anxiety disorder and ASD symptoms. ", "Indicative DCD was found to be related to ADHD, with children with more inattentive symptoms having greater difficulties with motor coordination. ", "Studies in children with ADHD not selected for the presence of a copy number variant have indicated they are more likely to have impairments in both gross and fine motor skills, particularly if the child has ADHD of the inattentive subtype. ", "Our previously published work comparing children with ADHD with and without 22q11.2DS has found that the deletion is associated with a considerably higher rate of the inattentive subtype as well as a lower rate of hyperactive-impulsive symptoms. ", "We have suggested this may contribute to underdiagnosis of ADHD in children with the deletion.[@ref31] We also found that children with 22q11.2DS and higher numbers of ASD symptoms had poorer coordination, a finding that is similar to studies of children with DCD not selected for a chromosomal disorder.[@ref32] Our finding that children with indicative DCD had higher levels of anxiety symptoms is in line with other research showing links between anxiety and DCD.[@ref2] Excessive worry is a well-documented phenomenon in 22q11.2DS,[@ref13]^,^[@ref14] however, it is not clear whether anxiety and DCD share biological pathways, or whether DCD contributes to anxiety as a result of worries about performance. ", "Such worries may particularly affect children in social settings, for fear of humiliation and social exclusion.[@ref2] Future longitudinal studies investigating the developmental links between motor function and psychopathology can contribute to better understanding of these issues.", "\n\nDCD and IQ and other neurocognitive functions {#sec3-3}\n---------------------------------------------\n\nIndicative DCD was related to IQ in children with 22q11.2DS. ", "This suggests that the observed coordination difficulties seen in this population can be partially explained by a general deficit in IQ. ", "This agrees with studies of children with DCD not selected for having a chromosomal disorder[@ref9] and suggests that within an intellectually disabled population, level of impairment is associated with motor dysfunction. ", "This is in contrast to previous reports by our group on IQ and psychopathology in children with 22q11.2DS,[@ref13] where we found no association.", "\n\nIndicative DCD was also related to visual attention ability as measured by the match to sample task and sustained attention as measured by the rapid visual processing task of the CANTAB. ", "Together with the here reported association between motor coordination difficulties and the inattentive subtype of ADHD, this suggests common processes underlying coordination and attention. ", "However, it is unclear if coordination is impaired as a result of an inability to direct attention appropriately, or if the same brain processes are required for good coordination and attention.", "\n\nThe associations between DCDQ score and visual attention were reduced, however, when epileptic fits or a history of heart problems were included in the analysis as covariates. ", "This indicates that other medical aspects associated with 22q11.2DS can contribute to specific interrelationships and underlines the complex aetiology of the condition. ", "The link between sustained attention and the DCDQ remained, however, unchanged by these medical aspects. ", "Impairments in sustained attention[@ref33] as well as motor coordination[@ref34] have previously been reported in schizophrenia. ", "The current sample is too young to investigate the links with schizophrenia risk; however, this represents an interesting avenue for future research.", "\n\nStrengths and limitations {#sec3-4}\n-------------------------\n\nTo our knowledge, this is the first study to examine the prevalence of DCD and its relationship with IQ, and other neurocognition and neurodevelopmental symptoms in 22q11.2DS. ", "The relatively large sample and availability of sibling controls for comparisons are additional strengths. ", "Also, the availability of medical information allowed us to conduct sensitivity analysis and show that the high rates of indicated DCD could not be explained by preterm birth, a history of epileptic fits or heart problems. ", "A limitation was the small subset of individuals evaluated using the MABC-2.", "\n\nAs most coordination and psychopathology data was collected through home visits a full neurological assessment was not possible, therefore we cannot rule out other contributing conditions such as hyper-/hypotonia that can affect coordination. ", "Finally, both the DCDQ and MABC-2 are measures of overall coordination, and do not allow insights into underlying sensorimotor and visual information processing deficits.", "\n\nTheoretical implications {#sec3-5}\n------------------------\n\nThe high rate of indicative DCD in 22q11.2DS is a novel finding and our occupational therapy assessments in a subsample indicate that the majority of children who screen positive do meet diagnostic criteria for DCD. ", "The presence of coordination deficits raises the question of the changes in neural substrates that result from 22q11.2 deletion. ", "The coordination deficits may be because of disruption of the cerebellum, which has been implicated in both motor and cognitive syndromes,[@ref35] and shows consistent abnormalities in 22q11.2DS.[@ref36]^,^[@ref37] Cerebellar dysfunction has also been repeatedly observed in neurodevelopmental disorders, including ASD and ADHD. ", "Other biological mechanisms that could be involved include striatal dysfunction, as increased volume of the striatum[@ref38]^--^[@ref40] and calcification of the basal ganglia[@ref40]^,^[@ref41] have been observed in 22q11.2DS. ", "In addition, the 22q11.2 deletion is associated with early-onset Parkinsonism.[@ref42]^,^[@ref43] The high comorbidity between anxiety disorder, ADHD and ASD may also point towards common neural disruptions. ", "The precise origin of the coordination impairments is not yet known and it is unclear whether motor coordination problems are a common feature of other copy number variant disorders (for example, duplication of 22q11.2, or deletion/duplication of 1q21.1 or 16p11.2). ", "More generally, coordination difficulties may index a general neurodevelopmental impairment in frontostriatal and related circuitry that may reflect risk of other psychopathologies. ", "Future studies should use detailed assessment of fundamental motor control processes, using kinematic assessment, for example. ", "This would allow investigation of deficits of these fundamental processes and may help identify a cause of coordination difficulties.", "\n\nClinical implications {#sec3-6}\n---------------------\n\nThe immediate clinical implication of our findings is that there should be an increased vigilance for motor impairments in children with 22q11.2DS so that appropriate support measures can be introduced as early as possible. ", "In addition, DCD is not usually diagnosed or considered in those with intellectual disability, as the motor deficit must be demonstrated to be in excess of what would be expected for a given IQ, but our findings indicate that the majority of children in this study are affected by potentially serious motor problems. ", "A formal diagnosis of DCD may facilitate access to appropriate support and interventions.", "\n\nWe are extremely grateful to all the families that took part in this study, and to our funding bodies. ", "We would like to thank Hayley Moss, Dr Samuel Chawner, Dr Jane Scourfield and Katy Hamana for contributing to the study.", "\n\nThis research was specifically funded by a Medical Research Council Doctoral Training Grant (MR/K51347/1), the National Institute of Mental Health (NIMH 5UO1MH101724), the Wellcome Trust, Institutional Strategic Support Fund (ISSF), the Waterloo Foundation (code 918-1234) and the Baily Thomas Charitable Fund (2315/1).", "\n\n[^1]: 22q11.2 DS, 22q11.2 deletion syndrome; IQR, interquartile range.", "\n\n[^2]: a\\. Total *n* given for age motor milestone achieved is those who had achieve this milestone at the time of data collection.", "\n\n[^3]: b\\. For spatial planning: stockings of Cambridge -- problems solved in minimum moves; set shifting ability: perseverative errors on the Wisconsin Card Sorting Task (WCST); errors on the WCST: non-perseverative errors.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0.011914217633042097, 0, 0.006622516556291391, 0.008658008658008658, 0.009433962264150943, 0, 0.0072992700729927005, 0, 0.0111731843575419, 0.006944444444444444, 0.010135135135135136, 0.006024096385542169, 0.007518796992481203, 0.00911854103343465, 0.004424778761061947, 0.011976047904191617, 0.005263157894736842, 0, 0, 0.0047169811320754715, 0.010416666666666666, 0.014925373134328358, 0, 0, 0.0037313432835820895, 0.010869565217391304, 0, 0, 0.014084507042253521, 0.004761904761904762, 0, 0.013157894736842105, 0, 0.013986013986013986, 0.013513513513513514, 0.003355704697986577, 0.02142857142857143, 0.007017543859649123, 0.011494252873563218, 0, 0, 0.006493506493506494, 0, 0, 0.0029850746268656717, 0.008032128514056224, 0, 0, 0.012658227848101266, 0.010309278350515464, 0.010638297872340425, 0, 0.004694835680751174, 0, 0, 0.014285714285714285, 0.009259259259259259, 0.004651162790697674, 0, 0.012578616352201259, 0, 0.006993006993006993, 0, 0.007575757575757576, 0.008547008547008548, 0.011111111111111112, 0.011428571428571429, 0, 0, 0.008, 0, 0, 0, 0.006568144499178982, 0.0032679738562091504, 0.005847953216374269, 0.0056179775280898875, 0, 0, 0, 0.00441257584114727, 0, 0, 0, 0, 0.002136752136752137, 0, 0.012605042016806723, 0, 0, 0.007575757575757576, 0.011695906432748537, 0.004347826086956522, 0.012121212121212121, 0, 0, 0.008333333333333333, 0, 0, 0, 0, 0.005747126436781609, 0, 0, 0, 0, 0.004672897196261682, 0, 0, 0.011111111111111112, 0.0029498525073746312, 0.005509641873278237, 0, 0.006269592476489028, 0, 0, 0.008064516129032258, 0.008771929824561403, 0.006211180124223602, 0.005952380952380952, 0.008771929824561403, 0, 0, 0, 0.004651162790697674, 0.00684931506849315, 0, 0, 0.012658227848101266, 0.0035335689045936395, 0.012048192771084338, 0, 0.009009009009009009, 0.006896551724137931, 0.010582010582010581, 0, 0, 0, 0, 0.009523809523809525, 0.015503875968992248, 0, 0.004149377593360996, 0, 0.004484304932735426, 0, 0, 0.0058823529411764705, 0.007168458781362007, 0, 0.0121580547112462, 0.017543859649122806, 0.014423076923076924, 0, 0, 0, 0, 0, 0.0031545741324921135, 0.011235955056179775, 0, 0.03333333333333333, 0.021806853582554516, 0.013888888888888888, 0, 0.0044444444444444444, 0 ]
0.004896
5
[ "A survey of neurologists' views on epilepsy surgery and medically refractory epilepsy.", "\nThere is a 20-year delay between the diagnosis of epilepsy and surgical treatment. ", "The aim of this study was to describe the different views held by neurologists regarding refractory epilepsy that may contribute to the delay in referring patients for epilepsy surgery. ", "Neurologists in Michigan were mailed a 10-item survey inquiring about their definition of medically refractory epilepsy and their decision-making process in referring patients for epilepsy surgery. ", "Eighty-four neurologists responded (20%). ", "The majority defined medically refractory epilepsy as failure of three monotherapy antiepileptic drug (AEDs) trials and at least two polytherapy trials. ", "Nineteen percent responded that all approved AEDs had to fail before a patient could be defined as medically refractory. ", "Eighty-two percent of the respondents had referred patients for epilepsy surgery. ", "Almost 50% were not satisfied with the level of communication from epilepsy centers. ", "One-third reported serious complications resulting from surgery. ", "These findings suggest that further education and improved communication from comprehensive epilepsy centers may shorten the time to referral and ultimately improve the lives of patients with epilepsy." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5
[ "Christine Dranzoa\n\nChristine Dranzoa is a Ugandan university professor, academic administrator, biologist, terrestrial ecologist and community leader. ", "She is the current Vice Chancellor of Muni University, one of the six public universities in Uganda.", "\n\nBackground and education\nShe was born in 1967, in what was known as Moyo District at the time. ", "Today, her home district is known as Adjumani District.", "\nChristine Dranzoa holds the degree of Bachelor of Science (BSc) in Zoology, obtained in 1987, from Makerere University, the oldest university in East Africa. ", "She also holds the degree of Master of Science (MSc), in Zoology, obtained in 1991, also from Makerere University. ", "Her degree of Doctor of Philosophy (PhD) in Biology was obtained from the same university in 1997. ", "She also holds about half a dozen certificates in management, conservation, and project planning from Ugandan and International institutions.", "\n\nWork experience\nIn 1992 Christine Dranzoa joined Makerere University as a Lecturer in the Faculty of Veterinary Medicine. ", "She served as the head of the Wildlife Section in the Department of Veterinary Anatomy from 1992 until 1996. ", "From 1997 until 2005, she served as the head of the Department of Wildlife and Animal Resources Management, at the Faculty of Veterinary Medicine, a department she had co-founded with her colleagues.", "\n\nIn 2005, the joined the university administration at Makerere, when she was appointed Deputy Director of the School of Postgraduate Studies at the university, serving in that capacity from 2005 until 2010. ", "In 2010, Dr. Dranzoa was appointed to lead a three-person task-force to prepare for the creation of Muni University, the sixth public university in Uganda. ", "In January 2012, when the university became operational, Professor Dranzoa became the founding Vice Chancellor of the institution.", "\n\nOther responsibilities\nDr. Dranzoa serves as the Honorary Secretary of the Forum for African Women Educationalists (FAWE), a pan-African Non-Governmental Organisation (NGO), founded in 1992, that is active in 32 African countries. ", "FAWE aims to empower girls and women through gender-responsive education. ", "Its members include human rights activists, gender specialists, researchers, education policy-makers, university vice-chancellors and ministers of education. ", "The organisation maintains its headquarters in Nairobi, Kenya, and has regional offices in Dakar, Senegal.", "\n\nIn 2006, she co-founded Nile Women Initiative, a non-profit, Non-government organization, which aims to address the gender disparities affecting women in the West Nile sub-region of Uganda. ", "She serves as the Chairperson of the NGO.", "\n\nProfessor Dranzoa has published widely in professional journals and has written chapters in scientific books pertaining to her fields of specialization. ", "Her publications are detailed in her professional resume.", "\n\nSee also\n Muni University \n Ugandan university leaders\n West Nile sub-region\n\nReferences\n\nExternal links\n Website of Muni University\n Website of Nile Women Initiative\n\nCategory:Living people\nCategory:Makerere University alumni\nCategory:People from Adjumani District\nCategory:Madi people\nCategory:Ugandan Christians\nCategory:Vice-chancellors of universities in Uganda\nCategory:1967 births\nCategory:Adjumani District\nCategory:Ugandan women academics\nCategory:People from West Nile sub-region\nCategory:Fellows of Uganda National Academy of Sciences" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.019867549668874173, 0.01, 0.010309278350515464, 0, 0.025157232704402517, 0.017391304347826087, 0.010101010101010102, 0.0070921985815602835, 0.016, 0.01834862385321101, 0.010050251256281407, 0.014423076923076924, 0.01282051282051282, 0.007692307692307693, 0.008583690987124463, 0, 0, 0, 0.010416666666666666, 0.023809523809523808, 0.0064516129032258064, 0, 0.010968921389396709 ]
0.010412
5
[ "#!", "/bin/bash\n\n# prerequisities: python-coverage\n\nOUTPUT=coverage_report\n\nif [ ! ", "-d $OUTPUT ]; then mkdir $OUTPUT; fi\nrm $OUTPUT/*,cover\npython-coverage -x compile_only.py\npython-coverage -a -o /usr -d coverage_report\npython-coverage -r -o /usr -d coverage_report\n\n" ]
{ "pile_set_name": "Github" }
[ 0, 0, 0 ]
0
5
[ "Q:\n\nHow to neatly \"build\" large sql queries made up of a large number of variables\n\nFirst off, Sorry if this has already been asked.", "\nI looked around but couldn't find any answers for it, Or maybe I was searching using the wrong words.", "\nI have a long SQL query that I need to execute using PHP. ", "It requires a large number of variables to be updated.", "\nThis is what I mean:\n$user = json_decode($stringWithJson);\n\n$reallyLongSqlQuery = \"UPDATE `profile` SET `userid` = '{$user->userid}', `name` = '{$user->username}', `lastlogoff` = '{$user->userlastlogoff}', `profileurl` = '{$user->userprofileurl}', `avatar` = '{$user->useravatar}', `avatarmedium` = '{$user->useravatarmedium}', `useravatarfull` = '{$user->useravatarfull}', `state` = '{$user->userprofilestate}', `realname` = '{$user->userrealname}', `timecreated` = '{$user->userprofilecreatedunix}' WHERE `id` = 1;\";\n\nmysql_query($reallyLongSqlQuery);\n\nThis works fine and all, but It's a lot of code for a single line. ", "Is there any way I can tidy this up?", "\nExample: \n$reallyLongSqlQuery = \"UPDATE `profile` SET `userid` = '\" . ", "$user->userid . ", "\n \"', `name` = '\" . ", "$user->username . ", "\n \"', `lastlogoff` = '\" . ", "$user->userlastlogoff . ", "\n \"', `profileurl` = '\" . ", "$user->userprofileurl . ", "\n \"', `avatar` = '\" . ", "$user->useravatar . ", " \n \"', `avatarmedium` = '\" . ", "$user->useravatarmedium . ", "\n \"', `useravatarfull` = '\" . ", "$user->useravatarfull . ", "\n \"', `state` = '\" . ", "$user->userprofilestate . ", "\n \"', `realname` = '\" . ", "$user->userrealname . ", "\n \"', `timecreated` = '\" . ", "$user->userprofilecreatedunix . ", "\n \"' WHERE `id` = 1;\";\n\nThis doesn't fly off the screen in one giant line, but it looks even messier in my opinion. ", " \nAnother way I've though of is predefining all the variables beforehand, Like so:\n$userid = $user->userid;\n$username = $user->username;\n$userlastlogoff = $user->userlastlogoff;\n$userprofileurl = $user->userprofileurl;\n$useravatar = $user->useravatar;\n$useravatarmedium = $user->useravatarmedium;\n$useravatarfull = $user->useravatarfull;\n$userprofilestate = $user->userprofilestate;\n$userrealname = $user->userrealname;\n$userprofilecreatedunix = $user->userprofilecreatedunix;\n\n$reallyLongSqlQuery = \"UPDATE `profile` SET `userid` = '{$userid}', `name` = '{$username}', `lastlogoff` = '{$userlastlogoff}', `profileurl` = '{$userprofileurl}', `avatar` = '{$useravatar}', `avatarmedium` = '{$useravatarmedium}', `useravatarfull` = '{$useravatarfull}', `state` = '{$userprofilestate}', `realname` = '{$userrealname}', `timecreated` = '{$userprofilecreatedunix}' WHERE `id` = 1;\";\n\nOnce again, This works fine but there must be an easier (and tidier) way to do it.", "\nAnyone have a solution?", "\n\nA:\n\nOf course you should be using bindings, not a plain query string, but an array can be helpful in your case:\n$data['userid'] = $user->userid;\n$data['name'] = $user->username;\n$data['lastlogoff'] = $user->userlastlogoff;\n$data['profileurl'] = $user->userprofileurl;\n$data['avatar'] = $user->useravatar; \n$data['avatarmedium'] = $user->useravatarmedium;\n$data['useravatarfull'] = $user->useravatarfull;\n$data['state'] = $user->userprofilestate;\n$data['realname'] = $user->userrealname;\n$data['timecreated'] = $user->userprofilecreatedunix;\n\nforeach ($data as $column => $value)\n{\n $updates[] = \"$column = '$value' \"; // value should be escaped!", "\n}\n\n$reallyLongSqlQuery = 'UPDATE profile SET '.", "\n implode(',',$updates).", "\n ' WHERE id = 1';\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.01694915254237288, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.020833333333333332, 0, 0 ]
0.001145
5
[ "Can you murder a robot? ", "By Jane Wakefield\n\nTechnology reporter Published duration 17 March 2019\n\nimage copyright Ryerson University image caption The road can be a lonely place when you are a little robot\n\nBack in 2015, a hitchhiker was murdered on the streets of Philadelphia.", "\n\nIt was no ordinary crime. ", "The hitchhiker in question was a little robot called Hitchbot. ", "The \"death\" raised an interesting question about human-robot relationship - not so much whether we can trust robots but whether the robots can trust us.", "\n\nThe answer, it seems, was no.", "\n\nHitchbot has now been rebuilt, at Ryerson University, in Toronto, where it was conceived.", "\n\nIts story is perhaps the ultimate tale of robot destruction, made all the more poignant by the fact that it was designed to be childlike and entirely non-threatening.", "\n\nWith pool noodles for arms and legs, a transparent cake container for a head, a white bucket as a body, and resting on a child's car seat to allow anyone picking it up to be able to transport it safely, it was cartoon-like. ", "If a child designed a robot, it would probably look like Hitchbot.", "\n\nThe team deliberately made it on the cheap - describing its look as \"yard-sale chic\". ", "They were aware that it may come to harm.", "\n\nIn order to qualify as a robot, it had to have some basic electronics - including a Global Positioning System (GPS) receiver to track its journey, movements in its arms, and software to allow it to communicate when asked questions. ", "It could also smile and wink.", "\n\nAnd, of course, it could move its thumb into a hitch position.", "\n\n\"It was extremely important that people would trust it and want to help it out which is why we made it the size of a child,\" said Dr Frauke Zeller, who led the team with her husband, Prof David Smith.", "\n\nThe adventure started well, with Hitchbot being picked up by an elderly couple and taken on a camping trip in Halifax, Nova Scotia, followed by a sightseeing tour with a group of young men. ", "Next, it was a guest of honour at a First Nation powwow, where it was given a name that translates to \"Iron Woman\", assigning it a gender.", "\n\nThe robot picked up thousands of fans along the way, many travelling miles to be the next person to give it a lift.", "\n\nSometimes, the robot's GPS location had to be disabled so that those who took it home wouldn't be mobbed outside their houses.", "\n\nimage copyright Hitchbot image caption Hitchbot was given a First Nation name, which translates to Iron Woman, assigning it a gender for the first time\n\nThe robot certainly appealed and the team behind it were swamped with international press enquiries from the outset.", "\n\nHitchbot was given its own social media accounts on Twitter, Facebook and Instagram and became an instant hit, gaining thousands of followers.", "\n\n\"People began to decorate Hitchbot with bracelets and other jewellery. ", "This little robot with its simple design triggered so much creativity in people. ", "And that was one of the biggest takeaways of the experiment, that we should stop telling people what to do with technology,\" Dr Zeller said.", "\n\nBut Hitchbot's adventure was about to come to an abrupt end.", "\n\n\"One day we received images of Hitchbot lying in the street with its arms and legs ripped off and its head missing,\" Dr Zeller said.", "\n\n\"It affected thousands of people worldwide. ", "Hitchbot had become an important symbol of trust. ", "It was very sad and it hit us and the whole team more than I would have expected.\"", "\n\nimage caption The reborn Hitchbot shares a biscuit\n\nNow, the team behind it - from Ryerson and McMaster Universities - and have rebuilt Hitchbot, even though its head was never found. ", "They missed having it around and had been inundated with requests for Hitchbot 2.0, although they have no plans for another road trip.", "\n\nBBC News joined Prof Smith and Dr Zeller to take Hitchbot 2.0 on one of its first outings, to the safety of a cafe next to the university. ", "The robot was instantly recognised by passers-by, many of whom stopped to chat and take a Hitchbot selfie. ", "All of them seemed overjoyed to see the robot back in one piece.", "\n\nThe Ryerson/McMaster team is also working with Softbank's Pepper, an archetypal big-eyed childlike robot, on another test of the trust relationship with humans. ", "Pepper will be used to talk with patients about skin cancer prevention. ", "The theory is that patients will communicate more openly with Pepper than they would to a human carer and the robot is part of an experiment to see if robots can be used for the promotion of healthy behaviour.", "\n\nBeating up bots\n\nimage copyright Innvo Labs image caption Could you harm a dinosaur robot?", "\n\nHitchbot is not the first robot to meet a violent end.", "\n\nDr Kate Darling, of Massachusetts Institute of Technology (MIT), encouraged people to hit dinosaur robots with a mallet, in an workshop designed to test just how nasty we could be to a machine.", "\n\nShe also conducted an experiment with small bug-like robots.", "\n\nMost people struggled to hurt the bots, found Dr Darling.", "\n\n\"There was a correlation between how empathetic people were and how long it took them to hit a robot,\" she told BBC News, at her lab in Boston.", "\n\n\"What does it say about you as a person if you are willing to be cruel to a robot. ", "Is it morally disturbing to beat up something that reacts in a very lifelike way?\" ", "she asked.", "\n\nThe reaction of most people was to protect and care for the robots.", "\n\n\"One woman was so distressed that she removed the robot's batteries so that it couldn't feel pain,\" Dr Darling said.", "\n\nProf Rosalind Picard, who heads up the Affective Computing Lab, also based at the Massachusetts Institute of Technology, thinks it comes down to human nature.", "\n\nimage copyright Ryerson University image caption Perhaps the most revealing image of Hitchbot's travels was this one, where its temporary \"owner\" decided it would need dinner and assumed batteries would be a good robot treat. ", "The dog is not so sure\n\n\"We are made for relationships, even us engineers, and that is such a powerful thing that we fit machines into that,\" she said.", "\n\nBut while it is important that robots understand human emotions because it will be their job to serve us, it might not be a good idea to anthropomorphise the machines.", "\n\n\"We are at a pivotal point where we can choose as a society that we are not going to mislead people into thinking these machines are more human than they are,\" Prof Picard told BBC News, at her lab.", "\n\n\"We know that these machines are nowhere near the capabilities of humans. ", "They can fake it for the moment of an interview and they can look lifelike and say the right thing in particular situations.\"", "\n\n\"A robot can be shown a picture of a face that is smiling but it doesn't know what it feels like to be happy.", "\n\n\"It can be given examples of situations that make people smile but it doesn't understand that it might be a smile of pain.\"", "\n\nimage copyright MIT image caption Prof Picard admits even engineers become attached to the machines they work with\n\nBut Prof Picard admitted it was hard not to develop feelings for the machines we surrounded ourselves with and confessed that even she had fallen into that trap, treating her first car \"as if it had a personality\".", "\n\n\"I blinked back a tear when I sold it, which was ridiculous,\" she said.", "\n\nAt her lab, engineers design robots that can help humans but do not necessarily look human.", "\n\nOne project is looking at robots that could work in hospitals as a companion to children when their parents or a nurse is not available. ", "And they are working on a robot that will be able to teach children but also show them how to cope with not knowing things.", "\n\nWe may have to limit our emotional response to robots but it is important that the robots understand ours, according to Prof Picard.", "\n\n\"If the robot does something that annoys you, then the machine should see that you are irritated and - like your dog - do the equivalent of putting down its tail, put its ears back and look like it made a mistake,\" she said.", "\n\nKiller robots\n\nimage copyright Getty Images image caption War robots are unlikely to be actual robots and instead will look like conventional weapons but with autonomy\n\nRoboticist Prof Noel Sharkey also thinks that we need to get over our obsession with treating machines as if they were human.", "\n\n\"People perceive robots as something between an animate and an inanimate object and it has to do with our in-built anthropomorphism,\" he told BBC News.", "\n\n\"If objects move in a certain way, we think that they are thinking.", "\n\n\"What I try and do is stop people using these dumb analogies and human words for everything.", "\n\n\"It is about time we developed our own scientific language.\"", "\n\nTo prove his point, at one conference he attended recently he picked up an extremely cute robotic seal, designed for elderly care, and started banging its head against a table.", "\n\n\"People were calling me a monster,\" he said.", "\n\nActually, Prof Sharkey is much more of a pacifist - and leads the campaign to ban killer robots, something he thinks is a far more pressing ethical issue in modern-day robotics.", "\n\n\"These are not human-looking robots,\" he said.", "\n\n\"I'm not talking about Terminators with a machine gun.", "\n\n\"These weapons look like conventional weapons but are designed so that the machine selects its own target, which to me is against human dignity.\"", "\n\nProf Sharkey listed some of the current projects he thought were crossing the line into unethical territory:\n\nHarpy - an Israeli weapons system designed to attack radar signals, with a high-explosive warhead. ", "If the signal is not Israeli, then it dive-bombs\n\nan autonomous super-tank, being developed by the Russian army\n\nan autonomous gun designed by Kalashnikov" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0.007905138339920948, 0, 0.015873015873015872, 0, 0, 0.02197802197802198, 0, 0, 0.015151515151515152, 0, 0, 0.004273504273504274, 0, 0, 0.009900990099009901, 0.005208333333333333, 0.007246376811594203, 0, 0.0078125, 0.007380073800738007, 0.006944444444444444, 0, 0, 0.007142857142857143, 0.016129032258064516, 0.007462686567164179, 0, 0.02, 0, 0.016129032258064516, 0.007462686567164179, 0.02127659574468085, 0, 0, 0.018404907975460124, 0, 0.004784688995215311, 0.010869565217391304, 0.017857142857142856, 0.015384615384615385, 0, 0.01694915254237288, 0.006896551724137931, 0, 0, 0, 0, 0, 0.0125, 0.008771929824561403, 0, 0, 0.005, 0, 0, 0, 0, 0.009036144578313253, 0, 0, 0, 0, 0.007462686567164179, 0, 0.006756756756756757, 0.006535947712418301, 0, 0, 0, 0, 0, 0.00558659217877095, 0, 0, 0, 0, 0.006493506493506494 ]
0.004674
5
[ "cityoffilms.com\n\nAbout\n\nCOF is your online resource for all the latest film and TV news in and out of Hollywood. ", "We launched in 2004 and continues to produce original and entertaining content for general movie lovers and aficionados alike. ", "With 10 years in the movie news and entertainment industry we currently work out of Canada and The United States. ", "Ready to meet the team?", "\n\nName: Alex McMan\n\nFavorite Movies: Annie Hall, As Good As It Gets, The Aviator, Back to the Future, Blue Valentine, Boogie Nights,Casino, Citizen Kane, City of God, The Edge, Fargo, Fight Club, The Godfather, Good Will Hunting, Goodfellas, Heat, Hook, In America, Lethal Weapon, Little Monsters, Magnolia, Mr. Saturday Night, A Nightmare on Elm Street, Pulp Fiction, Rocky, Punch-Drunk Love, Raging Bull, The Sandlot, The Shawshank Redemption, The Shinning, The Silence of the Lambs, Sling Blade, There Will Be Blood, Watchmen, Wayne’s World, When Harry Met Sally, Zodiac\n\nFavorite Movies: Alien, The Assassination of Jesse James by the Coward Robert Ford, Baraka, Braveheart, Casino, City of God, Cloud Atlas, Creature from the Black Lagoon, The Edge, The Fifth Element, Friday the 13th Part 4: The Final Chapter, Galaxy Quest, The Girl with the Dragon Tattoo (2011), Gladiator, The Godfather, The Godfather Part II, The Good, the Bad, and the Ugly, Goodfellas, Hollow Man, Indiana Jones and The Raiders of the Lost Ark, It’s a Wonderful Life, Lawrence of Arabia, Let the Right One In, The Lord of the Rings Trilogy, The Magnificent Seven, Monty Python and the Holy Grail, Moon, The Mummy (1999), Mystic River, The Orphanage, The Others, Perfume: The Story of a Murderer, Planet of the Apes (1968), The Prestige, Psycho, Rear Window, Schindler’s List, Seven, The Shining, Signs, Silence of the Lambs, The Sixth Sense, Star Trek II: The Wrath of Khan, Star Trek IV: The Voyage Home, Star Trek VI: The Undiscovered Country, Star Trek: First Contact, The Star Wars Original Trilogy, Starship Troopers, There Will Be Blood, To Kill a Mockingbird, Unbreakable, Unforgiven, Zodiac." ]
{ "pile_set_name": "Pile-CC" }
[ 0.008849557522123894, 0, 0, 0, 0.025029797377830752 ]
0.006776
5
[ "Oceanic mechanisms for amplification of the 23,000-year ice-volume cycle.", "\nSituated adjacent to the largest Northern Hemispher ice sheets of the ice ages, the mid-latitude North Atlantic Ocean has an important role in the earth's climate history. ", "It provides a significant local source of moisture for the atmosphere and adjacent continents, forms a corridor that guides moisture-bearing storms northward from low latitudes, and at times makes direct contact along its shorelines with continental ice masses. ", "Evidence of major ice-ocean-air interactions involving the North Atlantic during the last 250,000 years is summarized. ", "Outflow of icebergs and meltwater initially driven by summer insolation over the ice sheets affects midlatitude ocean temperatures, summer heat storage, winter sea-ice extent, and global sea level. ", "These oceanic responses in turn influence the winter moisture flux back to the ice sheets, as well as ablation of land ice by calving. ", "Spectral data indicate that the oceanic moisture and sea-level feedbacks, in part controlled by glacial melt products, amplify Milankovitch (insolation) forcing of the volumetrically dominant mid-latitude ice sheets at the 23,000-year precessional cycle." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.005780346820809248, 0, 0, 0, 0, 0.003937007874015748 ]
0.001388
5
[ "\n322 N.W.2d 392 (1982)\n212 Neb. 178\nBetty WALLROFF, Appellee,\nv.\nLaVerne DOUGHERTY, Appellant.", "\nNo. ", "44355.", "\nSupreme Court of Nebraska.", "\nJuly 16, 1982.", "\n*393 Daniel E. Wherry and Miles W. Johnston of Johnston, Barber & Wherry, Lincoln, for appellant.", "\nNo appearance for appellee Wallroff.", "\nHeard before KRIVOSHA, C. J., and BOSLAUGH, McCOWN, CLINTON, WHITE, HASTINGS, and CAPORALE, JJ.", "\nPER CURIAM.", "\nThis is an appeal in an action for specific performance of a contract for the sale of real estate. ", "On April 27, 1980, the defendant, LaVerne Dougherty, was the high bidder at the auction sale of a residence property in Lincoln, Nebraska. ", "Following the auction the defendant entered into a written contract to purchase the property from the plaintiff, Betty Wallroff. ", "The contract provided that it was \"Subject, however, and on condition that the owner thereof has good, valid and marketable title, in fee simple....\" The contract further provided, \"Seller shall furnish to Purchaser either a complete abstract of title (certified to date by a bonded abstracter) or a title insurance commitment (binder), as determined by Seller.\"", "\nWhen the defendant failed to perform, the plaintiff commenced this action on May 15, 1980.", "\nThe petition alleged that \"At all times mentioned herein plaintiff owned and still owns in fee simple absolute\" the property sold to the defendant. ", "The defendant's answer, filed June 16, 1980, admitted the plaintiff's allegations of ownership but alleged the purchase agreement had been rescinded because the garage on the property had been condemned by the city of Lincoln and the residence was infested with termites.", "\nThe fact was that the plaintiff was only a contract purchaser of the property and the purchase contract was of record. ", "On October 3, 1980, the plaintiff's contract vendors commenced an action in the same court, alleging the plaintiff was in default and praying for foreclosure of the contract.", "\nOn February 18, 1981, the specific performance case came on for trial. ", "The plaintiff testified that she had bought the property \"on contract with the deed in August of 1975,\" but admitted that she had been sued by the contract vendors. ", "A copy of the petition filed in the action to foreclose the plaintiff's land contract was received in evidence.", "\nOn February 27, 1981, the trial court found that the plaintiff was entitled to specific performance and ordered the defendant to perform the contract within 30 days. ", "Thereafter, the defendant filed a motion for new trial, a motion to set aside the judgment and grant a new trial, a motion to set aside the judgment of specific performance and enter an order of dismissal *394 of the plaintiff's petition, and a motion to declare the judgment void for lack of jurisdiction and fraud and either dismiss plaintiff's petition or order a new trial, all of which were overruled. ", "The defendant then appealed to this court.", "\nThe action being equitable in nature, it is for review de novo in this court.", "\nSpecific performance is not generally demandable as a matter of absolute legal right but is addressed to the sound legal discretion of the court. ", "It will not be granted where enforcement of the contract would be unjust. ", "James J. Parks Co. v. Lakin, 206 Neb. 184, 292 N.W.2d 21 (1980).", "\nA party seeking specific performance must show that he has substantially complied with the terms of the contract, including proof that he is ready, able, and willing to perform his obligations under the contract. ", "Tedco Development Corp. v. Overland Hills, Inc., 200 Neb. 748, 266 N.W.2d 56 (1978); James J. Parks Co. v. Lakin, supra. ", "Upon the record in this case, we believe the plaintiff is not entitled to specific performance.", "\nThe contract in this case was subject to the condition that the plaintiff have good, valid, and marketable title, in fee simple, to the property and that an abstract of title or title insurance be supplied to the purchaser. ", "It is undisputed that the plaintiff failed to satisfy or perform these requirements.", "\nThere is a distinction between a mere lien upon the property and an absence of legal title in the vendor. ", "See, McNeny v. Campbell, 81 Neb. 754, 116 N.W. 671 (1908), rehearing denied 81 Neb. 761, 117 N.W. 885; 77 Am.", "Jur.2d Vendor and Purchaser §§ 12 and 176 (1975). ", "The judgment in this case was not binding upon the plaintiff's contract vendors, and her contract was in litigation at the time of the trial in this case.", "\nIt is unnecessary to discuss the other contentions of the parties. ", "The judgment of the District Court is reversed and the cause remanded with directions to dismiss the petition of the plaintiff.", "\nREVERSED AND REMANDED WITH DIRECTIONS.", "\n" ]
{ "pile_set_name": "FreeLaw" }
[ 0.031914893617021274, 0, 0, 0, 0, 0.04081632653061224, 0, 0.08333333333333333, 0, 0, 0.007194244604316547, 0.007751937984496124, 0.0027624309392265192, 0, 0, 0.0036900369003690036, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.03125, 0, 0.024793388429752067, 0, 0, 0, 0, 0.01834862385321101, 0.02, 0, 0, 0.007874015748031496, 0, 0 ]
0.006823
5
[ "UPDATED AT 12:36 PM\n\nCORSICANA (CBSDFW.COM) – His age 14. ", "His address Walmart.", "\n\nEmployees of a Corsicana Walmart were shocked to find a teenage boy secretly living inside the store for a few days.", "\n\nThe teen wasn’t just hiding in the store. ", "He built a secret hidden compound and was able to call the 24-hour store home for 2 1/2 days before being discovered.", "\n\nCBS 11 News obtained exclusive photos of two campsites at the Walmart in Corsicana. ", "One of them was on the aisle carrying baby products behind boxes of strollers. ", "The other was behind stacks of paper towels and toilet paper.", "\n\n“You never expect that you’re at Walmart and someone has been living there for four days. ", "That’s crazy,” said Myrna Aguilar, a Walmart customer.", "\n\nCustomers who walked down the aisles where the teen was living never noticed two hidden compounds where the boy was able to store necessities, sleep in a makeshift bed and and eat items taken from inside the store.", "\n\nHe created a crack in the back wall of the drink aisle to grab juice and even collected a fish from the pet department.", "\n\nThe photos show the clothing that employees say the boy would change in and out of every few hours to avoid detection.", "\n\nSources said the 14-year-old was so concerned about being caught he wore diapers instead of using the store restroom.", "\n\nEventually, a trash trail led to the teen’s discovery.", "\n\nPolice were called and released the boy to the custody of relatives.", "\n\n“I’m wondering what his parents think, and how come he didn’t come home, and why aren’t they worried about him,” said customer Megan Nicholson.", "\n\nThe boy lives with his parents, but was visiting other relatives when he disappeared, according to police.", "\n\nSources said the teen tried to run out of the store when he was discovered.", "\n\nCPS said they are usually called in to investigate cases like this but were not called this time.", "\n\nThere’s no indication Walmart plans to file criminal charges at this point.", "\n\nUpdate 12:36 p.m. – According to Corsicana Police, on July 28, the boy ran away from his aunt’s home, where he was staying while his parents were out of town.", "\n\nWhen police contacted the boy’s mother, she told them he has a history of running away and has hidden in abandoned houses, businesses and creeks in the past.", "\n\nTwo days later, Walmart employees called police to report a teenager had been living in the store.", "\n\nPolice say “in runaway cases it is not standard procedure to notify Child Protective Serves unless there is an indication the juvenile was a victim of possible abuse or neglect or was living in a dangerous environment,” which say did not appear to be an issue in this case, according to authorities.", "\n\n(©2014 CBS Local Media, a division of CBS Radio Inc. All Rights Reserved. ", "This material may not be published, broadcast, rewritten, or redistributed.)", "\n\nLatest News:\n\n[display-posts category=”news,sports” wrapper=”ul” posts_per_page=”5″]\n\nTop Trending:" ]
{ "pile_set_name": "OpenWebText2" }
[ 0, 0, 0.00847457627118644, 0, 0, 0.011627906976744186, 0, 0, 0, 0.018518518518518517, 0, 0, 0, 0, 0, 0, 0.006896551724137931, 0, 0, 0.010101010101010102, 0, 0.00625, 0, 0, 0, 0.02631578947368421, 0, 0 ]
0.003149
5
[ "A phase locked loop is used to synchronize a phase of an output signal with the phase of an input signal. ", "A typical phase locked loop includes a phase comparator, and voltage controlled oscillator. ", "The phase comparator compares the phase of an output signal of the voltage controlled oscillator with the phase of the input signal. ", "An output signal representing the phase difference is provided by the phase comparator. ", "A delay locked loop differs from a phase locked loop in that in a voltage controlled delay (VCD) is used instead of a voltage controlled oscillator. ", "Like the phase locked loop, the delay locked loop determines the phase difference between two signals and provides an output signal to adjust the delay of the VCD to \"lock\" the phase of the two signals. ", "A problem with the conventional delay locked loop is that it can only phase lock two signals of the same frequency.", "\nTwo conventional circuits for providing a VCD in a delay locked loop are the shunt-capacitor type VCD and the starved-inverter VCD. ", "In shunt-capacitor VCD, a capacitor with fixed capacitance is connected to the output of a CMOS inverter through a shunt transistor. ", "By providing a gate-to-source voltage (V.sub.", "GS) to the shunt transistor, the transconductance of the shunt transistor can be increased which increases a capacitive loading at an output terminal of the CMOS inverter. ", "By adjusting the voltage at the gate of shunt transistor, a predetermined delay can be introduced in the rise and fall times of the inverter output.", "\nIn the starved-inverter VCD, an N-channel transistor of a conventional two transistor inverter is connected in series with another N-channel transistor (known as a current-starving transistor). ", "The gate of the current-starving transistor is controlled by a voltage which limits the amount of current that can be discharged through the inverter. ", "The higher the VGS of the current-starving transistor, the faster the output terminal of the inverter can be reduced to ground potential.", "\nIn the shunt-capacitor VCD, the capacitive loading of the output is varied, while the inverter current stays fixed. ", "In the starved-inverter VCD, the load capacitance remains fixed, while the inverter current is varied. ", "These two designs work fine for most of VCD applications. ", "However, both the shunt-capacitor VCD and the starved-inverter VCD require that the input signals of the VCD be CMOS (complementary metal-oxide semiconductor) level signals. ", "If the input signals are relatively small signals, such as ECL (emitter-coupled logic) level signals, then they need to be converted to CMOS levels before being applied to the VCD. ", "Also, the output-signals of the VCD have to be re-converted to small signal, or ECL level signals. ", "The level conversions, provide additional undesirable delay in the delay locked loop.", "\nAnother problem with the shunt-capacitor VCD is that it does not have a good maximum delay to minimum delay ratio. ", "Thus, in order to increase the maximum delay, additional delay stages are needed. ", "Adding delay stages to increase the maximum delay, also increases the minimum delay. ", "The additional delay stages also increases layout area required for the VCD.", "\nThe starved-inverter VCD has a good maximum to minimum delay ratio. ", "However, most of delay occurs when VGS is near the threshold voltage (V.sub.", "T) of the current-starving transistor. ", "This means that the starved-inverter VCD is very sensitive to the noise." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0, 0, 0, 0, 0.006711409395973154, 0.0049261083743842365, 0, 0.022556390977443608, 0.015037593984962405, 0, 0.011627906976744186, 0, 0.005128205128205128, 0, 0, 0.008547008547008548, 0.009708737864077669, 0, 0.017241379310344827, 0.011049723756906077, 0.010101010101010102, 0, 0.008620689655172414, 0, 0, 0.013157894736842105, 0.014492753623188406, 0, 0, 0.013888888888888888 ]
0.00576
5
[ "Plywood and other composite wood products such as LVL are produced from thin sheets of wood plies or veneers. ", "To produce the veneer, logs are cut or peeled by sharp blades on a lathe or in other cutting machinery, producing a running ribbon or strip of veneer between one-tenth and one-quarter of an inch thick, depending on the type of plywood being made. ", "The veneer strip is thereafter clipped to size, producing “green” or wet veneer sheets.", "\nThe green veneer sheets are dried in dryers, and glued together in layers to form a panel. ", "Producing plywood or LVL from individual veneer sheets typically involves layering a plurality of glue-covered veneer sheets and then processing the sheets using a combination of pressure and heat to set the glue and fuse the veneer layers together.", "\nIt is important in the manufacturing process that the veneer sheets be dried to a relatively uniform moisture content, usually in the range of between 2–6% (this percentage figure being well known to those skilled in the art). ", "The drying process stabilises the veneer dimension, strengthens the fibres, and prepares the wood for gluing. ", "Mechanical driers are typically controlled by control of temperature, ventilation (to control humidity) and conveyer speed (to control time). ", "In large modern driers, elaborate loading and unloading facilities are frequently provided.", "\nIt is important that the veneers not be too dry, nor too wet, or they will not bond well together. ", "Further, if there are pockets of moisture, or areas of the veneer which are not dried to within the desired range, then “blows” can cause severe delamination in the finished plywood, which can result in product rejection.", "\nBecause the drying of the veneer sheets is such an important step in the manufacturing process, the veneer sheets are typically sorted into a plurality of subsets or “sorts” having approximately the same drying characteristics, ie. ", "by species, thickness, heartwood or sapwood, and initial moisture content prior to drying. ", "The driest green veneers are typically sorted together, as are the wettest, and the intermediate veneers may be sorted into one or more intermediate sorts.", "\nThe driest veneers are dried together as a batch for a certain period of time and/or at a certain temperature or humidity level to achieve the desired end moisture content. ", "Similarly, the wettest sort is dried together (for a longer period of time, and/or at a different temperature and humidity) to achieve a relatively similar end moisture content. ", "The intermediate sort(s) are dried for some intermediate time, and/or at another different temperature and/or humidity.", "\nTherefore, veneer drying is a very important aspect of production of wood composite products from veneers, and moreover, veneer sorting is a very important factor relating to drying. ", "One continuing problem in sorting green veneer, however, relates to the determination of its initial moisture content in determining which “sort” a particular sheet should be directed to.", "\nIt has been the case in the past that the relative sort point of moisture content of a particular sheet of green veneer will simply be estimated by a human operator of a sorting system. ", "After years of experience, an operator may have the skill to roughly sort sheets into appropriate subsets, knowing the species of the wood being dried and its thickness, by knowing whether the sheet comes from sapwood or heartwood, and by looking at the sheet as it passes downstream from the cutting apparatus. ", "Unfortunately, the human operator has little time to see the sheet in a typical fast-moving system, and it is not uncommon for sheets to be misdirected into inappropriate sorts, even by the most experienced operator.", "\nThe problem with inappropriately directing sheets into the wrong sort is that if the sheet is dried for a longer period of time than necessary to reach the desired moisture content, bonding sites on the surface of the veneer can be destroyed or deactivated, thus creating bonding problems between plies. ", "If the sheet is dried for a shorter period of time than necessary, it will still be too wet to use.", "\nIn a typical mill which relies on an operator's expertise in judging the initial moisture content of veneer sheets, it is more typical (and indeed prudent to avoid wastage from over drying) that the operator will direct a sheet to a “shorter time” sort than would be more appropriate (ie. ", "a wet sheet will be placed inappropriately in a sort which is not dried for very long). ", "This avoids over drying, but it does not allow the sheet to dry to the desired moisture in one pass through the dryer. ", "All sheets are checked for moisture content after they are dried, and the wet ones are returned to the dryer as “re-dries”. ", "An operator will adjust the variables in the drying system during the drying process to try to reduce the amount of “re-dry” iteratively: when too many sheets come out of the dryer still wet, the operator adjusts the time, temperature and humidity to reduce the percentage of “re-dries” for the remainder of the sheets in the batch.", "\nHowever, even with this iterative intervention by a human operator, the percentage of “re-dry” in a typical veneer drying system is quite high, and this leads to increased costs of production in increased machine time, increased operator time, and increased energy usage.", "\nIt is important, therefore, to try to reduce the amount of re-dry in a veneer drying system. ", "To reduce the amount of re-dry, it would be desirable to place certain sheets which would otherwise end up out of the drier as re-dry into a sort which has wetter sheets in it (to subject the sheet to a longer drying time, or higher temperature or lower humidity). ", "For this, it would be useful to have a good understanding of the nature of the initial moisture content of the veneer sheet.", "\nAttempts have been made in the past to better measure the initial moisture content of green veneer sheets, in an effort to minimize the effect of the necessity for human intervention in the sorting process. ", "For example, certain attempts have been made to determine the moisture content of a veneer sheet by measuring the electrical or dielectrical properties of the wood. ", "It has been found, however, that the sensors used for this purpose are accurate only when the moisture content is low (ie. ", "below 30%).", "\nMost commonly today, there are also Radio Frequency-based (“RF”) sensor systems in use. ", "These sensors use radio frequencies to measure moisture content of sheets of veneer. ", "They too, however, are not accurate at higher moisture ranges (perhaps >70%), but more importantly, RF sensors are highly sensitive to operating conditions. ", "The accuracy of RF sensor measurements are significantly affected by veneer shape and flatness, and by wood grain angle, and by the distance between the RF source and the face of the veneer sheet. ", "Small distance changes (in the order of a millimetre or two, or even less) between the RF source and sensor head and the sheet face cause large variations in readings. ", "In most drying and sorting systems, veneer sheets are moved along conveyors rapidly and “bounce” along the conveyor such that there are widely varying distances between the sheet and the RF sensor head as the sheet passes the sensor head, leading to erroneous readings.", "\nThere remains a need, therefore, for a better system for sorting green veneer more appropriately and more accurately into sorts or subsets for drying in a dryer, thereby reducing the re-dry amount and increasing productivity, reducing energy consumption, and providing better quality dried veneer for use in plywood. ", "The inventors believe that the key to this desired system is improved moisture measurement accuracy." ]
{ "pile_set_name": "USPTO Backgrounds" }
[ 0.00909090909090909, 0, 0, 0, 0.004016064257028112, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.011235955056179775, 0, 0.006369426751592357, 0.01015228426395939, 0.005952380952380952, 0.0037174721189591076, 0, 0 ]
0.001123
5
[ "1. ", "Introduction\n===============\n\nIdiopathic neuralgic amyotrophy (INA) is a clinically defined syndrome with the acute onset of a painful neuropathy, predominantly involving the upper extremities.^\\[[@R1]\\]^ INA is thought to be related to immune-mediated disorders of some peripheral nervous system, and the extent and distribution of affected nerves is quite variable.^\\[[@R2]\\]^ Either diagnosis or treatment of INA has not yet been proved \"gold standard.", "\"^\\[[@R2]\\]^ The purpose of this case report is to illustrate a rare finding of bilateral distal INA exhibiting a stepwise progression, and to discuss diagnostic and therapeutic approach to the disease. ", "The patient has provided written informed consent for the publication of the case with anonymity, and the ethical approval of this study was exempt by the ethics committee of Incheon St. Mary\\'s Hospital because this study was a single case report (Ethical approval number: OC17ZSI0119).", "\n\n2. ", "Case report\n==============\n\nA 66-year-old woman presented with weakness of flexion of both thumbs and the second and third fingers at the interphalangeal joints for 7 weeks. ", "She had experienced severe burning pain in both shoulders 1 week before the paresis developed. ", "Pain and motor weakness had started on the left but had shortly progressed to the right. ", "Her medical history was unremarkable except for diabetes mellitus.", "\n\nOn examination, muscle strength was assessed as Medical Research Council (MRC) grade 3 in the right flexor pollicis longus (FPL) and flexor digitorum profundus (FDP) muscles of the second and third fingers, and MRC grade 2 in the left FPL, FDP, and flexor digitorum sublimis (FDS) muscles of the second and third fingers. ", "Both shoulder presented normal ranges of motion and normal scapular movements. ", "She complained of dull ache on both forearms from the antecubital fossa to 1st to 3rd fingers but there was no discrepancy on sensory tests. ", "Magnetic resonance imaging (MRI) of the cervical spine which was taken in the other hospital showed no significant abnormality.", "\n\nSensory nerve conduction study (NCS) was normal in the bilateral median, ulnar, and radial nerves. ", "Motor NCS showed decreased amplitudes of compound motor action potentials (CMAPs) in both median nerves recorded on the pronator quadratus (PQ) muscles (Table [1](#T1){ref-type=\"table\"}). ", "Needle electromyography (EMG) revealed abnormal spontaneous activity in the left pronator teres, flexor carpi radialis (FCR), second FDS and FDP, as well as in the right FPL and pronator quadratus (PQ) muscles (Tables [2](#T2){ref-type=\"table\"} and [3](#T3){ref-type=\"table\"}). ", "These findings indicated neuropathies of the left median nerve and the right anterior interosseous nerve (AIN). ", "On ultrasonography, the bilateral median nerves were traced from the wrist to the axillar region. ", "There was no definite swelling or constriction of the bilateral median nerves, but the bilateral FPL, FDP, and PQ muscles showed hyperechogenicities. ", "The patient was diagnosed with INA on the basis of the characteristic clinical features and was treated with oral prednisolone (20 mg/d).", "\n\n###### \n\nResults of nerve conduction studies in the upper extremities.", "\n\n![](", "medi-98-e15549-g001)\n\n###### \n\nResults of needle electromyography in the upper extremities.", "\n\n![](", "medi-98-e15549-g002)\n\n###### \n\nResults of electromyography and magnetic resonance imaging of the upper extremities in a case of idiopathic neuralgic amyotrophy.", "\n\n![](", "medi-98-e15549-g003)\n\nA week later, the patient reported a slight improvement of right thumb IP flexion, but noted weakness of the left thumb extension, with a new finding of grade 1 muscle power on examination. ", "T2-weighted contrast-enhanced magnetic resonance imaging (MRI) of both forearms was done at 8 weeks from the first symptom, and demonstrated high signal intensities correlating with denervation injury and edema within the left FDS, FDP, FCR, FPL, PQ, extensor indicis proprius (EIP), and APL as well as within the right FDP, FPL, PQ, supinator, and extensor carpi radialis (ECR) muscles (Fig. [", "1](#F1){ref-type=\"fig\"}A--F, Table [3](#T3){ref-type=\"table\"}). ", "The second NCS showed decreased amplitudes of CMAP in the left radial nerve recorded on the EIP muscle (Table [1](#T1){ref-type=\"table\"}). ", "Follow-up needle EMG revealed denervation potentials in the left EIP and APL muscles, suggesting neuropathy of the left posterior interosseous nerve (PIN) (Tables [2](#T2){ref-type=\"table\"} and [3](#T3){ref-type=\"table\"}). ", "Although there was no definite motor weakness, right supinator and ECR brevis muscles were sampled considering MRI findings and showed denervation potentials, suggesting neuropathy of the partial branches of the right PIN. ", "Also, additional positive sharp waves were found in left FPL muscle at the more proximal site than where the muscle was sampled in the former study (Table [3](#T3){ref-type=\"table\"}). ", "The serologic tests including autoantibodies and viral markers showed no significant findings.", "\n\n![", "T2-weighted contrast-enhanced MRI of both forearms (A--F), preoperative ultrasonographic findings of the left posterior interosseous nerve (G), and intraoperative findings of the left posterior interosseous nerve (H). ", "1; Pronator teres (PT), 2; Flexor carpi radialis (FCR), 3; Flexor digitorum profundus (FDP), 4; Flexor digitorum sublimis (FDS), 5; Palmaris longus (PL), 6; Supinator (SP), 7; Brachioradialis (BR), 8; Extensor carpi radialis longus (ECRl), 9; Extensor carpi radialis brevis (ECRb), 10; Extensor digitorum communis (EDC), 11; Extensor carpi ulnaris (ECU), 12; Anconeus (ANC), 13; Flexor carpi ulnaris (FCU), 14; Flexor pollicis longus (FPL), 15; Pronator quadratus (PQ), 16; Abductor pollicis longus (APL), 17; Extensor indicis proprius (EIP), 18; Extensor pollicis longus (EPL), 19; Extensor digiti minimi (EDM), V; Volar, D; Dorsal, R; Radius, U; Ulna. ", "A--C, Right forearm; (D--F), left forearm. ", "G, Preoperative ultrasonography of the left posterior interosseous nerve (PIN; arrowheads), Showing the constriction of the left PIN within the supinator muscle (arrows) and swelling of the nerve (∗) just proximal to the muscle. ", "H, Intraoperative findings of the left PIN, with constriction (arrows) within the muscle and swelling (∗) proximal to the muscle.](medi-98-e15549-g004){#F1}\n\nIntravenous methylprednisolone (1 g/d) was administered for 3 days, which was switched to oral prednisolone (60 mg/d), tapered over 9 days. ", "The patient did not report significant adverse effect including gastrointestinal problems during the steroid pulse therapy. ", "Physical therapy including electrical stimulation on the left PIN was continued. ", "During the treatment, muscle power in the right and left FPL and second FDP muscles improved from MRC grade 3/2 to 4/3, and the left second FDS muscles from MRC grade 2 to 3. ", "However, muscle power in the left APL did not improve.", "\n\nSix months from symptom onset, the muscle power in the second FDS and FDP and FPL recovered to nearly normal, but the muscle power of the left APL remained at MRC grade 1. ", "On ultrasonography, an incomplete fascicular constriction of the left PIN within the supinator muscle was detected (Fig. [", "1](#F1){ref-type=\"fig\"}G, Supplementary video). ", "She underwent surgical neurolysis of the left PIN. ", "Intraoperatively, the nerve was seen to be constricted and edematous at the entering point to the supinator muscle, consistent with the ultrasonography findings (Fig. [", "1](#F1){ref-type=\"fig\"}H). ", "At 3 months after the surgery, muscle power in the left thumb extension did not improve (Table [4](#T4){ref-type=\"table\"}).", "\n\n###### \n\nTimeline table.", "\n\n![](", "medi-98-e15549-g005)\n\n3. ", "Discussion\n=============\n\nThe presented case described progressive bilateral INA involving the right AIN, left median, and both PIN, which was confirmed by electrodiagnostic studies and imaging studies. ", "Administration of intravenous methylprednisolone and oral prednisolone had a favorable effect on AIN and median nerve palsy, but left PIN palsy persisted despite a surgical treatment.", "\n\nThe distribution of abnormalities in INA can vary from an isolated nerve to the widespread involvement of the brachial plexus.^\\[[@R3]\\]^ Isolated cases of median or radial involvement in INA have been reported, but the combination of these 2 is relatively rare.^\\[[@R1],[@R4]--[@R7]\\]^ Bilateral INA occurs in approximately 30% of patients,^\\[[@R7]\\]^ and some case reports of bilateral AIN involvement exist.^\\[[@R8]\\]^ To the best of our knowledge, this is the first report of bilateral median and radial involvement in INA.", "\n\nThe patient experienced the right finger flexion weakness a week after the initial event of severe pain. ", "And then, after 8 weeks the left finger extension weakness developed. ", "Note that the motor weakness after initial pain can develop from a day to 2 weeks or later,^\\[[@R7]\\]^ delayed or stepwise progression of the PIN palsy could be possible. ", "Nevertheless, one should keep in mind that recurrence of idiopathic NA is not so uncommon than expected.^\\[[@R7]\\]^ The 8-week interval between the left median and PIN palsies suggests that peripheral nerve involvement in INA can progress in a delayed or stepwise manner.", "\n\nAlthough a thorough and extensive electrodiagnostic examination is required for determining the lesion distribution and the time course of INA, there are limitations in choosing target muscles with respect to technique, time, and patients' compliance. ", "Furthermore, sampling error in needle EMG may be common.^\\[[@R3]\\]^ Recent studies have shown that imaging studies of the brachial plexus and peripheral nerves with either MRI or ultrasonography may show abnormal findings of the affected muscles and nerves in INA.^\\[[@R9]--[@R15]\\]^ In the present case, the T2-weighted forearm MRI revealed high signal intensities of the clinically affected muscles as well as the subclinical involvement of the right supinator and ECR. ", "Correlation with the forearm MRI findings improved the accuracy of the second EMG in that denervation potentials were found in the left FPL more proximally than on the first examination. ", "Although brachial plexus MRI is frequently used for investigating NA, previous studies reported a low percentage of significant findings in plexus MRI.^\\[[@R7],[@R16]\\]^ As the involvement of the extraplexal nerves rather than the brachial plexus proper has been described in INA,^\\[[@R5],[@R11],[@R16]\\]^ high-resolution MRI of the upper extremities may help identify muscles that are affected by the selective fascicular level of the peripheral nerves distal to the plexus. ", "Ultrasonography, although highly dependent on the skills of the examiner, is a good technique for investigating individual peripheral nerves involved in NA, especially when looking for nerve swellings or constrictions preoperatively.^\\[[@R11],[@R17],[@R18]\\]^ In this case, a constriction and swelling of the left PIN was identified, which is a condition thought to be caused by inflammation and to be indicative of poor prognosis.^\\[[@R11],[@R17],[@R18]\\]^\n\nINA treatment is empirical according to published case series. ", "Some articles have reported favorable outcomes of oral or intravenous steroid treatment for INA.^\\[[@R19]--[@R21]\\]^ Considering the rarity of the disorder, no randomized controlled trials assessing the efficacy of steroid therapy have been conducted; thus, further studies are warranted to establish a guideline for steroid use in INA. ", "Surgery may be considered in cases of prolonged paresis despite steroid treatment. ", "However, no definite consensus exists regarding either the indications for or the optimal timing of surgery. ", "Some authors recommend surgery of the AIN or PIN in cases without any recovery at 3 months after onset.^\\[[@R4],[@R18],[@R22]\\]^ Ochi et al^\\[[@R23]\\]^ have recommended the neurolysis of the PIN in patients under 50 years of age if performed within 7 months of onset. ", "Wu et al^\\[[@R18]\\]^ have suggested that older patients are more likely to present with a worse operative outcome. ", "They have argued that neurorrhapy or autografting is more effective than neurolysis in cases of severe hourglass-like fascicular constriction.^\\[[@R18]\\]^ The patient demonstrated no recovery of the left PIN at least 3 months after neurolysis despite relatively early intervention. ", "This poor outcome may be because of her age or simply because the nerve did not adequately recover. ", "There has been emerging views that AIN and PIN palsy is not an entrapment neuropathy at the usual compression site, but a consequence of the selective motor fascicular neuropathy of more proximal nerve trunk.^\\[[@R12],[@R14]\\]^ The left PIN palsy presented in this case may have involved both pathologies, although more proximal lesions in the upper arm level could not be identified on ultrasonography. ", "High-resolution ultrasonography can detect fascicular lesions of the distal nerve,^\\[[@R24]\\]^ but advanced neuroimaging such as magnetic resonance neurography may be considered to provide additional diagnostic information about far proximal nerve lesions.", "\n\n4. ", "Conclusion\n=============\n\nThe clinical features and diagnostic studies presented in this case support the contention that INA can manifest as a multiple mononeuropathy associated with inflammation and constriction affecting multiple peripheral nerves. ", "The presented case indicates that INA can progress in a stepwise manner. ", "Forearm MRI and ultrasonography may help identify the specific lesions, improving the accuracy of EMG and perhaps indicating whether surgery should be undertaken. ", "Our patient seemed to benefit from intravenous methylprednisolone, but the constriction of the left PIN contributed to a poor outcome despite surgical neurolysis.", "\n\nAuthor contributions\n====================\n\n**Conceptualization:** Min-Wook Kim, Dae-Hyun Jang.", "\n\n**Data curation:** Mee-Gang Kim, Mi-Hyang Han, Min-Wook Kim, Dae-Hyun Jang.", "\n\n**Formal analysis:** Min-Wook Kim, Dae-Hyun Jang.", "\n\n**Investigation:** Mee-Gang Kim, Mi-Hyang Han, Sang-Uk Lee, Dae-Hyun Jang.", "\n\n**Supervision:** Dae-Hyun Jang.", "\n\n**Validation:** Dae-Hyun Jang.", "\n\n**Visualization:** Mee-Gang Kim, Sang-Uk Lee, Dae-Hyun Jang.", "\n\n**Writing -- original draft:** Mee-Gang Kim.", "\n\n**Writing -- review & editing:** Mee-Gang Kim, Dae-Hyun Jang.", "\n\nSupplementary Material\n======================\n\n###### Supplemental Digital Content\n\nAbbreviations: AIN = anterior interosseous nerve, APL = abductor pollicis longus, ECR = extensor carpi radialis, EIP = extensor indicis proprius, EMG = electromyography, FCR = flexor carpi radialis, FDP = flexor digitorum profundus, FDS = flexor digitorum sublimis, FPL = flexor pollicis longus, INA = idiopathic neuralgic amyotrophy, MRC = Medical Research Council, MRI = magnetic resonance imaging, NCS = nerve conduction study, PIN = posterior interosseous nerve, PQ = pronator quadratus.", "\n\nThere is no funding received for this report.", "\n\nWe confirm that we have read the Journal\\'s position on issues involved in ethical publication and affirm that this report is consistent with those guidelines.", "\n\nThere is no reproduced previously copyrighted material.", "\n\nThe authors have no conflicts of interest to disclose.", "\n\nSupplemental Digital Content is available for this article.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0, 0.004395604395604396, 0.0049261083743842365, 0.003484320557491289, 0, 0, 0, 0, 0, 0.018518518518518517, 0, 0, 0, 0.009900990099009901, 0.005319148936170213, 0.017985611510791366, 0.008928571428571428, 0, 0.006666666666666667, 0, 0, 0, 0, 0, 0, 0, 0.0047169811320754715, 0.02284263959390863, 0, 0.02158273381294964, 0.008968609865470852, 0.004484304932735426, 0.005434782608695652, 0, 0, 0, 0.04281345565749235, 0, 0.008733624454148471, 0.006711409395973154, 0, 0, 0.017142857142857144, 0, 0.017241379310344827, 0.00819672131147541, 0, 0, 0.005952380952380952, 0, 0, 0, 0, 0, 0.0049261083743842365, 0.01092896174863388, 0.013232514177693762, 0, 0, 0.005847953216374269, 0.01107011070110701, 0, 0.012711864406779662, 0.0106951871657754, 0.012605042016806723, 0.01532567049808429, 0.005934718100890208, 0, 0, 0.022388059701492536, 0.017391304347826087, 0.0035460992907801418, 0, 0.007425742574257425, 0.00390625, 0, 0, 0, 0.012269938650306749, 0, 0.010416666666666666, 0.012987012987012988, 0.0196078431372549, 0.013157894736842105, 0, 0, 0, 0, 0.015873015873015872, 0.022530329289428077, 0, 0, 0, 0, 0, 0 ]
0.005414
5
[ "WOW – I’m honored that you loved two of my photos enough to share on this edition of Awakenings. ", "And – LOVE the other photos too. ", "I recognized the photogs & am SMILING BIG to be included amongst them. ", "Did I even use that word correctly? ", "I’m just super excited!", "\n\n[…] What’s Happenin’ over @ Awakenings is Nature Photography Day! ", "Sometimes repetition is the best practice so here it is @ her sister site catnipoflife! ", "Be sure to visit all of the sites whose photography is featured…you won’t be disappointed! ", "To all whose photographs appear, links have been provided and full credit to each owner! ", "MORE @Awakenings! […]" ]
{ "pile_set_name": "Pile-CC" }
[ 0.020618556701030927, 0, 0.014084507042253521, 0, 0, 0, 0, 0, 0, 0.047619047619047616 ]
0.008232
5
[ "[Treatment of gastrointestinal stromal tumors--a comprehensive view of the surgeon].", "\nGastrointestinal stromal tumors (GIST) are specific mesenchymal tumors of the gastrointestinal tract. ", "Most of GISTs (95%) result from activating mutations in one of the receptor tyrosine kinase proteins (KIT). ", "Tumor cells express this protein. ", "GIST is most common in the stomach and small intestine, but may occur anywhere in the gastrointestinal tract and intra-abdominal soft tissues. ", "The variety of its clinical presentations is related to localization of the tumor, its size and relationship to surrounding organs. ", "Surgery is the first choice of treatment for patients with localized or potentially resectable tumors with the intention of R0 resection. ", "Targeted therapy with imatinib (a selective inhibitor of the KIT protein) is the primary option for patients with metastatic GIST, as adjuvant treatment after surgery or neo-adjuvant therapy prior to surgery in indicated cases. ", "This paper describes comprehensive therapy of GIST with an emphasis laid on the status of surgical treatment, and it highlights some controversial topics, e.g. the role of surgery for metastatic disease or neo-adjuvant targeted therapy. ", "GIST is a relatively rare tumor most commonly affecting the stomach and small intestine. ", "Surgical treatment is not replaceable in the treatment strategy of this disease. ", "The diagnostic-therapeutic approach to patients with GIST must be comprehensive. ", "Due to prescribing restrictions of biological therapies, these patients are inevitably directed to specialized centers where surgical treatment should also be preferably provided." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.009259259259259259, 0, 0, 0, 0, 0.0043859649122807015, 0, 0, 0, 0, 0 ]
0.00105
5
[ "Correction: Cooperative strings in glassy nanoparticles.", "\nCorrection for 'Cooperative strings in glassy nanoparticles' by Maxence Arutkin et al., ", "Soft Matter, 2017, 13, 141-146." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0.011235955056179775, 0.03225806451612903 ]
0.014498
5
[ "/*\n * Copyright 1999-2018 Alibaba Group Holding Ltd.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.", "\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.", "\n * See the License for the specific language governing permissions and\n * limitations under the License.", "\n */\npackage com.alibaba.csp.sentinel.adapter.servlet;\n\nimport java.io.", "IOException;\n\nimport javax.servlet.", "Filter;\nimport javax.servlet.", "FilterChain;\nimport javax.servlet.", "FilterConfig;\nimport javax.servlet.", "ServletException;\nimport javax.servlet.", "ServletRequest;\nimport javax.servlet.", "ServletResponse;\nimport javax.servlet.http.", "HttpServletRequest;\nimport javax.servlet.http.", "HttpServletResponse;\n\nimport com.alibaba.csp.sentinel.", "Entry;\nimport com.alibaba.csp.sentinel.", "ResourceTypeConstants;\nimport com.alibaba.csp.sentinel.", "SphU;\nimport com.alibaba.csp.sentinel.", "Tracer;\nimport com.alibaba.csp.sentinel.adapter.servlet.callback.", "WebCallbackManager;\nimport com.alibaba.csp.sentinel.adapter.servlet.config.", "WebServletConfig;\nimport com.alibaba.csp.sentinel.context.", "ContextUtil;\nimport com.alibaba.csp.sentinel.slots.block.", "BlockException;\n\n/***\n * Servlet filter for all requests.", "\n *\n * @author youji.zj\n */\npublic class CommonTotalFilter implements Filter {\n\n public static final String TOTAL_URL_REQUEST = \"total-url-request\";\n\n @Override\n public void init(FilterConfig filterConfig) {\n\n }\n\n @Override\n public void doFilter(ServletRequest request, ServletResponse response,\n FilterChain chain) throws IOException, ServletException {\n HttpServletRequest sRequest = (HttpServletRequest)request;\n\n Entry entry = null;\n try {\n ContextUtil.enter(WebServletConfig.", "WEB_SERVLET_CONTEXT_NAME);\n entry = SphU.entry(TOTAL_URL_REQUEST, ResourceTypeConstants.", "COMMON_WEB);\n chain.doFilter(request, response);\n } catch (BlockException e) {\n HttpServletResponse sResponse = (HttpServletResponse)response;\n WebCallbackManager.getUrlBlockHandler().blocked(sRequest, sResponse, e);\n } catch (IOException | ServletException | RuntimeException e2) {\n Tracer.trace(e2);\n throw e2;\n } finally {\n if (entry !", "= null) {\n entry.exit();\n }\n ContextUtil.exit();\n }\n }\n\n @Override\n public void destroy() {\n\n }\n\n}\n" ]
{ "pile_set_name": "Github" }
[ 0.015789473684210527, 0.006329113924050633, 0.009523809523809525, 0, 0.02857142857142857, 0.034482758620689655, 0.029411764705882353, 0.02857142857142857, 0.02564102564102564, 0.02702702702702703, 0.023255813953488372, 0.021739130434782608, 0, 0, 0, 0, 0.015384615384615385, 0, 0.017241379310344827, 0.017543859649122806, 0, 0.01263537906137184, 0, 0.004705882352941176, 0.012903225806451613 ]
0.01323
5
[ "Q:\n\nUsing control arrays in c# .net\n\nI am creating a menu with big buttons containing an image, and text. ", "When selected a border is around the button.", "\nThe button text is not always the same, and the result of the button click neither.", "\nI have the image name, and text per button set in a struct like this: (there are four of them, but i'll show 2)\nstruct ConfigDevSubmenu\n {\n\n public const string SubMenuBtnText1 = \"\";\n public const string SubMenuBtnText2 = \"text submenu 3 button 1\";\n public const string SubMenuBtnText3 = \"text submenu 3 button 2\";\n public const string SubMenuBtnText4 = \"\";\n public const string SubMenuBtnImg1 = null;\n public const string SubMenuBtnImg2 = \"Settings.png\";\n public const string SubMenuBtnImg3 = \"LoadFirmware.png\";\n public const string SubMenuBtnImg4 = null;\n public const string SubMenuBtnBorder1 = \"Borderstyle.", "None\";\n public const string SubMenuBtnBorder2 = \"Borderstyle.", "FixedSingle\";\n public const string SubMenuBtnBorder3 = \"Borderstyle.", "FixedSingle\";\n public const string SubMenuBtnBorder4 = \"Borderstyle.", "None\";\n }\n struct AdvancedSubmenu\n {\n public const string SubMenuBtnText1 = \"text submenu 4 button 1\";\n public const string SubMenuBtnText2 = \"text submenu 4 button 2\";\n public const string SubMenuBtnText3 = \"text submenu 4 button 3\";\n public const string SubMenuBtnText4 = \"text submenu 4 button 4\";\n public const string SubMenuBtnImg1 = \"GenerateEncKey.png\";\n public const string SubMenuBtnImg2 = \"Monitoring.png\";\n public const string SubMenuBtnImg3 = \"AdvancedSettings.png\";\n public const string SubMenuBtnImg4 = \"GenerateConfigFile.png\";\n public const string SubMenuBtnBorder1 = \"Borderstyle.", "FixedSingle\";\n public const string SubMenuBtnBorder2 = \"Borderstyle.", "FixedSingle\";\n public const string SubMenuBtnBorder3 = \"Borderstyle.", "FixedSingle\";\n public const string SubMenuBtnBorder4 = \"Borderstyle.", "FixedSingle\";\n }\n\nI do not think this can be done much easier without using database files.", "\nTo create the buttons I have this function which has as argument the which struct it should use, and in a switch case structure each button is created. ", "\nBut I've found myself copy-pasting alot in these functions so this must be possible easier. ", "Therefore I tried something like below, but that does not work. ", "I'd like to know whether it is possible to make that work, and how I should do that.", "\n private void createButtons(string Struct)\n {\n for (int i = 1; i < 5; i++)\n {\n SubBtnText[i].Text = Struct.", "SubMenuBtnText[i];\n pictureBoxSubBtn[i].Image = Image.", "FromFile(Struct.", "SubMenuBtnImg[i]);\n panelSubBtn[i].BorderStyle = Struct.", "SubMenuBtnBorder[i];\n\n }\n }\n\nAny suggetions?", "\n\nA:\n\nCreate a class to hold the button text, image name and border styles - say ButtonData.", "\nCreate several lists (or arrays) of ButtonData, one per menu.", "\nYou can then iterate over the lists and extract the data.", "\npublic class ButtonData\n{\n public ButtonData(string text, string image, BorderStyle border)\n {\n Text = text;\n Image = image;\n Border = border;\n }\n\n public string Text { get; private set; }\n public string Image { get; private set; }\n public BorderStyle Border { get; private set; }\n}\n\nvar devMenuData = new List<ButtonData> { \n new ButtonData(\"\", null, \"Borderstyle.", "None\"), \n new ButtonData(\"text submenu 3 button 1\",\n \"Settings.png\",\n Borderstyle.", "FixedSingle), \n ...\n };\n\nYour function would something like:\nprivate void CreateButtons(IEnumerable<ButtonData> data)\n{\n foreach (var buttonData in data)\n {\n SubBtnText[i].Text = buttonData.", "Text;\n pictureBoxSubBtn[i].Image = Image.", "FromFile(buttonData.", "Image);\n panelSubBtn[i].BorderStyle = buttonData.", "Border;\n }\n}\n\nThe above amended function will not work as such, as .NET doesn't have control arrays. ", "You could create another list/array to iterate over or index through for this to work.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0, 0.0029455081001472753, 0.014705882352941176, 0.04, 0.02666666666666667, 0.005979073243647235, 0.02666666666666667, 0.04, 0.02666666666666667, 0.010638297872340425, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.016129032258064516, 0, 0.009324009324009324, 0.009478672985781991, 0.0036496350364963502, 0, 0, 0, 0, 0, 0 ]
0.007056
5
[ "Q:\n\nStrange error of undefined reference while compiling on Linux\n\nPossible Duplicate:\nWhy can templates only be implemented in the header file?", "\n\nI got the following error while compiling in g++ 4.5.5 on Linux while allegedly my code works fine on Windows.", "\nA.o: In function `A::NewObj(int)':\nA.cpp:(.text+0x39): undefined reference to `List<A>::Add(A*)'\ncollect2: ld returned 1 exit status\nmake: *** [program] Error 1\n\nI have no idea what is wrong with my code. ", "I'm not sure if I declared object list_A correctly.", "\nThe files:\nA.h\n#ifndef A_H\n#define A_H\n\nclass A\n{\npublic:\n int key;\n A() { key=0; }\n A(int i) { key = i; }\n void NewObj(int i);\n};\n\n#endif\n\nA.cpp\n#include \"A.h\"\n#include \"List.h\"\n\nstatic List<A> *list_A = new List<A>();\n\nvoid A::NewObj(int i)\n{\n A *nobject = new A(i);\n list_A->Add( nobject );\n\n}\n\nList.h\n#ifndef LIST_H\n#define LIST_H\n\ntemplate<typename Objct>\nclass Node\n{\npublic:\n Objct* datapiece;\n Node *next, *previous;\n\n Node() { next = previous = 0; }\n Node ( Objct *object, Node *n = 0, Node *p = 0)\n {\n datapiece = object;\n next = n; previous = p;\n }\n};\n\ntemplate<typename Objct>\nclass List\n{\npublic:\n List() { head = tail = 0; }\n void Add( Objct* );\nprotected:\n Node<Objct> *head, *tail;\n};\n\n#endif\n\nList.cpp\n#include \"List.h\"\n#include <iostream>\n\ntemplate<typename Objct>\nvoid List<Objct>::Add( Objct *o )\n{\n int i =5;\n Node<Objct> *nnode = new Node<Objct>(o);\n if ( o->key < i )\n std::cout << \"Ok\" << std::endl;\n}\n\nmain.cpp\n#include <iostream>\n#include \"A.h\"\n#include \"List.h\"\n\nint main()\n{\n A *magazyn = new A();\n magazyn->NewObj(6);\n}\n\nmakefile\nCC=g++\nCFLAGS=-c -Wall -pedantic\n\nprogram: List.o A.o main.o\n $(CC) List.o A.o main.o -o program\nA.o: A.cpp List.h\n $(CC) $(CFLAGS) A.cpp\nList.o: List.cpp\n $(CC) $(CFLAGS) List.cpp\nmain.o: main.cpp A.h\n $(CC) $(CFLAGS) main.cpp\n\nA:\n\nThe problem is the fact that your template class List needs to have its methods defined in every compilation unit that uses it. ", " Templates usually don't follow the one header, one implementation file rule. ", " See this related question for more information: Why can templates only be implemented in the header file?", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.008928571428571428, 0, 0, 0.009253139458030404, 0, 0, 0 ]
0.002273
5
[ "Q:\n\nPassing session variables from php to perl\n\nI need to pass php session variables from my php form to a perl script and vice versa so the forms fields can keep their values.", "\nform.php\n<?", "php session_start();\n if (isset($_POST['submit'])){\n $post_arr = $_POST;\n\n $expire = 8*3600; \n setcookie(\"Cookie_Info\", serialize($post_arr), time()+$expire); \n }\n\nif (isset($_COOKIE['Cookie_Info'])) {\n $data = unserialize($_COOKIE['Cookie_Info']);\n} else {\n $data = array(\n 'from' => '',\n 'area_html' => ''\n );\n\n }\n\n.....\n<form name=\"sendForm\" method=\"post\" action=\"test.cgi\" >\n<tr><td> from: </td>\n <td><input type=\"text\" name=\"from\" value=\"<?php echo $data->from; ?", ">\"/></td>\n</tr>\n\nMy question is how could i do it in the perl side\n\nA:\n\nThe answer was simple, in the perl side :\nuse CGI qw/:standard/; \nuse CGI::Cookie;\n%cookies = CGI::Cookie->parse($ENV{COOKIE});\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0, 0.005758157389635317, 0.014354066985645933 ]
0.005028
5
[ "// WARNING: Changes to this file must be contributed back to Sawyer or else they will\n// be clobbered by the next update from Sawyer. ", " The Sawyer repository is at\n// https://github.com/matzke1/sawyer.", "\n\n\n\n\n// Unit tests for Sawyer::Container::Trace\n#include <Sawyer/Assert.h>\n#include <Sawyer/Trace.h>\n\nusing namespace Sawyer::Container;\n\n#define require(X) ASSERT_always_require(X)\n\ntemplate<class T, class IndexTag>\nstatic void\nprint(const Trace<T, IndexTag> &trace) {\n#if 1\n (void) trace; // to avoid warning about unused trace\n#elif 0\n trace.dump(std::cerr);\n std::cerr <<\"\\n\";\n#else\n std::cout <<\"trace = [\" <<trace <<\"]\\n\";\n#endif\n}\n\ntemplate<class Trace>\nstruct Visitor {\n typename Trace::ConstIterator iter;\n\n Visitor(const typename Trace::ConstIterator &iter)\n : iter(iter) {}\n\n bool operator()(const typename Trace::Label &label) {\n require(label == *iter);\n ++iter;\n return true;\n }\n};\n\n// Test iteration and traversal by comparing them.", "\ntemplate<class Trace>\nstatic void testIterationTraversal(const Trace &trace) {\n Visitor<Trace> visitor(trace.begin());\n trace.traverse(visitor);\n require(visitor.iter == trace.end());\n}\n\ntemplate<class T>\nstatic void\ntest_empty() {\n Trace<T> trace;\n require(trace.isEmpty());\n require(trace.size() == 0);\n require(trace.exists(T()) == false);\n require(trace.nLabels() == 0);\n require(trace.burstiness() == 0.0);\n std::vector<T> vector = trace.toVector();\n require(vector.empty());\n testIterationTraversal(trace);\n}\n\ntemplate<class IndexType, class IndexTag>\nstatic void\ntest_append_integers() {\n Trace<IndexType, IndexTag> trace;\n trace.reserve(6); // only a hint, but we can test that it compiles\n\n trace.append(5); // [5]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 1);\n require(trace.front() == 5);\n require(trace.back() == 5);\n require(trace.exists(5));\n require(!trace.exists(4));\n require(trace.nLabels() == 1);\n std::vector<IndexType> vector = trace.toVector();\n require(vector.size() == 1);\n require(vector[0] == 5);\n require(trace.burstiness(5) == 0.0);\n require(trace.burstiness(4) == 0.0);\n require(trace.burstiness() == 0.0);\n\n trace.append(5); // [5, 5]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 2);\n require(trace.front() == 5);\n require(trace.back() == 5);\n require(trace.exists(5));\n require(!trace.exists(4));\n require(trace.nLabels() == 1);\n vector = trace.toVector();\n require(vector.size() == 2);\n require(vector[0] == 5);\n require(vector[1] == 5);\n require(trace.burstiness(5) == 1.0);\n require(trace.burstiness() == 1.0);\n\n trace.append(4); // [5, 5, 4]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 3);\n require(trace.front() == 5);\n require(trace.back() == 4);\n require(trace.exists(5));\n require(trace.exists(4));\n require(trace.nLabels() == 2);\n vector = trace.toVector();\n require(vector.size() == 3);\n require(vector[0] == 5);\n require(vector[1] == 5);\n require(vector[2] == 4);\n require(trace.burstiness(5) == 1.0);\n require(trace.burstiness(4) == 0.0);\n require(trace.burstiness() == 1.0);\n\n trace.append(6); // [5, 5, 4, 6]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 4);\n require(trace.front() == 5);\n require(trace.back() == 6);\n require(trace.exists(5));\n require(trace.exists(4));\n require(trace.exists(6));\n require(trace.nLabels() == 3);\n vector = trace.toVector();\n require(vector.size() == 4);\n require(vector[0] == 5);\n require(vector[1] == 5);\n require(vector[2] == 4);\n require(vector[3] == 6);\n require(trace.burstiness(5) == 1.0);\n require(trace.burstiness(4) == 1.0);\n require(trace.burstiness() == 1.0);\n\n trace.append(5); // [5, 5, 4, 6, 5]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 5);\n require(trace.front() == 5);\n require(trace.back() == 5);\n require(trace.exists(5));\n require(trace.exists(4));\n require(trace.exists(6));\n require(trace.nLabels() == 3);\n vector = trace.toVector();\n require(vector.size() == 5);\n require(vector[0] == 5);\n require(vector[1] == 5);\n require(vector[2] == 4);\n require(vector[3] == 6);\n require(vector[4] == 5);\n require(trace.burstiness(5) == 1.0);\n require(trace.burstiness(4) == 1.0);\n require(trace.burstiness(6) == 1.0);\n require(trace.burstiness() == 1.0);\n\n trace.append(5); // [5, 5, 4, 6, 5, 5]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 6);\n require(trace.front() == 5);\n require(trace.back() == 5);\n require(trace.exists(5));\n require(trace.exists(4));\n require(trace.exists(6));\n require(trace.nLabels() == 3);\n vector = trace.toVector();\n require(vector.size() == 6);\n require(vector[0] == 5);\n require(vector[1] == 5);\n require(vector[2] == 4);\n require(vector[3] == 6);\n require(vector[4] == 5);\n require(vector[5] == 5);\n require(trace.burstiness(5) == 2.0/3);\n require(trace.burstiness(4) == 1.0);\n require(trace.burstiness(6) == 1.0);\n require(trace.burstiness() == 8.0/9);\n\n testIterationTraversal(trace);\n}\n\ntemplate<class LabelType>\nstatic void\ntest_append_strings() {\n Trace<LabelType> trace;\n trace.reserve(6); // only a hint, but we can test that it compiles\n\n trace.append(\"e\"); // [e]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 1);\n require(trace.front() == \"e\");\n require(trace.back() == \"e\");\n require(trace.exists(\"e\"));\n require(!trace.exists(\"d\"));\n require(trace.nLabels() == 1);\n std::vector<LabelType> vector = trace.toVector();\n require(vector.size() == 1);\n require(vector[0] == \"e\");\n require(trace.burstiness(\"e\") == 0.0);\n require(trace.burstiness(\"d\") == 0.0);\n require(trace.burstiness() == 0.0);\n\n trace.append(\"e\"); // [e, e]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 2);\n require(trace.front() == \"e\");\n require(trace.back() == \"e\");\n require(trace.exists(\"e\"));\n require(!trace.exists(\"d\"));\n require(trace.nLabels() == 1);\n vector = trace.toVector();\n require(vector.size() == 2);\n require(vector[0] == \"e\");\n require(vector[1] == \"e\");\n require(trace.burstiness(\"e\") == 1.0);\n require(trace.burstiness() == 1.0);\n\n trace.append(\"d\"); // [e, e, d]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 3);\n require(trace.front() == \"e\");\n require(trace.back() == \"d\");\n require(trace.exists(\"e\"));\n require(trace.exists(\"d\"));\n require(trace.nLabels() == 2);\n vector = trace.toVector();\n require(vector.size() == 3);\n require(vector[0] == \"e\");\n require(vector[1] == \"e\");\n require(vector[2] == \"d\");\n require(trace.burstiness(\"e\") == 1.0);\n require(trace.burstiness(\"d\") == 0.0);\n require(trace.burstiness() == 1.0);\n\n trace.append(\"f\"); // [e, e, d, f]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 4);\n require(trace.front() == \"e\");\n require(trace.back() == \"f\");\n require(trace.exists(\"e\"));\n require(trace.exists(\"d\"));\n require(trace.exists(\"f\"));\n require(trace.nLabels() == 3);\n vector = trace.toVector();\n require(vector.size() == 4);\n require(vector[0] == \"e\");\n require(vector[1] == \"e\");\n require(vector[2] == \"d\");\n require(vector[3] == \"f\");\n require(trace.burstiness(\"e\") == 1.0);\n require(trace.burstiness(\"d\") == 1.0);\n require(trace.burstiness() == 1.0);\n\n trace.append(\"e\"); // [e, e, d, f, e]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 5);\n require(trace.front() == \"e\");\n require(trace.back() == \"e\");\n require(trace.exists(\"e\"));\n require(trace.exists(\"d\"));\n require(trace.exists(\"f\"));\n require(trace.nLabels() == 3);\n vector = trace.toVector();\n require(vector.size() == 5);\n require(vector[0] == \"e\");\n require(vector[1] == \"e\");\n require(vector[2] == \"d\");\n require(vector[3] == \"f\");\n require(vector[4] == \"e\");\n require(trace.burstiness(\"e\") == 1.0);\n require(trace.burstiness(\"d\") == 1.0);\n require(trace.burstiness(\"f\") == 1.0);\n require(trace.burstiness() == 1.0);\n\n trace.append(\"e\"); // [e, e, d, f, e, e]\n print(trace);\n require(!trace.isEmpty());\n require(trace.size() == 6);\n require(trace.front() == \"e\");\n require(trace.back() == \"e\");\n require(trace.exists(\"e\"));\n require(trace.exists(\"d\"));\n require(trace.exists(\"f\"));\n require(trace.nLabels() == 3);\n vector = trace.toVector();\n require(vector.size() == 6);\n require(vector[0] == \"e\");\n require(vector[1] == \"e\");\n require(vector[2] == \"d\");\n require(vector[3] == \"f\");\n require(vector[4] == \"e\");\n require(vector[5] == \"e\");\n require(trace.burstiness(\"e\") == 2.0/3);\n require(trace.burstiness(\"d\") == 1.0);\n require(trace.burstiness(\"f\") == 1.0);\n require(trace.burstiness() == 8.0/9);\n\n testIterationTraversal(trace);\n}\n\n// User-defined class\nclass UserLabel {\n std::string label;\npublic:\n UserLabel() {}\n\n // This constructor is only for our own test harness, so we can say: x == \"e\" where x is a UserClass instance\n /*implicit*/ UserLabel(const char *s): label(s) {}\n\n bool operator==(const UserLabel &other) const { return label == other.label; }\n bool operator<(const UserLabel &other) const { return label < other.label; }\n};\n\n// User-defined index (cheating here by using class derivation)\nstatic size_t nUserIndexConstructed = 0;\ntemplate<class Label, class Value>\nclass UserIndex: public Sawyer::Container::TraceDetail::MapIndex<Label, Value> {\npublic:\n UserIndex() { ++nUserIndexConstructed; }\n};\n\n// Tag and specialization for user-defined index\nclass UserIndexTag {};\n\nnamespace Sawyer { namespace Container {\ntemplate<class Label, class Value>\nstruct TraceIndexTraits<Label, Value, UserIndexTag> {\n typedef UserIndex<Label, Value> Index;\n};\n}}\n\nint\nmain() {\n test_empty<size_t>();\n test_empty<std::string>();\n test_empty<int>();\n\n // Integer types using a vector index\n test_append_integers<int, TraceVectorIndexTag>();\n test_append_integers<unsigned, TraceVectorIndexTag>();\n test_append_integers<short, TraceVectorIndexTag>();\n test_append_integers<unsigned short, TraceVectorIndexTag>();\n test_append_integers<long, TraceVectorIndexTag>();\n test_append_integers<unsigned long, TraceVectorIndexTag>();\n\n // Integer types using a map index (the TraceMapIndex tag is optional, and we tested that in test_empty() already)\n test_append_integers<int, TraceMapIndexTag>();\n test_append_integers<unsigned, TraceMapIndexTag>();\n test_append_integers<short, TraceMapIndexTag>();\n test_append_integers<unsigned short, TraceMapIndexTag>();\n test_append_integers<long, TraceMapIndexTag>();\n test_append_integers<unsigned long, TraceMapIndexTag>();\n\n // Integer types using a user-defined index\n nUserIndexConstructed = 0;\n test_append_integers<int, UserIndexTag>();\n test_append_integers<unsigned, UserIndexTag>();\n test_append_integers<short, UserIndexTag>();\n test_append_integers<unsigned short, UserIndexTag>();\n test_append_integers<long, UserIndexTag>();\n test_append_integers<unsigned long, UserIndexTag>();\n require(nUserIndexConstructed > 0);\n\n // String-like label types (it doesn't make sense to use a vector-based index here)\n test_append_strings<std::string>();\n test_append_strings<UserLabel>();\n}\n" ]
{ "pile_set_name": "Github" }
[ 0.013986013986013986, 0.013333333333333334, 0.0050062578222778474, 0.003752010005360014 ]
0.009019
5
[ "Epidemiologic aspects of bovine anaplasmosis in semiarid range conditions of south central Idaho.", "\nThe prevalance of Anaplasma marginale-infected cows, as determined by use of the modified rapid card agglutination (MRCA) test, was measured during a 4-year period (1980-1983). ", "The prevalence of A marginale-infected cows, defined as positive reactors on the MRCA test, remained constant (31%-37%). ", "The apparent incidence of A marginale transmission to susceptible cows was approximately 7% from 1980 to 1981, 8% from 1981 to 1982, and no transmission from 1982 to 1983. ", "The occasional MRCA-positive cow became negative on the MRCA test, and 1 cow was determined to be free of A marginale infection by subinoculation of 100 ml of the cow's blood into a susceptible, splenectomized calf. ", "Dermacentor andersoni, a known vector of A marginale, was often found on the cattle and in their environment. ", "However, A marginale was not transmitted to susceptible, splenectomized calves, using collected ticks. ", "Of 56 calves born to MRCA-positive cows, 82% were MRCA-positive within the first 3 months of life. ", "These calves converted to MRCA-negative status and were determined to be free of A marginale infection by subinoculation of their blood into susceptible, splenectomized calves, indicating the passive transfer of colostral antibodies." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.010309278350515464, 0.0056179775280898875, 0.008264462809917356, 0, 0.004629629629629629, 0, 0, 0.010101010101010102, 0 ]
0.004325
5
[ " Case: 17-13894 Date Filed: 08/05/2019 Page: 1 of 4\n\n\n [DO NOT PUBLISH]\n\n\n\n IN THE UNITED STATES COURT OF APPEALS\n\n FOR THE ELEVENTH CIRCUIT\n ________________________\n\n No. ", "17-13894\n Non-Argument Calendar\n ________________________\n\n D.C. Docket No. ", "8:13-cv-02649-VMC-TGW\n\n\n\nBRUCE CUNNINGHAM,\n\n Petitioner-Appellant,\n\n versus\n\nSECRETARY, FLORIDA DEPARTMENT OF CORRECTIONS,\nATTORNEY GENERAL, STATE OF FLORIDA,\n\n Respondents-Appellees.", "\n\n ________________________\n\n Appeal from the United States District Court\n for the Middle District of Florida\n ________________________\n\n (August 5, 2019)\n\n\n\nBefore MARCUS, ROSENBAUM and BLACK, Circuit Judges.", "\n\nPER CURIAM:\n\f Case: 17-13894 Date Filed: 08/05/2019 Page: 2 of 4\n\n\n Bruce Cunningham, a Florida prisoner proceeding pro se, appeals from the\n\ndistrict court’s denial of his 28 U.S.C. § 2254 petition for habeas corpus relief. ", "We\n\ngranted a certificate of appealability (COA) to determine whether the district court\n\nviolated Clisby v. Jones, 960 F.2d 925 (11th Cir. ", "1992) (en banc), by failing to\n\naddress one of Cunningham’s claims alleging his counsel was ineffective,\n\nspecifically, that his trial counsel was ineffective by failing to redact portions of a\n\ndeposition he read at trial that introduced collateral act evidence. ", "Cunningham\n\ncontends the district court violated Clisby, and the State agrees. ", "After review,1 we\n\nvacate and remand.", "\n\n In Clisby, we held that when a district court fails to address every claim\n\nraised in a habeas petition, regardless of whether relief is granted or denied, we\n\n“will vacate the district court’s judgment without prejudice and remand the case\n\nfor consideration of all remaining claims.” ", "960 F.2d at 936, 938. ", "Under Clisby, a\n\nclaim “is any allegation of a constitutional violation.” ", "Id. at 936. ", "Allegations of\n\ndistinct constitutional violations constitute separate claims for relief, even if the\n\nallegations arise from the same operative facts. ", "Id. Ineffective assistance of\n\ncounsel constitutes a violation of a defendant’s Sixth Amendment rights, and thus,\n\n\n\n 1\n When examining the denial of a petition filed under 28 U.S.C. § 2254, we review\nquestions of law and mixed questions of law and fact de novo, and findings of fact for clear error.", "\nStewart v. Sec’y, Dep’t of Corr., ", "476 F.3d 1193, 1208 (11th Cir. ", "2007). ", "The scope of review is\nlimited to the issues specified in the COA. ", "See Murray v. United States, 145 F.3d 1249, 1250-51\n(11th Cir. ", "1998) (addressing a motion filed under 28 U.S.C. § 2255).", "\n 2\n\f Case: 17-13894 Date Filed: 08/05/2019 Page: 3 of 4\n\n\nis a claim of a constitutional violation. ", "Strickland v. Washington, 466 U.S. 668,\n\n686-87 (1984). ", "Under Clisby, our only role is to determine whether the district\n\ncourt failed to address a claim, and, where we determine that it did, to vacate the\n\njudgment without prejudice and remand the case for consideration of the claim.", "\n\nDupree v. Warden, 715 F.3d 1295, 1299 (11th Cir. ", "2013).", "\n\n As the state concedes, the district court failed to address Cunningham’s\n\nineffective assistance of counsel claim pertaining to his counsel’s failure to redact\n\nportions of a deposition transcript of an alibi witness, Mary Walters, that was read\n\nat trial. ", "Cunningham alleged in his petition that his trial counsel was ineffective by\n\nfailing to adequately and fairly present an alibi defense that he advised the jury he\n\nwas going to present. ", "One of the reasons that Cunningham proffered—and that\n\nwould individually satisfy a claim for ineffective assistance of counsel—was that\n\nhis counsel failed to redact portions of a deposition transcript that was read at trial,\n\nwhich resulted in the introduction of collateral act evidence that resulted in his\n\nconviction.", "\n\n However, neither the state in its response to Cunningham’s petition for\n\nhabeas corpus, nor the district court, in its order, addressed this matter. ", "Indeed, the\n\ndistrict court did not even mention that Cunningham raised the issue, despite\n\nCunningham’s claim being raised in clear and simple language, such that the\n\ndistrict court may not misunderstand it or fail to resolve it. ", "See id. (“A habeas\n\n\n 3\n\f Case: 17-13894 Date Filed: 08/05/2019 Page: 4 of 4\n\n\npetitioner must present a claim in clear and simple language such that the district\n\ncourt may not misunderstand it.”). ", "Accordingly, we vacate the denial of his\n\npetition, and remand the case for further proceedings.2\n\n VACATED and REMANDED.", "\n\n\n\n\n 2\n The state also contends that the district court would lack jurisdiction to resolve\nCunningham’s claim because he did not exhaust state court remedies in regard to that claim.", "\nHowever, we do not need to resolve the state’s contention. ", "Because our role is to determine\nwhether the district court failed to address a claim, and, where we determine that it did, to vacate\nthe judgment without prejudice and remand the case for consideration of the claim, Dupree, 715\nF.3d at 1299, we do not need to determine whether the underlying claim is meritorious, and thus,\nwe leave it to the district court to determine in the first instance whether it has jurisdiction over\nthis claim.", "\n 4\n\f" ]
{ "pile_set_name": "FreeLaw" }
[ 0.003115264797507788, 0.007462686567164179, 0.0061162079510703364, 0.00967741935483871, 0.007662835249042145, 0.014285714285714285, 0.003787878787878788, 0.02531645569620253, 0.02702702702702703, 0, 0, 0, 0, 0, 0, 0.05714285714285714, 0, 0, 0.014925373134328358, 0.015873015873015872, 0, 0, 0, 0, 0, 0, 0.007547169811320755, 0.0053475935828877, 0.0030959752321981426, 0.006369426751592357, 0.004310344827586207, 0, 0.007874015748031496, 0, 0, 0, 0 ]
0.006133
5
[ "Introduction {#s1}\n============\n\nUrbanization alters natural landscapes more dramatically than any other human agent of habitat change [@pone.0020483-McIntyre1], so its effects on wildlife are greater than expected [@pone.0020483-Marzluff1] given how little (\\<1%) of the Earth\\'s total land area is occupied by urban areas [@pone.0020483-Potere1]. ", "Indeed, urbanization is a major cause of species\\' endangerments [@pone.0020483-Czech1]. ", "In 2007, at 3.3 billion, the world\\'s urban population had already increased tenfold over a century before, and it is predicted to nearly double by 2050, when 70% of people will live in cities [@pone.0020483-United1]. ", "Given such rapid urbanization and the extreme habitat destruction with which the process is associated, the need to study species in urban ecosystems and develop conservation plans for those that need them is urgent.", "\n\nMuch progress has been made in the field of urban wildlife ecology [@pone.0020483-Adams1], but it retains three key biases. ", "The first one is geographic: most researchers have worked in forested regions (namely temperate forests), directing less attention to other biomes, including grasslands \\[see also 7,8\\]. ", "The lack of urban ecology studies in grasslands is a knowledge gap in general, but especially in North America, where habitat destruction is more severe [@pone.0020483-Samson1] and urbanization happens faster [@pone.0020483-Cromartie1] in the Great Plains than in other biomes. ", "The bias is problematic for another reason. ", "Because urban tree-cover is fairly constant (≈30%) in all cities [@pone.0020483-McKinney1], urbanization in treed ecoregions implies the opposite process (deforestation) to that in a comparatively treeless landscape, such as grasslands [@pone.0020483-vanderRee1]. ", "Given how important vegetation is to wildlife, landscape context could modulate the effects of urbanization [@pone.0020483-Gehrt1], but this cannot be verified without studies in a variety of biomes.", "\n\nThe second bias is methodological. ", "The dominant perspective in urban wildlife ecology has been synecological [@pone.0020483-Adams1], with researchers asking questions about abundance and diversity differences between urban and non-urban wildlife communities. ", "Although this approach may reveal the changes in community size and structure that result from urbanization, only autecological studies can expose the mechanisms underlying those effects, such as impacts on fitness [@pone.0020483-Marzluff2], [@pone.0020483-Shochat1].", "\n\nThe third bias is taxonomic, with most research devoted to birds [@pone.0020483-Adams1], [@pone.0020483-Garden1] and less to other vertebrates, including mammals. ", "There is even bias in urban mammal studies: most have focused on charismatic, conspicuous species rather than on less charismatic or secretive mammals, such as bats [@pone.0020483-Gehrt1], [@pone.0020483-Garden1]. ", "Studying the urban ecology of bats is worthwhile, and not just because of their ecological importance as predators of nocturnal insects and as pollinators [@pone.0020483-Kunz1]. ", "For their size, bats have the slowest life histories of all mammals [@pone.0020483-Dobson1]. ", "Long-lived, monoestrous bats, i.e., temperate-zone vespertilionids, are ideal for urban autecological studies because when environmental conditions are not conducive to successful breeding, they may forego reproduction in favour of somatic maintenance [@pone.0020483-Barclay1]. ", "Thus, habitat change can profoundly affect their populations [@pone.0020483-Racey1], making bats good indicators of habitat quality in general and responsive to urbanization [@pone.0020483-Jones1]. ", "Also, temperate-zone bats use daily torpor, which saves energy but has reproductive costs [@pone.0020483-Lausen1], [@pone.0020483-Entwistle1]. ", "They are therefore well-suited to addressing questions about how facultative heterotherms are influenced by the urban heat island effect, the tendency for cities to be warmer than outlying areas [@pone.0020483-Arnfield1].", "\n\nTo address these research gaps, we studied the impacts of urbanization on bats of the Canadian Prairies. ", "We hypothesized that urbanization increases their fitness in several ways. ", "First, the availability of the vertical landscape elements that bats use as roosts [@pone.0020483-Humphrey1] should be enhanced by the urban proliferation of trees and buildings in a relatively treeless Prairie landscape. ", "Increased structural habitat complexity in the city should also increase habitat connectivity, which is important to many insectivorous bats [@pone.0020483-Walsh1]. ", "Many bats avoid open, agricultural areas, and instead frequent treed, riparian areas and other linear habitat features, where insects may be more abundant [@pone.0020483-Holloway1] and where flight costs [@pone.0020483-Verboom1] and predation risk [@pone.0020483-Verboom2] may be lower. ", "The urban heat island may also be relevant. ", "At higher ambient temperatures, insects are more abundant, and so is bat foraging activity, especially at northern latitudes [@pone.0020483-Rydell1]. ", "Lower temperatures and reduced energy intake, leading to increased torpor use, decrease allocation to reproduction [@pone.0020483-Barclay1] and delay parturition, weaning [@pone.0020483-Willis1] and spermatogenesis [@pone.0020483-Entwistle1]. ", "Finally, compared to conspecifics in natural roosts, Prairie bats in buildings may benefit not only from increased roost temperature, but also from reduced predation [@pone.0020483-Lausen1], and building roosts should be more abundant in the city.", "\n\nThe focal species for our study was the little brown bat *Myotis lucifugus* because it is the dominant species throughout our study area, but nowhere more so than in the urban assemblage [@pone.0020483-Coleman1]. ", "Gehrt and Chelsvig [@pone.0020483-Gehrt1] suggested that such a scenario, especially in an agricultural landscape, could indicate that the city is a population source. ", "Thus, we sought evidence that recruitment outweighs mortality. ", "We tested the predictions that compared to non-urban conspecifics, urban little brown bats (1) are in better body condition, (2) are more likely to reproduce, (3) reproduce more successfully, and (4) have accelerated reproductive phenology.", "\n\nMaterials and Methods {#s2}\n=====================\n\nOur study area was in the South Saskatchewan River basin (SSRB), and our focal city was Calgary, Alberta (city centre 51°02′45\\\"N, 114°03′27\\\"W). ", "The study area and level of urban development are described elsewhere [@pone.0020483-Coleman1].", "\n\nStudy sites {#s2a}\n-----------\n\nWe divided our study area into three zones, each with replicate sites≥1 km apart. ", "Our 11 urban sites were within city limits and totally surrounded by urban development, and our six rural sites were≥40 km away from city limits. ", "Our 10 transition-zone sites were either in the city but bordering city limits, or outside but \\<40 km from city limits. ", "Mean distances from each site to the nearest human residence that occurred within a populated place (i.e., not an isolated farmhouse) were: 12.45±2.91 km in the rural zone, 4.30±1.72 km in the transition zone, and 0.20±0.04 km in the urban zone.", "\n\nAs we were interested in the effects of urbanization and not those of habitat, we selected field sites according to two search criteria of importance to Prairie bats in Alberta [@pone.0020483-Holloway1]. ", "All sites (1) were riparian, located near rivers and tributaries in the SSRB, and (2) had mature, native trees that could potentially be used as roosts. ", "Sites were located in municipal and provincial parks, provincial natural recreation areas, on municipal and private property and in one national historic site. ", "Although transition-zone sites were located in all cardinal directions relative to Calgary, there were no rural sites to the west because \\<40 km west of city limits, the Boreal Plains and Montane Cordillera (Eastern Foothills) ecozones meet the Prairies [@pone.0020483-Ecological1].", "\n\nStudy species {#s2b}\n-------------\n\nLittle brown bats range over much of North America [@pone.0020483-Fenton1]. ", "They are year-round residents in southern Alberta, and hibernate locally [@pone.0020483-Lausen2]. ", "As in most temperate-zone vespertilionid bats, the sexes gather at hibernacula, where they mate and overwinter, but are segregated the rest of the year [@pone.0020483-Fenton1]. ", "In the summer, reproductive females form colonies in maternity roosts [@pone.0020483-Fenton1], which in our study area include artificial (bridges, buildings) and natural structures, namely trees [@pone.0020483-Coleman1], and possibly rock crevices [@pone.0020483-Barclay2]. ", "Non-reproductive females and males are less social, but may roost in any of the above structures. ", "A reproductive female gives birth to a single pup [@pone.0020483-Kurta1], which fledges in about three weeks and is weaned shortly thereafter [@pone.0020483-Fenton1], and lactation is the most energetically expensive aspect of bat reproduction [@pone.0020483-Kurta2]. ", "Summer is also when males undergo spermatogenesis, a costly process that is timed to the period of maximum food availability, with mature sperm stored until mating begins [@pone.0020483-Racey2]. ", "By early fall, little brown bats must accumulate enough fat to hibernate successfully, and the greater overwinter mortality of juveniles relative to adults [@pone.0020483-Davis1] is related to their reduced ability to do so [@pone.0020483-Fenton1].", "\n\nField methods {#s2c}\n-------------\n\nWe assessed little brown bat demography in all three zones in 2007 and 2008, and in the urban and transition zones only in 2006.", "\n\nFrom late May to late August (2006) and to mid-September (2007--2008), weather permitting, we captured bats in mist nets (Avinet, Dryden, NY, USA), in one site per night, alternating nights among zones, six nights a week.", "\n\nWe extracted bats from nets as soon as possible after capture and kept them in cloth bags for at least an hour, long enough for them to void their digestive system [@pone.0020483-Buchler1] and provide accurate mass measurements. ", "We weighed bats to the nearest 0.1 g on a calibrated digital balance, and measured their forearm length to the nearest 0.1 mm with calipers. ", "We identified juveniles by the presence of a cartilaginous epiphyseal gap [@pone.0020483-BrunetRossinni1]. ", "We fitted each bat with a plastic split-ring arm band with a unique colour-number combination so we could identify recaptures.", "\n\nWe identified individuals to sex and adult reproductive status. ", "We classified females that were pregnant, lactating or post-lactating [@pone.0020483-Racey3] as reproductive, and those that were neither pregnant nor lactating by the date on which we first observed evidence of parturition each year as non-reproductive. ", "We classified males as reproductive if they exhibited testicular swelling, which is indicative of spermatogenesis, and/or distension of the caudae epidydimes, where mature sperm are stored [@pone.0020483-Racey3]. ", "In 2007 and 2008, we also measured the linear extent of testicular/caudal swelling along the cranio-caudal axis to estimate the relative extent of spermatogenesis.", "\n\nThis study was carried out in accordance with the guidelines established by the Canadian Council on Animal Care and was approved by the University of Calgary Life Sciences Animal Care Committee (permit \\# BIO9R-01).", "\n\nTo account for the potential effects of weather on bat reproduction and development, we obtained climate data from Environment Canada\\'s National Climate Data and Information Archive (<http://www.climate.weatheroffice.ec.gc.ca/Welcome_e.html>). ", "These data were collected each year (2006--2008) from 01-May to 15-September (i.e., the period during which little brown bats are present in our study area) at two weather stations: one in the urban zone and the other in the rural zone (there were no adequate datasets for any transition-zone weather stations). ", "Our analysis of those data revealed evidence of an urban heat island: it was warmer and more precipitation fell in the city than outside. ", "We also found variation in temperature at both stations among years (it was warmest in 2006 and coolest in 2008), but whereas 2008 tended to be the wettest year at both stations, yearly variation in precipitation was only significant in the city of Calgary [@pone.0020483-Coleman1].", "\n\nStatistical analysis {#s2d}\n--------------------\n\nFor most dependent variables, we performed two separate analyses: model 1 considered bats captured in 2007 and 2008 in all three zones, and model 2 considered bats captured in 2006--2008 in the urban and transition zones. ", "We used JMP 7.0 (SAS Institute Inc., Cary, NC, USA) and SPSS 16.0 (SPSS, Inc., Chicago, IL, USA) to perform statistical tests, all of which were two-tailed, with a rejection criterion of 0.05.", "\n\n### Body condition {#s2d1}\n\nWe estimated adult male body condition, following Entwistle et al. [", "@pone.0020483-Entwistle1], with a linear regression of mass against forearm length for all adult male bats. ", "We used the studentized residual difference of each bat\\'s mass from the value expected from the overall regression (r^2^ ~adj~ = 0.05, F~1~ = 14.34, *P* = 0.0002, N = 244) as a body condition index. ", "We applied the same procedure to juveniles (r^2^ ~adj~ = 0.05, F~1~ = 14.94, *P* = 0.0001, N = 248). ", "We estimated body condition of adult females differently. ", "To account for the expected relationship between body size and mass (regressions of mass against forearm length were not significant), we followed [@pone.0020483-Ransome1] and divided each bat\\'s mass by her forearm length and multiplied the result by the mean forearm length (38.5 mm; N = 978) of all adult females. ", "We omitted within-year recaptures from body condition analyses.", "\n\nWe examined the effect of zone on body condition for each of four groups (adult males, juveniles, non-reproductive adult females, and lactating adult females) separately. ", "We did not consider post-lactating females because of insufficent sample size. ", "We performed model 1 and 2 general linear ANCOVAs, with body condition as the dependent variable, year and zone (and juvenile sex) as fixed factors, and Julian day as a covariate. ", "We began this and other analyses with fully crossed models, and removed non-significant interactions sequentially, to obtain reduced models with no non-significant interactions [@pone.0020483-Engqvist1]. ", "For significant fixed effects, we conducted post-hoc t- or Tukey HSD tests, as appropriate.", "\n\n### Reproductive rates {#s2d2}\n\nFor females, we considered only adults captured on or after the date on which the first lactating female was captured in any year, when all pregnancies should have been detectable. ", "We performed two-way contingency table analyses, considering the association between reproductive status and zone, for each year separately, and the association between reproductive status and year, for each zone separately. ", "We broke down significant associations into 2×2 tables to examine them in greater detail. ", "We conducted similar analyses for adult males.", "\n\n### Spermatogenesis {#s2d3}\n\nWe used a general linear ANCOVA to assess whether urbanization affects the extent of sperm production by reproductive males. ", "The dependent variable was the linear extent of testicular/caudal swelling, hereafter referred to as swelling. ", "Fixed factors were year and zone, and covariates were Julian day and body-condition index.", "\n\n### Reproductive success {#s2d4}\n\nWe used the ratio of volant juveniles to post-parturient females in capture samples as an index of reproductive success. ", "We performed two hierarchical three-way loglinear analyses (models 1 and 2) considering the association between zone, year and age (adult or juvenile). ", "We decomposed significant higher-order interactions into two-way tables to examine them in detail.", "\n\n### Post-natal growth {#s2d5}\n\nSkeletal dimensions of bat pups vary with extrinsic factors, such as weather and food availability [@pone.0020483-Hoying1], and it is conceivable that habitat quality, i.e., urbanization, is also important. ", "We compared forearm length of volant juveniles among zones and years in an ANOVA, with year, sex and zone as fixed factors.", "\n\nResults {#s3}\n=======\n\nWe captured 1,627 *M. lucifugus*: 332 in 2006, 528 in 2007 and 767 in 2008 ([Table S1](#pone.0020483.s001){ref-type=\"supplementary-material\"}). ", "Of those, 34 were recaptures.", "\n\nBody condition {#s3a}\n--------------\n\nIn general, females were heavier than males, and adults were heavier than juveniles, with pregnant bats heaviest of all ([Table S2](#pone.0020483.s002){ref-type=\"supplementary-material\"}). ", "Near-term females weighed ≤13.4 g, an increase of \\>60% over the mean mass of non-reproductive adult females.", "\n\nWhen we included date as a covariate in models 1 and 2 analysing non-reproductive female body condition, its effect was significant, but so were lack of fit tests, suggesting that a different model might be a better fit. ", "Scatterplots revealed nothing to suggest a nonlinear relationship between date and body condition, and no data transformation significantly improved model fit. ", "To retain the evidently important influence of date, we performed a linear regression of body condition (ln-transformed) against date (*R^2^* ~adj~ = 0.06, F = 13.25, *P* = 0.0003, *n* = 209), and used the residuals as the dependent variable in two-factor ANOVAs examining the effects of year and zone. ", "Hereafter, we refer to this variable as date-adjusted condition. ", "Model 1 (*R^2^* ~adj~ = 0.10, F = 7.21, *P*\\<0.0001, *n* = 177) revealed that bats were in better condition in 2007 than in 2008 (year: F~1,173~ = 11.16, *P* = 0.001), and in the transition zone than in the urban zone, with no difference between rural and transition-zone bats or between urban and rural bats (zone: F~2,173~ = 9.00, *P* = 0.007; [Fig. ", "1A](#pone-0020483-g001){ref-type=\"fig\"}). ", "According to model 2 (*R^2^* ~adj~ = 0.14, F = 9.30, *P*\\<0.0001, *n* = 158), date-adjusted condition was worse in 2008 than in either of the other two years, between which it was not different (year: F~2,154~ = 9.30, *P* = 0.0002), and was worse in the urban than in the transition zone (F~1,154~ = 6.49, *P* = 0.01; [Fig. ", "2A](#pone-0020483-g002){ref-type=\"fig\"}).", "\n\n![", "Variation in body condition of *M. lucifugus* among zones and between years.\\\nPanels present results for (A) non-reproductive female, (B) lactating female, (C) adult male and (D) juvenile bats captured near Calgary, Alberta, Canada. ", "Values are least-squared means±standard error. ", "Squares represent 2007 and circles represent 2008, with open symbols for male and closed symbols for female juveniles.](pone.0020483.g001){#pone-0020483-g001}\n\n![", "Variation in body condition of *M. lucifugus* between zones and among years.\\\nPanels present results for (A) non-reproductive female, (B) lactating female, (C) adult male and (D) juvenile bats captured near Calgary, Alberta, Canada.. Values are least-squared means±standard error. ", "Triangles represent transition-zone bats, diamonds represent urban bats, with open symbols for male and closed symbols for female juveniles.](pone.0020483.g002){#pone-0020483-g002}\n\nWhen we included date as a covariate in models of lactating female body condition, its effect was not significant, so we removed the term. ", "Doing so also made biological sense: bats lose mass over the lactation period [@pone.0020483-Kurta2] but do not all give birth on the same day, so date should have an unpredictable effect on condition. ", "Ultimately, the data were best explained by two-factor ANOVAs. ", "Model 1 (*R^2^* ~adj~ = 0.30, F = 19.21, *P*\\<0.0001, *n* = 129) revealed significant effects of year (F~1,125~ = 33.89, *P*\\<0.0001) and zone (F~2,125~ = 9.01, *P* = 0.0002), with condition better in 2007 than in 2008, and best in the transition zone, intermediate in the urban zone and worst in the rural zone ([Fig. ", "1B](#pone-0020483-g001){ref-type=\"fig\"}). ", "Model 2 (*R^2^* ~adj~ = 0.11, F = 7.29, *P* = 0.0001, *n* = 149) revealed that body condition was poorest in 2008 (year F~2,145~ = 6.99, *P* = 0.001), and better in the transition zone than in the urban zone (F~1,145~ = 6.95, *P* = 0.009; [Fig. ", "2B](#pone-0020483-g002){ref-type=\"fig\"}).", "\n\nThe reduced model 1 ANCOVA for adult males (*R^2^* ~adj~ = 0.31, F = 18.89, *P*\\<0.0001, *n* = 196) retained an interaction between year and date (F~1,190~ = 4.01, *P* = 0.047). ", "We used the JMP 7.0 profiler to estimate the regions of significance for each variable. ", "The relationship between date and body condition (date: F~1,190~ = 73.77, *P*\\<0.0001) was significantly positive in both years, but stronger in 2007. ", "Body condition was generally better in 2007 than in 2008 (year: F~1,190~ = 26.39, *P*\\<0.0001; [Fig. ", "1C](#pone-0020483-g001){ref-type=\"fig\"}), significantly so in bats captured on or after approximately 09-July. ", "Bats in the transition zone were in better condition than their rural or urban counterparts, which did not differ from each other (zone: F~2,190~ = 11.26, *P*\\<0.0001; [Fig. ", "1C](#pone-0020483-g001){ref-type=\"fig\"}). ", "The reduced model 2 (*R^2^* ~adj~ = 0.30, F = 17.02, *P*\\<0.0001, *n* = 226) retained a year-by-zone interaction (F~2,219~ = 3.97, *P* = 0.02). ", "In general, body condition was better in 2007 than in 2008 (year: F~2,219~ = 10.64, *P*\\<0.0001; [Fig. ", "2C](#pone-0020483-g002){ref-type=\"fig\"}), but not different between any other two years, and the difference was only significant in the urban zone. ", "The effect of zone (F~1,219~ = 13.28, *P* = 0.0003) was significant in 2007 and 2008, when transition-zone bats were in better condition than their urban counterparts ([Fig. ", "2C](#pone-0020483-g002){ref-type=\"fig\"}). ", "Body condition increased as a function of date (F~1,219~ = 84.65, *P*\\<0.0001).", "\n\nThe reduced model 1 ANCOVA for juveniles (*R^2^* ~adj~ = 0.25, F = 11.08, *P*\\<0.0001, *n* = 218) revealed that body condition was better in 2007 than in 2008 (year: F~1,210~ = 39.17, *P*\\<0.0001) and in the transition zone than in either of the other two, between which it did not differ (zone: F~2,210~ = 11.20, *P*\\<0.0001; [Fig. ", "1D](#pone-0020483-g001){ref-type=\"fig\"}). ", "Females tended to be in slightly, but not significantly, better condition than males (F~1,210~ = 0.61, *P* = 0.44; [Fig. ", "1D](#pone-0020483-g001){ref-type=\"fig\"}). ", "Model 2 (*R^2^* ~adj~ = 0.27, F = 11.01, *P*\\<0.0001, *n* = 194) retained a significant date-by-zone interaction (F~1,186~ = 4.73, *P = *0.03). ", "The effect of date (F~1,186~ = 16.34, *P*\\<0.0001) was significantly positive in both zones, but was stronger in the transition zone, and transition-zone bats were generally in better condition than urban bats (zone: F~1,186~ = 18.21, *P*\\<0.0001; [Fig. ", "2D](#pone-0020483-g002){ref-type=\"fig\"}), but not significantly so until about 18-July. ", "The model also retained a date-by-sex interaction (F~1,186~ = 8.69, *P* = 0.004). ", "Condition increased significantly with date in both sexes, but more steeply in males, and there was no effect of sex (F~1,186~ = 0.46, *P* = 0.50). ", "Bats born in 2008 were in the worst condition, but condition did not differ between bats born in 2006 or 2007 (year: F~2,186~ = 16.18, *P*\\<0.0001; [Fig. ", "2D](#pone-0020483-g002){ref-type=\"fig\"}).", "\n\nReproductive rates {#s3b}\n------------------\n\nReproductive rates of adult females did not vary among zones (model 1: χ^2^ ~2~\\<3.65, *P*\\>0.16 in both years; model 2: χ^2^ ~1~\\<2.15, *P*\\>0.14 in all three years) or between 2007 and 2008, according to model 1 analyses (χ^2^ ~1~\\<1.85, *P*\\>0.17 in all three zones). ", "Model 2 analyses revealed that female reproductive rates varied among years in the urban zone (χ^2^ ~2~ = 10.93, *P* = 0.004) but not in the transition zone (χ^2^ ~2~ = 3.58, *P* = 0.17). ", "The urban rate was highest in 2006 (χ^2^ ~1~\\>8.40, *P*\\<0.005 in both comparisons), but similar between 2007 and 2008 (χ^2^ ~1~ = 0.07, *P = *0.79; [Fig. ", "3A](#pone-0020483-g003){ref-type=\"fig\"}). ", "Adult male reproductive rates differed among zones in 2008 (model 1: χ^2^ ~2~ = 9.93, *P = *0.007; model 2: χ^2^ ~1~ = 9.37, *P = *0.002), when they were higher in urban than in transition-zone bats (χ^2^ ~2~ = 9.37, *P = *0.002) but not different between any other two zones (Fisher\\'s exact tests: χ^2^ ~1~\\<3.19, *P*\\>0.08 in both cases; [Fig. ", "3B](#pone-0020483-g003){ref-type=\"fig\"}). ", "There were no other significant associations between zone and male reproductive status (model 1 2007: χ^2^ ~2~ = 0.08, *P* = 0.97, model 2: χ^2^ ~1~\\<2.48, *P*\\>0.12 in both cases; [Fig. ", "3B](#pone-0020483-g003){ref-type=\"fig\"}). ", "Male reproductive rates were similar among years in the transition (χ^2^ ~2~ = 1.71, *P = *0.43) and rural zones (Fisher\\'s exact test: χ^2^ ~1~ = 3.04, *P = *0.10), but different in the urban zone (χ^2^ ~2~ = 23.05, *P*\\<0.001), where the rate was highest in 2008 (χ^2^ ~1~\\>15.0, *P*\\<0.001 in both comparisons), but similar between 2006 and 2007 (χ^2^ ~1~ = 0.03, *P = *0.85; [Fig. ", "3B](#pone-0020483-g003){ref-type=\"fig\"}). ", "Finally, there was about twice as much yearly variation in the reproductive rates of urban males (Cramer\\'s V = 0.37) as of urban females (Cramer\\'s V = 0.18).", "\n\n![", "Comparison of reproductive rates among zones and years for *M. lucifugus*.\\\nPanels present results for (A) 429 adult female and (B) 267 adult male bats captured near Calgary, Alberta, Canada. ", "Numbers above bars are counts of individuals, different letters above bars indicate yearly variation within a zone, and different letters at bases of bars in (B) indicate within-year variation among zones, which was not significant in (A).](pone.0020483.g003){#pone-0020483-g003}\n\nSpermatogenesis {#s3c}\n---------------\n\nThe reduced ANCOVA (R^2^ ~adj~ = 0.16, F = 5.32, *P*\\<0.0001, *n = *113) revealed that although mean swelling tended to be highest in urban bats, intermediate in transition-zone bats and lowest in rural bats, the zone effect was not significant (F~2,107~ = 1.71, *P = *0.19; [Fig. ", "4](#pone-0020483-g004){ref-type=\"fig\"}). ", "The effect of year was not significant either (F~1,107~ = 0.007, *P = *0.94), although swelling tended to be greater in 2008 than in 2007 ([Fig. ", "4](#pone-0020483-g004){ref-type=\"fig\"}). ", "With both fixed factors in the model, swelling varied with body condition (F~1,107~ = 14.53, *P*\\<0.001), but not date (F~1,107~ = 3.35, *P = *0.07). ", "However, a multiple regression with date and body-condition index as predictors (r^2^ ~adj~ = 0.16, F = 11.55, *P*\\<0.0001, *n = *113) revealed an increase in swelling with date (F~1,110~ = 4.35, *P = *0.04) and body condition (F~1,110~ = 16.37, *P*\\<0.0001).", "\n\n![", "Comparison of sperm production among zones and between years for adult male *M. lucifugus*.\\\nWe measured the linear extent of testicular/caudal swelling in 113 bats captured near Calgary, Alberta, Canada, and used it as an index of sperm production.](pone.0020483.g004){#pone-0020483-g004}\n\nReproductive success {#s3d}\n--------------------\n\nThe model 1 loglinear analysis produced a final model that retained all effects, with a significant zone\\*year\\*age interaction (χ^2^ ~2~ = 10.78, *P = *0.005), but the model 2 analysis did not (χ^2^ ~2~ = 2.26, *P = *0.32). ", "However, model 2 two-way interactions involving age were significant (year\\*age: χ^2^ ~2~ = 31.45, *P*\\<0.001; zone\\*age: χ^2^ ~2~ = 11.05, *P = *0.001). ", "Two-way contingency table analyses for each year revealed significant variation in juvenile production among zones in 2008 (χ^2^ ~2~ = 11.94, *P = *0.003) and 2007 (χ^2^ ~2~ = 6.70, *P = *0.04). ", "Reproductive success was lower in the urban than in the transition zone, and significantly so in 2006 and 2007 (2006: χ^2^ ~1~ = 7.01, *P = *0.008; 2007: χ^2^ ~1~ = 5.35, *P = *0.02; 2008: χ^2^ ~1~ = 1.03, df = 1, *P = *0.31; [Fig. ", "5](#pone-0020483-g005){ref-type=\"fig\"}). ", "It tended to be lower in the rural than in the transition zone, but only significantly so in 2008 (2007: χ^2^ ~1~ = 0.48, *P = *0.49; 2008: χ^2^ ~1~ = 9.97, *P = *0.002; [Fig. ", "5](#pone-0020483-g005){ref-type=\"fig\"}). ", "In 2007, reproductive success tended to be lower in the urban than in the rural zone, but not quite significantly so (χ^2^ ~1~ = 3.70, *P = *0.054; [Fig. ", "5](#pone-0020483-g005){ref-type=\"fig\"}). ", "In 2008, the difference between the urban and rural zones was significant and in the other direction (χ^2^ ~1~ = 8.0, *P = *0.005; [Fig. ", "5](#pone-0020483-g005){ref-type=\"fig\"}). ", "Reproductive success differed among years in the urban zone (χ^2^ ~1~ = 29.96, *P*\\<0.001), where it was highest in 2008 (χ^2^ ~1~\\>10.75, *P*\\<0.001 in both comparisons; [Fig. ", "5](#pone-0020483-g005){ref-type=\"fig\"}), but not different between 2006 and 2007 (χ^2^ ~1~ = 2.50, *P = *0.14; [Fig. ", "5](#pone-0020483-g005){ref-type=\"fig\"}). ", "Reproductive success did not vary among years in the rural or transition zones (χ^2^ ~2~\\<4.10, *P*≥0.12 in both cases; [Fig. ", "5](#pone-0020483-g005){ref-type=\"fig\"}).", "\n\n![", "Comparison of an index of reproductive success of *M. lucifugus* among zones and years.\\\nWe used ratios between post-parturient adult females and volant juvenile near Calgary, Alberta, Canada as indices of reproductive success. ", "Numbers above bars are actual ratios, different letters above bars indicate yearly variation within a zone, and letters at bases of bars represent differences among zones within a year.](pone.0020483.g005){#pone-0020483-g005}\n\nPost-natal growth {#s3e}\n-----------------\n\nBoth reduced ANOVAs (model 1: *R^2^* ~adj~ = 0.04, F = 2.51, *P = *0.02, *n* = 231; model 2: *R^2^* ~adj~ = 0.09, F = 4.33, *P = *0.0004, *n* = 207) retained year-by-zone interactions (model 1: F~2,224~ = 3.34, *P* = 0.04, model 2: F~2,200~ = 3.76, *P* = 0.03). ", "Juveniles born in 2008 tended to be smallest, but year effects (model 1: F~1,224~ = 5.61, *P = *0.02; model 2: F~2,200~ = 9.92, *P = *0.0001) were only significant in the transition zone, and the effect of zone (model 1: F~2,224~ = 0.47, *P = *0.63; model 2: F~1,200~ = 0.02, *P = *0.88) was not significant in any year ([Fig. ", "6A,B](#pone-0020483-g006){ref-type=\"fig\"}). ", "In general, females were larger than males ([Fig. ", "6A,B](#pone-0020483-g006){ref-type=\"fig\"}), significantly so according to model 2 (F~1,200~ = 4.36, *P = *0.04), but not quite according to model 1 (F~1,224~ = 3.64, *P = *0.058).", "\n\n![", "Comparison of skeletal size among zones and years for juvenile *M. lucifugus*.\\\nPanels present results for (A) 133 female and 98 male and (B) 124 female and 83 male juvenile *M. lucifugus*, near Calgary, Alberta, Canada.](pone.0020483.g006){#pone-0020483-g006}\n\nReproductive phenology {#s3f}\n----------------------\n\nThere did not seem to be a consistent pattern in terms of among-zone differences in phenology ([Table S3](#pone.0020483.s003){ref-type=\"supplementary-material\"}). ", "However, compared to the other two years, events occurred later in 2008 and the lactation period seemed to last longer. ", "Fledging was delayed in 2008, when 9% of juveniles were captured in July, compared to roughly half of those born in 2006 and 2007. ", "Furthermore, only in 2008 did we capture newly fledged bats well into September, some of which exhibited much less wing development, e.g., larger epiphyseal gaps indicative of more recent fledging [@pone.0020483-BrunetRossinni1], than even the first juveniles captured in the other two years.", "\n\nIn summary, body condition of bats was generally maximized in the transition zone, but not different between the urban and rural zones (although the condition of lactating females was better in the urban than in the rural zone). ", "The summer of 2008 was also when bats in all three zones were generally in the worst condition. ", "Whereas the reproductive rates of adult females did not vary among zones, the reproductive percentage of adult males in 2008 was higher in the urban zone than in the transition zone. ", "Mean caudal swelling (an index of spermatogenesis) was similar among zones. ", "The proportion of juveniles (an index of reproductive success) was generally maximized in the transition zone, and in 2008, it was higher in the urban zone than in the rural zone. ", "Among-year differences in reproductive rates and juvenile production were only observed in the urban zone, where the female reproductive rate was highest in 2006, the male reproductive rate was highest in 2008, and the production of juveniles was highest in 2008. ", "Mean forearm length of juveniles (an index of post-natal growth) was unaffected by zone, but transition-zone juveniles born in 2008 were smaller than those born in 2006 or 2007. ", "Finally, most reproductive events tended to occur later in 2008 than in 2006 or 2007.", "\n\nDiscussion {#s4}\n==========\n\nThere is growing interest in the demographic responses of wild animals to urbanization, although findings from urban autecological studies (mainly avian) are equivocal. ", "For example, nesting in an urban area was not detrimental to the reproductive success of birds in several studies [@pone.0020483-Sodhi1], [@pone.0020483-Dykstra1], [@pone.0020483-Minor1], [@pone.0020483-Coleman2], whereas others reported reduced fledging success in relation to urbanization [@pone.0020483-Boal1], [@pone.0020483-Millsap1]. ", "A more limited literature suggests that the demographic effects of urbanization on mammals are also variable. ", "Urbanization enhanced the reproduction and survival of synanthropes such as fox squirrels *Sciurus niger* Geofroy [@pone.0020483-McCleery1] and raccoons (*Procyon lotor*) [@pone.0020483-Prange1]. ", "It may also benefit non-synanthropes. ", "Urban black bears (*Ursus americanus*) had greater body mass and productivity than non-urban bears [@pone.0020483-Beckmann1], and predation on hedgehogs (*Erinaceus europaeus*) was lower in urban than in rural areas [@pone.0020483-Doncaster1]. ", "In contrast, urbanization did not affect the body mass and annual survival of striped skunks (*Mephitis mephitis*) [@pone.0020483-Gehrt2], and was detrimental to both the recruitment and survivorship of Key deer (*Odocoileus virginianus clavium*) [@pone.0020483-Harveson1] and the survival of wood mice (Apodemus sylvaticus) [@pone.0020483-Dickman1].", "\n\nA five-year study of another synanthropic bat, *E. fuscus*, in Fort Collins, Colorado [@pone.0020483-OShea1] observed female reproductive rates and juvenile survival that were high compared to range-wide values. ", "Urbanization may have favoured the population growth and range expansion of *E. fuscus*, possibly by increasing the availability of buildings [@pone.0020483-OShea1], in which they roosted exclusively (T. O\\'Shea, pers. ", "comm.). ", "However, O\\'Shea et al. [", "@pone.0020483-OShea1] did not examine how bat demography differed between urban and non-urban populations. ", "Thus, ours is the first study to compare urban and non-urban bats in such a way that inferences may be drawn about how urbanization affects bat demography, and it assesses a novel hypothesis: that city life offers Prairie bats a fitness advantage. ", "The most direct measures of fitness are lifetime reproductive success [@pone.0020483-Grafen1] and lifetime recruitment [@pone.0020483-McCleery2], which incorporate fecundity and, especially in long-lived species, adult survivorship. ", "However, both parameters are often hard to estimate in natural populations [@pone.0020483-Barrowclough1]. ", "This is especially true for species such as the little brown bat, which has a maximum longevity\\>30 years [@pone.0020483-Keen1], making it necessary to use less direct estimators of fitness.", "\n\nBody condition was the most fundamental measure of fitness we considered. ", "It reflects individual foraging success, and therefore phenotypic fitness [@pone.0020483-Jakob1], and influences other parameters related to lifetime reproductive success. ", "For bats, it may affect: whether or not they reproduce [@pone.0020483-Barclay1], the reproductive success of males (assuming volume of sperm produced predicts mating success) [@pone.0020483-Entwistle1] and females [@pone.0020483-Barclay1], and the likelihood of hibernating successfully [@pone.0020483-Humphries1]. ", "Given the hypothesis that urbanization increases prey availability while decreasing the costs of flight, we expected urban bats to be in better body condition than non-urban conspecifics. ", "Instead, bats consistently did best in the transition zone, where juveniles also gained mass more rapidly compared to their urban counterparts.", "\n\nReproductive rates, or the proportions of adults that were reproductively active each year, are fairly mutable population parameters, as might be expected in long-lived animals, and are especially variable in temperate-zone bats, whose decision to reproduce may depend on extrinsic (roost and food availability, weather) and intrinsic (body condition) factors [@pone.0020483-Barclay1]. ", "Given the hypothesis that urbanization enhances all these factors for bats in the Prairies, we expected urban bats to have the highest reproductive rates. ", "Instead, female rates were similar among zones. ", "Male rates were more variable, and differed among zones in 2008, when the transition zone had the fewest reproductive males. ", "These results not only refute our hypothesis, but they also indicate that the consistent differences in adult body condition among zones did not cause reproductive rates to vary. ", "They also did not affect the volume of sperm produced, despite the correlation between individual testicular/caudal swelling and body condition. ", "This suggests the existence of body condition thresholds below which females may not reproduce and spermatogenesis may be compromised, but which were not attained in this study. ", "Also, all studies that have examined variation in the reproductive rates of bats on an annual basis or in relation to habitat quality [@pone.0020483-Barclay1], [@pone.0020483-Barclay2], [@pone.0020483-OShea1], [@pone.0020483-Grindal1], [@pone.0020483-Thomas1], [@pone.0020483-Frick1] have considered females. ", "This is not surprising. ", "Females invest more in reproduction than males do during the summer [@pone.0020483-Barclay2], so when conditions are poor, the consequences of raising a pup to independence should theoretically outweigh those of producing sperm. ", "However, these results underscore how poorly we understand the ecology of male bats, whose reproductive rates may actually be more variable than those of females in certain situations. ", "Thus, future studies of the demography of temperate-zone vespertilionid bats should place more emphasis on male reproduction than in the past.", "\n\nContrary to the prediction that urban bats would have the greatest reproductive success (as indexed by the ratio of volant juveniles to post-parturient females), transition-zone bats generally did best, a result we hypothesize is directly related to their better body condition. ", "An improvement in maternal body condition should not only increase the energy allocated to milk production, but also increase survivorship [@pone.0020483-Koehler1], both of which should enhance fledging success. ", "Furthermore, mortality of juvenile bats may occur mainly during the post-fledging stage, as a result of poor body condition [@pone.0020483-Sano1]. ", "The fact that our prediction was not supported by our data could also indicate that our belief that urban bats experience reduced predation risk needs revising given recent findings that tawny owls (*Strix aluco*) were more likely to consume bats in urban than in non-urban areas [@pone.0020483-Lesiski1]. ", "We observed great horned owls (*Bubo virginianus*), which prey on bats [@pone.0020483-Kittredge1], throughout our study area, but at more rural and urban sites than transition-zone sites. ", "Black-billed magpies (*Pica pica*) were also common in our study area, but nowhere more so than in the city, and they are documented predators of little brown bats [@pone.0020483-Riskin1], as we observed. ", "Interestingly, only in the urban zone did we ever observe emerging little brown bats exhibiting what seemed to be anti-predator behaviour.", "\n\nWe had no *a priori* prediction as to the effect of urbanization on size of volant juveniles, but we did not observe one, perhaps because of an absolute requirement for pups to attain skeletal dimensions close to those of adults before they can fly [@pone.0020483-Barclay3]. ", "However, only in the transition zone were bats born in 2008 smaller than bats born in 2006 or 2007, as might be expected given poorer maternal body condition [@pone.0020483-Koehler1] and inclement weather [@pone.0020483-Hoying1]. ", "Because lift and manoeuvrability are inversely related to wing loading, bats with shorter wings may have increased flight costs and reduced hunting success [@pone.0020483-Norberg1]. ", "Why this year effect was not detected in rural and urban bats is hard to explain, but a 1-mm-difference in mean forearm length may not be biologically significant.", "\n\nFindings that several aspects of the fitness of little brown bats were maximized in the transition zone were surprising. ", "This zone was an artificial construct, included simply to separate urban and rural bat assemblages, and its size was based on foraging ranges of much larger *Lasiurus cinereus* [@pone.0020483-Coleman1], and yet, it turned out to be biologically relevant for little brown bats. ", "Furthermore, had we hypothesised that urbanization is detrimental to fitness, we would have predicted that rural individuals are in the best condition, as was observed, for example, in house sparrows (*Passer domesticus*) in Hungary [@pone.0020483-Liker1]. ", "Thus, we made no explicit predictions regarding the relative fitness of transition-zone bats -- if anything, we would have expected them to exhibit intermediate, or perhaps the most variable, fitness -- and we might have omitted them from the analysis had they not produced such striking results.", "\n\nLittle brown bats in the transition zone had increased fitness even though this was where insect availability was lowest and individual foraging rates did not differ among zones [@pone.0020483-Coleman1]. ", "Thus, this result does not seem to reflect patterns of prey availability or feeding activity. ", "Rather, we hypothesize that among-zone variation in bat fitness reflects among-zone variation in food competition. ", "The difference between competition in the urban and transition zones may partly reflect density-dependent effects because the urban bat assemblage is characterized by a marked increase in the abundance of little brown bats [@pone.0020483-Coleman1]. ", "Adams [@pone.0020483-Adams2] found that compared to adults, newly fledged little brown bats, being less manoeuvrable, were restricted to hunting in relatively open microhabitats. ", "The reaction of adults to the appearance of these volant juveniles, i.e., potential competitors, depended on population density. ", "When it was high, they moved into more cluttered microhabitats (where the energetic costs of flight were greater) and switched to less profitable prey. ", "When it was low, they did not alter their foraging behaviour. ", "Roost type and colony size may also be relevant. ", "With the exception of one tree colony, urban maternity roosts (n = 6) in our study were in human structures, with colony sizes ranging from 52 to \\>500 adult females. ", "Similarly, the two rural colonies (both in attics) were large: one had \\>250 and the other had \\>1,000 adult females. ", "In contrast, transition-zone bats (n = 6 roosts) roosted in trees or under shingles, and the largest colony (in a tree) had 265 adult females. ", "Larger colonies in artificial than in tree roosts, while not unusual [@pone.0020483-Barclay4], may be detrimental to fitness. ", "Reduced reproductive success as a function of increasing colony size is documented in *Myotis griescens* [@pone.0020483-Tuttle1] and *M. myotis* [@pone.0020483-Zahn1]. ", "Increased competition in larger colonies may force bats to spend more time foraging [@pone.0020483-Tuttle1] or to forage further from their roosts [@pone.0020483-Kunz2], although the latter may not be an option for bats in the rural zone, where the distribution of suitable habitat was patchiest [@pone.0020483-Coleman1]. ", "Finally, the fact that adult sex-ratios were most even in the transition zone [@pone.0020483-Coleman1] may contribute to reduced food competition because males have lower energy requirements than females do [@pone.0020483-Kunz2]. ", "Thus, the trend toward reduced prey availability in the transition zone may not pose a constraint if bats can meet their energy needs in a shorter period of time or forage closer to their roosts.", "\n\nThat we detected annual variation in reproductive rates and reproductive success only in the urban zone could be an artefact of small sample sizes of rural and transition-zone bats. ", "Nevertheless, absolute differences in proportions of juvenile bats between any two years were greatest in the urban zone. ", "Thus, urban populations may be less buffered than non-urban populations against yearly variation in reproductive success. ", "Similarly, increased inter-annual variation of demographic parameters as a consequence of urbanization have been observed in American crows (*Corvus brachyrhynchos*) [@pone.0020483-McGowan1] and fox squirrels [@pone.0020483-McCleery3]. ", "The fact that male reproductive rates and reproductive success of urban bats were highest in 2008 may be related to weather. ", "By increasing insect abundance, an increase in precipitation may enhance survival of [@pone.0020483-Frick1] and reproduction by little brown bats, especially if it occurs during the lactation period [@pone.0020483-Adams3]. ", "Indeed, the amount of rainfall in Calgary during the lactation period was highest in 2008, and insect availability was higher in 2008 than in 2007 [@pone.0020483-Coleman1]. ", "At the same time, wet weather may be associated with reproductive delays and reduced body condition [@pone.0020483-Grindal1], both of which were observed in 2008.", "\n\nOur data did not support the hypothesis that urbanization benefits little brown bats in grassland ecosystems. ", "Urban bats may be more abundant, but there was no evidence that they were fitter than non-urban conspecifics, underscoring the fact that population density can be a misleading indicator of habitat quality [@pone.0020483-VanHorne1]. ", "Ultimately, we reject the idea that the urban area is a population source, and instead postulate that it could be a population sink. ", "Furthermore, relative to the transition zone, the urban zone was characterized by a more female-biased adult sex ratio [@pone.0020483-Coleman1] and an increased male reproductive rate in 2008. ", "Additionally, among-zone variation in body condition was not associated with among-zone variation in reproductive rates. ", "Thus it seems that urban individuals may opt to reproduce to the detriment of their body condition and potentially to their future survival [@pone.0020483-Ransome1]. ", "If little brown bats erroneously perceive a Prairie city as offering higher quality habitat than the surrounding landscape (perhaps due to increased roost availability or habitat connectivity), and are therefore drawn to it, then the city could be an ecological trap [@pone.0020483-Battin1], [@pone.0020483-Donovan1]. ", "Solid evidence of a habitat sink or ecological trap resulting from urban development is rare [@pone.0020483-Battin1], and without data on immigration, emigration and mortality, the existence of source-sink dynamics cannot be conclusively established.", "\n\nGiven that little brown bats are highly synanthropic [@pone.0020483-Barclay4] and that increased urban abundance of commensal animals often reflects their enhanced demographic performance [@pone.0020483-Destefano1], we judged this to be an ideal study system to address our hypothesis. ", "In other words, if urbanization benefits any bats anywhere, it seems especially likely to do so for little brown bats in the Prairies, where the availability of roosts and prey may be limited by landscape structure. ", "The inability to detect any such benefits suggests that urbanization may be universally detrimental to the fitness of at least this species and perhaps other bats, and this may be cause for concern under the current scenario of rapid urban expansion.", "\n\nSupporting Information {#s5}\n======================\n\n###### \n\n**Mass data by age, sex and adult female reproductive status for** ***M. lucifugus*** **captured from 2006 to 2008 in and near Calgary, Alberta, Canada.**", "\n\n(DOC)\n\n###### \n\nClick here for additional data file.", "\n\n###### \n\n**Reproductive phenology of** ***M. lucifugus*** **in the rural, transition and urban zones, from 2006 to 2008, in and near Calgary, Alberta, Canada.**", "\n\n(DOC)\n\n###### \n\nClick here for additional data file.", "\n\n###### \n\n**Numbers of individuals per age, sex and adult reproductive-status category, for** ***M. lucifugus*** **captured from 2006 to 2008 in and near Calgary, Alberta, Canada.** ", "Within-year recaptures are omitted from total numbers of bats in each age/sex category, but not necessarily from numbers in each adult reproductive status category, if reproductive status changed from first to second capture. ", "R = reproductive (undergoing spermatogenesis), NR = non-reproductive, NOP = not obviously pregnant (female captured before date on which we captured the first lactating female in any year, fetus undetected), P = pregnant, L = lactating, PL = post-lactating.", "\n\n(DOC)\n\n###### \n\nClick here for additional data file.", "\n\nFor assistance in the field, we thank: N. Boulic, A. Bugajski, A. Goldie, T. Hershon, C. Olson, P. Payette, and especially E. Swerdfeger. ", "For facilitating access to public lands, we gratefully acknowledge: the Government of Alberta (Tourism Parks and Recreation), the City of Calgary, and Parks Canada. ", "We also thank the private landowners who not only welcomed us onto their properties, but also showed both hospitality and an interest in bats and our work with them.", "\n\n**Competing Interests:**The authors have declared that no competing interests exist.", "\n\n**Funding:**Funding for this research was provided by the Natural Sciences and Engineering Research Council of Canada (Discovery Grant \\#69-0424, [www.nserc-crsng.gc.ca/Professors-Professeurs/Grants-Subs/DGIGP-PSIGP_eng.asp](http://www.nserc-crsng.gc.ca/Professors-Professeurs/Grants-Subs/DGIGP-PSIGP_eng.asp)), Killam Trusts ([www.killamtrusts.ca](http://www.killamtrusts.ca)), Bat Conservation International ([www.batcon.org/index.php/what-we-do/grants/student-research-scholarships](http://www.batcon.org/index.php/what-we-do/grants/student-research-scholarships)), University of Calgary ([www.ucalgary.ca](http://www.ucalgary.ca)), and Canadian Tire. ", "The funders had no role in study design, data collection and analysis, decision to publish, or preparation of the manuscript.", "\n\n[^1]: Conceived and designed the experiments: JLC RMRB. ", "Performed the experiments: JLC. ", "Analyzed the data: JLC. ", "Contributed reagents/materials/analysis tools: JLC. ", "Wrote the paper: JLC.", "\n" ]
{ "pile_set_name": "PubMed Central" }
[ 0.011461318051575931, 0.011235955056179775, 0.0045871559633027525, 0, 0.007936507936507936, 0, 0.007194244604316547, 0, 0.007575757575757576, 0.005025125628140704, 0, 0.004464285714285714, 0.00749063670411985, 0.012121212121212121, 0.009345794392523364, 0.0056179775280898875, 0.010752688172043012, 0.0035971223021582736, 0.010101010101010102, 0.013986013986013986, 0.004524886877828055, 0, 0, 0.0045045045045045045, 0.006060606060606061, 0.010452961672473868, 0, 0.006666666666666667, 0.012345679012345678, 0.004048582995951417, 0.004651162790697674, 0.011904761904761904, 0, 0, 0.005025125628140704, 0.010526315789473684, 0, 0.00684931506849315, 0, 0.004081632653061225, 0.0048543689320388345, 0.006535947712418301, 0, 0.01060070671378092, 0.008771929824561403, 0.01020408163265306, 0.005649717514124294, 0.01090909090909091, 0, 0.011194029850746268, 0.005128205128205128, 0.008064516129032258, 0, 0.004484304932735426, 0.004329004329004329, 0, 0.009345794392523364, 0, 0, 0.00392156862745098, 0.004694835680751174, 0, 0.009216589861751152, 0.012145748987854251, 0, 0, 0.0035460992907801418, 0, 0.015625, 0, 0.009259259259259259, 0.01, 0.0297029702970297, 0, 0.006309148264984227, 0, 0, 0, 0, 0.004901960784313725, 0.01098901098901099, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004166666666666667, 0.016260162601626018, 0, 0, 0, 0, 0, 0, 0.0033003300330033004, 0, 0.011363636363636364, 0, 0.012345679012345678, 0, 0, 0, 0, 0, 0, 0, 0.0049504950495049506, 0, 0.012539184952978056, 0, 0.012244897959183673, 0, 0.005555555555555556, 0, 0.006622516556291391, 0.019801980198019802, 0, 0.011494252873563218, 0, 0.013888888888888888, 0.019417475728155338, 0, 0.011494252873563218, 0, 0.012658227848101266, 0.014925373134328358, 0, 0.01652892561983471, 0, 0.020833333333333332, 0.011811023622047244, 0, 0.012195121951219513, 0.006756756756756757, 0.012987012987012988, 0, 0, 0.010638297872340425, 0.01935483870967742, 0, 0.01440922190201729, 0, 0.0106951871657754, 0, 0.012987012987012988, 0, 0, 0, 0, 0.006644518272425249, 0, 0.020689655172413793, 0, 0.006666666666666667, 0.015444015444015444, 0, 0.00530035335689046, 0.01948051948051948, 0.020512820512820513, 0.017241379310344827, 0, 0.017045454545454544, 0, 0.012987012987012988, 0, 0.014598540145985401, 0, 0.005649717514124294, 0.017094017094017096, 0, 0.015873015873015872, 0, 0, 0, 0.01125703564727955, 0.03669724770642202, 0, 0.02, 0.0223463687150838, 0, 0, 0, 0, 0.003424657534246575, 0, 0, 0, 0, 0.005555555555555556, 0.003787878787878788, 0.0056179775280898875, 0, 0, 0.01764705882352941, 0, 0.01020408163265306, 0, 0.00819672131147541, 0.011428571428571429, 0.004672897196261682, 0.0091324200913242, 0, 0, 0.009345794392523364, 0.004032258064516129, 0.008583690987124463, 0.009433962264150943, 0.005263157894736842, 0, 0.005813953488372093, 0.012698412698412698, 0, 0.006993006993006993, 0.002577319587628866, 0, 0, 0, 0, 0, 0, 0.019417475728155338, 0, 0.004366812227074236, 0, 0, 0, 0.0047169811320754715, 0.006802721088435374, 0.0032679738562091504, 0.005319148936170213, 0.004878048780487805, 0, 0.0036101083032490976, 0.008695652173913044, 0.005494505494505495, 0, 0, 0.0036101083032490976, 0.0038910505836575876, 0, 0.0048543689320388345, 0, 0, 0.004016064257028112, 0.00558659217877095, 0, 0, 0, 0, 0, 0.00847457627118644, 0, 0.007936507936507936, 0.011904761904761904, 0.009316770186335404, 0.008695652173913044, 0, 0, 0, 0, 0.00847457627118644, 0, 0.008968609865470852, 0.005780346820809248, 0.006172839506172839, 0, 0.008620689655172414, 0, 0.0051813471502590676, 0, 0.006024096385542169, 0.006289308176100629, 0.004, 0.006944444444444444, 0, 0, 0, 0.018518518518518517, 0, 0.018518518518518517, 0, 0, 0.01556420233463035, 0.018518518518518517, 0.05, 0.006060606060606061, 0, 0, 0.0197869101978691, 0, 0.017241379310344827, 0.03125, 0.041666666666666664, 0.019230769230769232, 0.047619047619047616, 0 ]
0.005721
5
[ "---\nabstract: |\n The LOFAR radio telescope creates Petabytes of data per year. ", "This data is important for many scientific projects. ", "The data needs to be efficiently processed within the timespan of these projects in order to maximize the scientific impact. ", "We present a workflow orchestration system that integrates LOFAR processing with a distributed computing platform. ", "The system is named Automated Grid-enabled LOFAR Workflows (AGLOW). ", "AGLOW makes it fast and easy to develop, test and deploy complex LOFAR workflows, and to accelerate them on a distributed cluster architecture. ", "AGLOW provides a significant reduction in time for setting up complex workflows: typically, from months to days. ", "We lay out two case studies that process the data from the LOFAR Surveys Key Science Project. ", "We have implemented these into the AGLOW environment. ", "We also describe the capabilities of AGLOW, paving the way for use by other LOFAR science cases. ", "In the future, AGLOW will automatically produce multiple science products from a single dataset, serving several of the LOFAR Key Science Projects.", "\n\n Target: IEEE International Conference On e-Science Keywords: Workflow management software, Radio Astronomy, Distributed Computing, Big Data applications\nbibliography:\n- 'bibliography.bib'\ntitle: |\n **Fast and Reproducible LOFAR Workflows with AGLOW\\\n [ A.P. Mechev[^a,1^]{},J.B.R Oonk[^a,b,c,2^]{}, T. Shimwell[^b,3^]{}, A. Plaat[^d,4^]{}, H.T. Intema[^a,5^]{}, H.J.A. Röttgering[^a,6^]{} ]{}\\\n **\n---\n\nIntroduction {#sec:intro}\n============\n\nData sets in radio astronomy have increased 1000-fold over the past decade[@sabater_datasize]. ", "It is no longer feasible to move, store and process these data sizes at university clusters, nor to process these data manually. ", "LOFAR, the Low-Frequency Array[@LOFAR] is a modern and powerful radio telescope that creates more than 5 Petabytes of data per year. ", "At present, the majority of LOFAR time is allocated to several Key Science Projects (KSPs)[@lotss]. ", "These projects need to process hundreds or thousands of observations. ", "Typical observations produce approximately 14 TB of archived data. ", "Obtaining high fidelity images from this data requires complex processing steps. ", "To manage and automate the data processing, workflow management software is needed. ", "This software needs to accelerate LOFAR processing on a High Throughput Computing (HTC) cluster while ensuring it is easy to prototype, test, and integrate future algorithms and pipelines.", "\n\nTo automate LOFAR data processing, we have worked with the LOFAR Surveys KSP (SKSP). ", "Together, we designed a software suite that integrates LOFAR software[@cookbook] with the Dutch grid infrastructure[@dutchinfra]. ", "This software, based on Apache Airflow[^1], makes it easy to add future science cases, extend and modify pipelines, include data quality checks, and rapidly prototype complex pipelines. ", "For the SKSP use cases, AGLOW achieves a significant reduction in development time: from months to days, allowing researchers to concentrate on data analysis rather than management of processing. ", "Additionally, and perhaps more importantly, the software versions and repositories used are defined within the workflow. ", "This makes reproducibility an integral part of the AGLOW software. ", "Finally, the software is built to leverage an HTC cluster by seamlessly submitting the processing jobs through the cluster’s job submission system[@glite]. ", "The work presented here builds on our previous work parallelizing single LOFAR jobs[@mechev] on a distributed environment. ", "The majority of processing was done at SURFsara at the Amsterdam Science Park[@SurfSara], which is one of the sites used by the LOFAR Long Term Archive (LTA)[^2]. ", "Ongoing efforts include scheduling and processing data at clusters in Poznan in Poland and Jülich in Germany.", "\n\n**Contributions:** The main features of the AGLOW software are the following:\n\n- Integration of the Grid middleware with Apache Airflow, allowing us to dynamically define, create, submit and monitor jobs on the Dutch national e-infrastructure.", "\n\n- Integration of the LOFAR (LTA) utilities in Airflow, facilitating pipeline developers to automate staging (moving from tape to disk) and retrieval of LOFAR data.", "\n\n- Integration of the SURFsara storage with Airflow, making LOFAR pipelines aware of the storage layer available at the Dutch national e-infrastructure.", "\n\n- Ease of creating simple software blocks, with which users can integrate and test their pipelines.", "\n\n- Storing all software versions and script repositories as part of the workflow to make LOFAR processing reproducible and portable.", "\n\n**Outline:** The organization of this manuscript is as follows: We provide background on data processing in radio astronomy and why LOFAR science requires complex workflows and cover workflow management algorithms and capabilities (section \\[sec:background\\]). ", "We discuss related work in workflow management (section \\[sec:related\\]). ", "In section \\[sec:AGLOW\\], we introduce our software and two use cases. ", "Both of our use cases require acceleration at an HTC cluster and automation by a workflow orchestration software. ", "We follow these examples with details on the integration between LOFAR software, LOFAR data and the resources at SURFsara in Amsterdam in section \\[sec:extending\\]. ", "Finally, we discuss our results (sect. ", "\\[sec:results\\]) and look ahead to the demands of future LOFAR projects and upcoming telescopes in section \\[sec:conclusions\\].", "\n\nBackground {#sec:background}\n==========\n\nThis work lies at the intersection of Radio Astronomy and Computer Science. ", "The goal of the study is to leverage the flexibility of an industry standard workflow management software and use CERN’s Worldwide Computing Grid[^3] at SURFsara [@grid] to accelerate reproducible processing of LOFAR data.", "\n\nA single LOFAR surveys observation is recorded in distinct frequency chunks (henceforth called ‘subbands’), each of which is uploaded to the LTA as a separate file. ", "Some of the processing steps require the entire frequency information, while others can run independently and operate on a single subband. ", "The latter steps can be easily accelerated on an HTC cluster by taking advantage of the data level parallelism.", "\n\nMultiple scientific projects may desire to run different processing steps on a single LOFAR observation. ", "To minimize time spent on retrieving data from the LTA and eliminate re-processing of data, pipelines for multiple science cases need to be integrated together. ", "This integration should be done by a software that encodes the dependencies between different steps and automatically executes processing steps once their dependencies have been met. ", "Software packages that solve these challenges are called ‘workflow management software’ (see, e.g., [@workflow1; @workflow2; @workflow3].)", "\n\nRelated Work {#sec:related}\n============\n\nA workflow is described by a set of tasks. ", "The dependencies between these tasks are encoded in a Directed Acyclic Graph (DAG) [@dag]. ", "This data structure imposes a strict dependency hierarchy between the tasks [@dagalgos]. ", "This means that there exists a well-defined execution order and a well-defined list of dependencies for each task. ", "The execution order is typically determined by algorithms such as Kahn’s algorithm [@Kahn] or a depth-first search [@dfs].", "\n\nWorkflow management software is used in various fields from research to industry. ", "In biology, gene sequencing and analysis pipelines require automation of multiple processing steps. ", "In gene sequencing, Toil[^4] has been successfully used to automate RNA sequence analysis[@toil]. ", "Additionally, many software teams in biotech develop their own in-house workflow management software [@nextflow].", "\n\nCurrently, we can parallelize a single processing step of the pipeline using the Grid LOFAR Tools (GRID\\_LRT[^5]) [@mechev]. ", "The LOFAR Surveys science cases incorporate multiple steps with inter-linked dependencies. ", "Resolving these dependencies can be done efficiently by a comprehensive workflow orchestration software. ", "The purpose of such software is to resolve dependencies between the multiple tasks in a workflow, execute these tasks, and track the status, logs, output, and runtime of each task.", "\n\nIn astronomy, workflow systems have been developed that are telescope specific, such as ESOReflex[@reflex] by the European Southern Observatory. ", "Other projects, such as astrogrid[^6] and ’Workflow 4Ever’[^7], have either been completed or are no longer supported. ", "The astrogrid project, for example, was a collaboration to create standards, infrastructure, and software for distributed astronomical processing. ", "Its operation phase spanned 2008-2010. ", "Workflow4Ever, likewise, has been out of support since 2013. ", "To ensure continuing support for the LOFAR workflows, we have decided to use a leading enterprise workflow management software, Airflow.", "\n\nAirflow is an open source Python software package developed by Airbnb[^8] to manage complex workflows. ", "It encodes workflows in Python and makes it easy to re-use, re-arrange, schedule and execute blocks in a user-defined workflow. ", "Airflow is capable of scheduling and executing workflows by resolving the dependencies between tasks and scheduling these tasks for execution. ", "The software uses a metadata database[^9] to retain metadata such as task state, execution date, and output. ", "While Airflow allows building workflows easily from Python and bash functions, it can easily be extended to support custom processing scenarios. ", "Additionally, Airflow conforms to the Common Workflow Language (CWL) [@cwl] standard using the *cwl-airflow* package [@cwlairflow], meaning it can execute CWL workflows as well. ", "Finally, Airflow is part of the Apache incubator and upon certification will receive continual support by the Apache software foundation[^10].", "\n\nAGLOW {#sec:AGLOW}\n=====\n\nComplex astronomical pipelines are time consuming to develop and operate. ", "Furthermore, they may evolve rapidly to incorporate new processing techniques or requirements. ", "Migrating these pipelines to a distributed, high throughput environment is often justified, or even required, in order to meet the timelines set by scientific projects. ", "The time saved by running on a cluster must be balanced by the flexibility and development time required to implement or update the scientific pipelines. ", "To address these concerns, we have developed a software package, Automated Grid-enabled LOFAR Workflows (AGLOW)[^11]. ", "AGLOW is based on Airflow and the LOFAR software and addresses issues with automation and acceleration of LOFAR processing.", "\n\nWith AGLOW, we can translate LOFAR pipelines into DAGs. ", "We provide the tools that enable users to easily implement their LOFAR science pipelines and execute them on a distributed architecture. ", "Using these tools, the data processing required by various LOFAR science cases is automated and accelerated.", "\n\nAGLOW: Case Study\n-----------------\n\nFor our case-study, we have chosen two ways to process LOFAR Surveys data: coverage and depth. ", "The Surveys Key Science Project (SKSP)[@lotss] is an ambitious project to map the northern sky at low frequencies using the Dutch LOFAR stations. ", "These maps will help understand the formation and evolution of massive black holes, galaxies, clusters of galaxies and large-scale structure of the Universe.", "\n\nThe LOFAR surveys observations consist of several tiers with the widest Tier (Tier 1) covering the whole sky visible from the Northern Hemisphere with 3168 observations of 8 hours each [@lotss]. ", "The other tiers (Tier 2, Tier 3) consist of much longer observations of smaller sections of the sky and can collect hundreds of hours of data for a single direction. ", "The deepest single field being analyzed, in collaboration with the EoR group, is the North Celestial Pole (NCP) field which has $\\sim$1700 hrs of observations to date. ", "Processing this data will create an image with an unprecedented resolution and sensitivity. ", "Here we have implemented processing pipelines for both the Tier 1 data and Tier 2 data into AGLOW.", "\n\nThe scientific importance of these two examples, as well as the large processing requirements, make them ideal candidates for acceleration and automation with AGLOW.", "\n\n### Surveys Project: All Sky Survey {#sec:coverage}\n\nThe main driver for the development of AGLOW and its constituent packages has been the LOFAR SKSP Project. ", "A typical 8-hour observation produces 14 TB of data. ", "This data is eventually reduced to several hundred gigabytes. ", "Data needs to be processed by two pipelines: first by the Direction Independent (DI) pipeline, and then by the Direction Dependent (DD) pipeline.", "\n\nWe have split the DI pipeline into four stages, and the DD pipeline into two subsequent stages. ", "Splitting up the pipelines in stages allows speedup through parallelization for the stages that can benefit from data-level parallelism. ", "Additionally, this setup allows fault tolerance and easy re-processing. ", "Current SKSP processing is easily started by launching a new DAG-run in Airflow. ", "Importantly, with AGLOW, adding new functionality to the pipeline is easy and can be done at any time without disrupting current processing.", "\n\n### Deeper Surveys Fields\n\nTo create deep images of a single field, minor modifications were made to the processing pipeline described in the previous section. ", "Scripts were included to re-align the data in the frequency axis, and the DD processing steps include an extra final combination step that stacks multiple observations. ", "Being able to rapidly test alternative processing strategies is crucial to creating a deep image of the NCP field. ", "With the success of this project, future deep LOFAR observations will be processed with these pipelines.", "\n\nAGLOW: Implementation {#sec:implementation}\n---------------------\n\nAGLOW combines the LOFAR software, the Grid LOFAR Tools (GRID\\_LRT), and Airflow to allow automation and makes large-scale LOFAR processing easily reproducible. ", "The components of the AGLOW software are shown in Fig. ", "\\[AGLOW\\_structure\\]. ", "In this section, we will discuss these components and their functions.", "\n\n### GRID LOFAR Tools and LOFAR software\n\nWe have previously developed tools to create LOFAR jobs and launch them on a distributed infrastructure[@mechev]. ", "These tools have matured to a point where it is easy to both plug and play existing scripts and extend the framework to add more complex pipelines. ", "These steps make it possible for a user to batch execute bash or Python scripts on their LOFAR data in parallel. ", "After the scripts are executed, the results are uploaded to shared dCache storage[@dcache] at SURFsara[@SurfSara].", "\n\nMore complex steps use additional Github repositories, such as the prefactor[^12] for direction independent calibration or DDF-pipeline for direction-dependent calibration and imaging. ", "The sequence of steps is encoded in parameter-set files (parsets), which can be modified and dropped into AGLOW depending on the processing requirements.", "\n\nWith AGLOW, we can easily include the DDF-pipeline and prefactor repositories, as well as any other scripts. ", "Since these scripts are tracked by git [@torvalds2010git], a full commit and branch history of the scripts is available. ", "We use this history to make processing reproducible, by using the same git-commit for all LOFAR datasets.", "\n\nIn addition to these script repositories, we have integrated the most common software packages used to process LOFAR data with AGLOW. ", "These are the Default Pre-Processing Pipeline (DPPP)[@cookbook], the LOFAR Solutions Tool (LoSoTo), WSclean [@wsclean], AOflagger[@aoflag], CASA[@casa], pyBDSF[@bdsf], DDFacet[@tasseDDFacet] and KillMS[@smirnov_tasse_KillMS; @tassekalman].", "\n\n### Extending Airflow {#sec:extending}\n\nTwo types of modifications were made to Airflow to allow processing on a Grid environment. ", "First, functions were added to check the number of files located in intermediate grid storage. ", "We use this to decide whether to stage files, or whether enough files have been successfully processed by a previous task.", "\n\nSecond, more complex tasks were implemented as Airflow operators or sensors (Figure \\[AGLOW\\_Operators\\]). ", "These tasks include creating job description files, setting up job scripts, launching jobs using the gLite workload management system and monitoring the status of these jobs. ", "Future additions will include operators that evaluate the current cluster workload and make decisions on location to launch the data processing. ", "With the AGLOW package, such tasks are easy to implement without modifying or interrupting processing. ", "This leads to an easily reproducible, intelligent scientific processing that is also efficiently executed and requires minimal interaction. ", "The operators and sensors added to Airflow are shown in Fig. ", "\\[AGLOW\\_Operators\\].", "\n\nUsing AGLOW to accelerate the execution of a pipeline requires deciding how to split the processing to benefit from parallelization. ", "Once the steps to be parallelized are selected, users can add git repositories of scripts to the configuration file. ", "Next, each step is added to a Python script called the DAG file. ", "This file is placed in the Airflow’s dags folder, which adds it to AGLOW. ", "To migrate LOFAR workflows to a new server, the DAG and configuration files need to be transferred to the new AGLOW instance.", "\n\nAGLOW: Jobs\n-----------\n\nOnce LOFAR observations are downloaded from the LTA, they are typically processed with several packages before producing a science ready dataset. ", "We have integrated these packages with Airflow to make it easy to create complex LOFAR workflows.", "\n\nEach of the processing steps above requires extra set-up to process on the Dutch Grid infrastructure. ", "The job scripts setup, job description, and job submission are done by the GRID\\_LRT package[@mechev]. ", "With AGLOW, we automate this setup, enabling users to focus on developing more comprehensive data processing pipelines. ", "Below we outline several possible steps a user can use in their pipeline.", "\n\n### DPPP Parset\n\nThe DPPP software is used extensively in LOFAR data processing. ", "It has many capabilities such as flagging bad data, averaging data in time and frequency, and calibrating the data with a sky-model.", "\n\nThe input parameters of this software are stored in a text file called a parset. ", "The input data and the DPPP parset are sufficient to define a DPPP execution step. ", "As noted in section \\[sec:background\\], LOFAR data is split in frequency into subbands. ", "Much of the DPPP processing, such as averaging and flagging, can be done independently for each subband, thus they can be processed on independent machines. ", "This parallelization makes these steps a perfect candidate for an HTC cluster. ", "For a dataset that is split into 244 subbands, 244 jobs are launched concurrently.", "\n\nIn Airflow, the DPPP parset task is encoded in a DAG (Fig. ", "\\[fig:NDPPP\\_DAG\\]). ", "The DPPP DAG is a linear workflow that consists of the ’sandbox’ setup, creation of the job-description documents, uploading of the DPPP parset and job launching and monitoring.", "\n\n### WSclean Job\n\nThe WSClean[@wsclean] package is used to create an image from a LOFAR dataset. ", "This software has a very wide range of parameters options, however, it cannot take a parset file as an input. ", "Instead, the parameters are specified in the command line. ", "In the AGLOW implementation, we parse all the command-line parameters from a text file, referred to as the ’wsclean parset’. ", "This file is added to the jobs in the same way as the DPPP parset, i.e. using the *Token Uploader* Operator. ", "The DAG for the wsclean software uses the same blocks as the DPPP DAG, with different configuration and parset files. ", "The reuse of Airflow operators makes maintainability of all tasks easier.", "\n\nShell/Python Script\n-------------------\n\nUsers that require the run of multiple software packages on a single dataset can craft a custom shell or Python script that executes these steps using the LOFAR tools during a single distributed job. ", "This option increases flexibility and minimizes the overhead associated with scheduling and running multiple jobs in sequence. ", "At the workflow orchestration level, we use the same Airflow operators as the above tasks. ", "The script is uploaded to the job description database using the *Token Uploader* Operator. ", "It is executed once the jobs are launched.", "\n\nCurrently only the LOFAR Spectroscopy project uses custom shell scripts to process LOFAR data. ", "A recent study of carbon recombination lines used a custom bash script to calibrate and image LOFAR data on the SURFsara `GINA`[^13] cluster [@pedro].", "\n\nPrefactor parset\n----------------\n\nThe input to the prefactor pipeline software is a parset file which describes a linear workflow. ", "The description of this workflow consists of a list of processing steps and their associated parameters. ", "The ‘prefactor’ package uses the LOFAR software to do the direction-independent calibration of the archived LOFAR datasets. ", "Prefactor steps are executed by the generic pipeline framework[@cookbook]. ", "While this framework can run a sequential pipeline, it is not capable of conditional branching nor parallelization on all cluster architectures. ", "The original goal of the GRID\\_LRT software was to tackle the parallelization challenge while AGLOW solves the additional challenge of pipeline management.", "\n\nWe have already processed more than 50 datasets through the ‘prefactor’ DAG using AGLOW. ", "The full ‘prefactor’ pipeline is shown in figure \\[SKSP\\_workflow\\]. ", "This DAG shows the four processing steps as well as additional Python operators that manage the staging and result verification.", "\n\nDDF-pipeline\n------------\n\nThe final AGLOW DAG is the implementation of the DDF-pipeline repository which is a pipeline that is extensively used by the LOFAR surveys KSP and is described in detail in [@lotss]. ", "This pipeline operates on the products of the prefactor pipeline and consists of a series of calibration and imaging loops with the objective of creating a final science quality image. ", "For each of these loops the majority of the processing time is spent in DDFacet[@tasseDDFacet] and KillMS[@smirnov_tasse_KillMS; @tassekalman] steps that perform the direction-dependent imaging and calibration respectively.", "\n\nIn total, DDF-pipeline takes $\\sim$4 days of processing to complete. ", "As DDF-pipeline creates large intermediate files we have so far not divided the pipeline into too many steps to avoid filling the storage on the `GINA` cluster. ", "However, we have split the pipeline into two steps and there is further potential for parallelization that will be implemented in the future.", "\n\nLinking Multiple Jobs\n---------------------\n\nPre-processing of LOFAR SKSP data can be done by a single DPPP task, with 244 jobs running in parallel. ", "More complex LOFAR pipelines will include multiple processing tasks as well as tasks responsible for job setup. ", "Therefore, it is important to facilitate running multi-step pipelines with AGLOW.", "\n\nCreating workflows by defining dependencies between tasks is a core Airflow capability. ", "We use this functionality to link multiple steps of a LOFAR pipeline together. ", "In the SKSP pipeline, we take advantage of the data level parallelism for the initial processing steps for the calibrator and target. ", "The other two steps are run as a single grid job. ", "Switching the parallelization for each step is done by changing the number of datasets per node parameter in the configuration file for each step.", "\n\nResults and Discussions {#sec:results}\n=======================\n\nThe implementation of AGLOW makes it possible to efficiently process LOFAR data with minimal user interaction. ", "The scheduling algorithm automatically launches pipelines, meaning that there is little time spent between runs. ", "Additionally, controlling/fixing the version of the scripts is done by specifying the commit of each script repository. ", "This makes data processing easily reproducible. ", "Once the dependencies of multiple science pipelines have been encoded in a DAG, Airflow efficiently executes this DAG, running tasks in parallel where possible.", "\n\nThe first LOFAR processing pipeline integrated with AGLOW was a single linear workflow, with only one submission to the compute cluster. ", "This workflow is used to reduce the data size making data retrieval to research institutes less time consuming. ", "We offer this workflow as a service to LOFAR users who do not have a high-bandwidth connection to the LOFAR Archive.", "\n\nA more complex pipeline was implemented: the LOFAR direction independent calibration pipeline (‘prefactor’). ", "The scientific importance and complexity of this pipeline make it a good case study for the capabilities of the AGLOW software. ", "We show that AGLOW’s design allows integration of more complex data processing workflows with the Dutch Grid resources. ", "These workflows can be either used by PIs of LOFAR projects or offered as a processing service to the wider astronomical community.", "\n\nAn important feature of AGLOW is the loose coupling between pipeline logic, software versions, pipeline parameters, and datasets. ", "The goal of this decoupling is to give users complete control over all the processing variables. ", "With AGLOW, one can develop the pipeline logic independently of the LOFAR software versions and conversely update the LOFAR software and script repositories independently from the pipeline logic. ", "Finally, the Airflow operators are themselves decoupled from the scientific pipelines. ", "As these operators are reused, this decoupling makes them easy to maintain and extend.", "\n\nIn large part thanks to their flexibility, automation, and Grid integration, AGLOW and GRID\\_LRT have become a standard part of the Direction Independent processing for the LOFAR SKSP project.", "\n\nConclusions {#sec:conclusions}\n===========\n\nIn this work, we have detailed a comprehensive workflow management software for processing radio astronomy data on a distributed infrastructure. ", "We leverage an industry standard workflow management software, Airflow. ", "Using its capabilities, we make it possible to build, test, automate and deploy LOFAR pipelines on short timescales, generally from months to days. ", "With the flexibility of Airflow’s Python and Bash operators, users can design their own workflows, as well as co-ordinate more complex science cases. ", "In this way, AGLOW facilitates reproducible processing of scientific data. ", "In the future, AGLOW will support additional LOFAR science cases including Long Baselines and Spectroscopy. ", "In this article, we have described our implementation of the data processing pipelines used by the LOFAR Surveys Key Science Project.", "\n\nFuture work includes further de-coupling of the Grid-setup and pipeline logic. ", "We will do this by creating ‘sub-dags’ (details in \\[sec:Subdags\\]) for each type of LOFAR jobs. ", "Using these sub-dags will reduce the complexity of scientific workflows while also making the code even more reusable and thus easier to maintain and upgrade. ", "Efforts to integrate processing at the other two LTA sites, (Jülich and Poznań) have already started with ‘prefactor’ runs being performed on Jülich using a modified version of the SKSP workflow. ", "The software also currently works on the Eagle cluster at Poznań. ", "Combining the Jülich and SURFsara workflows will be done in the future so that AGLOW can track and start processing at multiple clusters.", "\n\nFinally, AGLOW can be used as a ‘LOFAR As A Service’ model. ", "In this model, users only provide an observation ID and processing parameters and receive the final results upon job completion. ", "This model will build upon previous success offering LOFAR processing to users without login to the `GINA` cluster [@oonk_prep]. ", "This previous work was already useful for studying radio absorption in Cassiopeia A [@maria] and a ‘data-to-images’ service will be valuable to the whole LOFAR community.", "\n\nOur experience with automating LOFAR scientific workflows on a distributed architecture will be valuable when setting up data processing for future Radio Telescopes such as the Square Kilometer Array [@ska] .", "\n\nAPPENDIX {#appendix .unnumbered}\n========\n\n![", "image](figures/SKSP_Dag1.png){width=\"52.00000%\"}\n\nThe LOFAR SKSP workflow is shown in Figure \\[SKSP\\_workflow\\]. ", "This figure shows how reuse of the staging, setup operators, and glite-wms sensors makes maintainability easy and allows rapid prototyping of complex pipelines.", "\n\nThis workflow additionally takes advantage of Airflow’s *PythonOperator* to check if the LOFAR data is on disk at the archive and whether all final products were uploaded by each step. ", "AGLOW also allows for staging the calibrator and target files concurrently. ", "When the data is staged, Airflow continues with the processing of that data.", "\n\nSub-DAG {#sec:Subdags}\n-------\n\nAirflow allows developers to include entire DAGs as a single task in their workflow. ", "Airflow can trigger a DAG execution based on parameters provided by the parent DAG. ", "This feature makes it possible to concatenate short, commonly used tasks into DAGs and call them in a parent workflow. ", "Using sub-DAGS makes the code more maintainable and easy to use, while it makes workflows simpler. ", "For LOFAR, Sub-DAGs are used to automate job submission, making the resulting scientific workflows simpler.", "\n\nAcknowledgement {#acknowledgement .unnumbered}\n===============\n\nAPM would like to acknowledge the support from the NWO/DOME/IBM programme “Big Bang Big Data: Innovating ICT as a Driver For Astronomy”, project \\#628.002.001.", "\n\nThe processing and storage functionality that has made this project possible was enabled by SURF Cooperative through grant e-infra 160022 & 160152. ", "The LOFAR software and dedicated reduction packages on <https://github.com/apmechev/GRID_LRT> were deployed on the e-infrastructure by the LOFAR e-infra group, consisting of J.B.R. Oonk (SURFsara & Leiden Observatory), A.P. Mechev (Leiden Observatory).", "\n\nThis paper is based on data obtained with the International LOFAR Telescope (ILT) under project codes LC2\\_038 and LC3\\_008. ", "LOFAR (van Haarlem et al. ", "2013) is the Low-Frequency Array designed and constructed by ASTRON. ", "It has observing, data processing, and data storage facilities in several countries, which are owned by various parties (each with their own funding sources), and which are collectively operated by the ILT foundation under a joint scientific policy. ", "The ILT resources have benefited from the following recent major funding sources: CNRS-INSU, Observatoire de Paris and Université d’Orléans, France; BMBF, MIWF-NRW, MPG, Germany; Science Foundation Ireland (SFI), Department of Business, Enterprise and Innovation (DBEI), Ireland; NWO, The Netherlands; The Science and Technology Facilities Council (STFC), UK\n\n[^1]: <https://airflow.apache.org/>\n\n[^2]: <https://lta.lofar.eu>\n\n[^3]: <http://wlcg.web.cern.ch/>\n\n[^4]: <https://toil.readthedocs.io>\n\n[^5]: <https://github.com/apmechev/GRID_LRT>\n\n[^6]: http://www.astrogrid.org\n\n[^7]: http://wf4ever.github.io/ro/\n\n[^8]: <https://www.airbnb.com/>\n\n[^9]: In our case implemented by Postgresql\n\n[^10]: https://www.apache.org/\n\n[^11]: <https://github.com/apmechev/AGLOW>\n\n[^12]: https://github.com/lofar-astron/prefactor\n\n[^13]: The `GINA` cluster is an HTC cluster located at SURFsara integrated with the Dutch Grid initiative. ", "It supports massively parallel processing which is required to efficiently process LOFAR data with *prefactor*.", "\n" ]
{ "pile_set_name": "ArXiv" }
[ 0.012195121951219513, 0, 0, 0.008695652173913044, 0.04411764705882353, 0.013888888888888888, 0.008849557522123894, 0, 0.018518518518518517, 0.020618556701030927, 0.013605442176870748, 0.012658227848101266, 0, 0.015037593984962405, 0.02, 0, 0, 0.012345679012345678, 0, 0.005319148936170213, 0.022988505747126436, 0.023076923076923078, 0, 0.00510204081632653, 0, 0.014925373134328358, 0.00641025641025641, 0.008130081300813009, 0.018404907975460124, 0, 0.004048582995951417, 0.017964071856287425, 0.01935483870967742, 0, 0.007407407407407408, 0, 0, 0, 0, 0.01818181818181818, 0, 0.007874015748031496, 0.01680672268907563, 0.009009009009009009, 0.005988023952095809, 0, 0, 0.009345794392523364, 0.006211180124223602, 0, 0.021739130434782608, 0.011494252873563218, 0.02197802197802198, 0.011235955056179775, 0, 0.02459016393442623, 0, 0, 0.02040816326530612, 0.008849557522123894, 0.007874015748031496, 0, 0, 0, 0.013605442176870748, 0, 0, 0, 0.01639344262295082, 0.014705882352941176, 0, 0, 0, 0, 0.006896551724137931, 0.028089887640449437, 0.007042253521126761, 0.029411764705882353, 0, 0, 0, 0.01694915254237288, 0.032520325203252036, 0.017241379310344827, 0, 0, 0, 0.0136986301369863, 0.006369426751592357, 0.01015228426395939, 0, 0.017857142857142856, 0, 0.01020408163265306, 0.005988023952095809, 0.012345679012345678, 0, 0, 0.013793103448275862, 0.02040816326530612, 0, 0, 0.024691358024691357, 0.007142857142857143, 0, 0, 0.008695652173913044, 0.009615384615384616, 0.013043478260869565, 0.03636363636363636, 0, 0, 0.01910828025477707, 0, 0.017699115044247787, 0.02631578947368421, 0, 0.006535947712418301, 0.009009009009009009, 0.008264462809917356, 0.009523809523809525, 0.014705882352941176, 0.03347280334728033, 0.007518796992481203, 0, 0, 0.009174311926605505, 0.005714285714285714, 0, 0.009708737864077669, 0, 0.01639344262295082, 0, 0, 0, 0.015384615384615385, 0.02702702702702703, 0.024, 0.005780346820809248, 0.010309278350515464, 0, 0.019417475728155338, 0.008333333333333333, 0, 0.024096385542168676, 0, 0, 0.024096385542168676, 0.011363636363636364, 0.006369426751592357, 0, 0, 0.06557377049180328, 0, 0.011299435028248588, 0.02040816326530612, 0, 0, 0.008, 0.009174311926605505, 0.00847457627118644, 0.0136986301369863, 0.00823045267489712, 0, 0, 0, 0, 0.020618556701030927, 0.02, 0, 0, 0.016129032258064516, 0.013333333333333334, 0, 0.012903225806451613, 0.02197802197802198, 0, 0.0078125, 0.018867924528301886, 0, 0.013452914798206279, 0, 0, 0, 0.006622516556291391, 0.008928571428571428, 0.012345679012345678, 0, 0.012658227848101266, 0, 0, 0, 0.01694915254237288, 0, 0, 0, 0.01875, 0.007194244604316547, 0, 0.008620689655172414, 0.009009009009009009, 0.0078125, 0.008333333333333333, 0.007633587786259542, 0.007575757575757576, 0, 0.015306122448979591, 0.011494252873563218, 0, 0.015463917525773196, 0.005235602094240838, 0.013888888888888888, 0.006756756756756757, 0.006666666666666667, 0.013333333333333334, 0.009259259259259259, 0, 0, 0.010309278350515464, 0, 0.015306122448979591, 0.030303030303030304, 0.021897810218978103, 0.03225806451612903, 0, 0.007751937984496124, 0.011764705882352941, 0.014285714285714285, 0, 0.008849557522123894, 0, 0.0106951871657754, 0.013157894736842105, 0, 0.008403361344537815, 0.023809523809523808, 0, 0, 0.009345794392523364, 0.013333333333333334, 0, 0.023809523809523808, 0, 0.07692307692307693, 0.014492753623188406, 0.004, 0.024918743228602384, 0.009009009009009009, 0 ]
0.008925
5
[ "Gary Fazio has been selected as the new chairman of the United Way Tar River Region Board of Directors.", "\n\nFformer board Chairman James Gray, president of N.C. Wesleyan College, officially passed the gavel to Fazio, CEO of Boice-Willis Clinic, during a breakfast reception in December.", "\n\nFazio has served on the United Way board in various capacities since January 2007.", "\n\n“I am very excited to be asked to serve as this year’s board chair and to be part of an organization that gives 100 percent heart and effort to improving the community is both an honor and a privilege,” Fazio said.", "\n\nAmong his first responsibilities, Fazio will officially welcome new board directors during a board orientation scheduled for later this month during which he and other leaders will provide an overview of United Way operations and leadership expectations.", "\n\n“We have accomplished a great deal within the last year,” Gray said. “", "With Gary’s leadership, along with so many others, I am confident he will continue to push the organization even higher to improve the lives of those that benefit from United Way programs.”", "\n\nUnited Way Tar River Region brings together people and resources to build a stronger community by raising $1.2 million each year, investing donations into local programs that are targeting pressing needs in our community, in partnership with 22 agencies, 40 health and human service programs, more than 500 volunteers and more than 10,000 donors who work to improve quality of life in the Twin Counties.", "\n\nComments\n\n[url=http://www.fashionguccisite.co.uk/gucci-official-p-791.html]gucci official[/url] The 2nd time I went was the very first time I had ever earned our beads. ", "I would damn sure do it yet again. ", "And the amusing thing can be, the people that I work with or even know me would never guess I would end up like that, it is fun to reside on the untamed side every now and then. ", "Relchez la poigne, cette pratique sur et autour del belle sac Chanel combine n't style traditionnel et de la gloire, le symbole d'un des sacs zero et sac hermes sacs Gucci, une poche zippe et aussi au dbut en el palette signifiant peinture d'intrieur pais tricot d'une manire unique, ressemble. ", "Sacs Chanel, bien que ce soit not profil type, la surface de la performance! ", "vtements a bambou sont faits la main en cuir mieux pour vous. ", "Quand j'ai vu le sac Chanel, a trouv une little lgance bohmienne. [", "url=http://www.fashionguccisite.co.uk/gucci-size-chart-p-346.html]gucci size chart[/url] Since i are discussing numerous improvements on your own type of located, it's a good idea to consider at the least 7 days or even a pair down your normal program for making this enhancements. ", "If you can set aside a second down perform in addition to get out of your regular prepare you will be encountered with much less conditions that you keep organization with smoking cigarettes. ", "It's also possible to make time to endure the effects regarding cigarette smoking disengagement.. For example, my personal daughter almost died regarding embarrassment recently when the pet darted by her as she opened the doorway. ", "With our screaming little girl in hot pursuit, your pet raced in one end from the yard to the other with my bra holding from the woman's jaws. ", "My partner and i sure neither the neighbors nor your dozens of children walking property from school noticed a thing.. [url=http://www.fashionguccisite.co.uk/gucci-store-in-uk-p-384.html]gucci store in uk[/url] Was pretty straightforward compared with one other procedure. ", "Small cramping too. ", "In fact, I do think I'll go for a walk later on nowadays (going to be as much as 1617 celcius which is BEAUTIFUL weather for people at this time of this year).. Another, homemade, natural ft . ", "scrub known as, Gold Brand Spa Rinse, is a mild, lotion kind of scrub made from Dead Ocean salt as well as goats whole milk soap. ", "It is not heavy on the skin and combines well with water as opposed to running away from like skin oils. ", "It cleansing, exfoliates leaving dried up feet and also itchy feet soft, soothed, trained and hydrated.. [url=http://www.fashionguccisite.co.uk/gucci-store-london-p-100.html]gucci store london[/url] Fake scans are often made up of foam sandwiched among cowhide on the boot's outside and wool on the interior [source: Kemp]. ", "To find out what your Uggs (or counterfeit UGG) consists of, grasp the inside of the boot together with one hand and the outdoors with the additional, and attempt to pull them in addition to each other. ", "When you can separate them, you're probably keeping a fake.. Exfoliating the skin brings out great results. ", "Its purpose is usually to remove dead skin cells that have created on the exterior surface of the outer skin. ", "It improves circulation, promotes cell rebirth and will lessen blotchiness, evening out your skin layer tone. [", "url=http://www.fashionguccisite.co.uk/mens-gucci-side-bag-p-869.html]mens gucci side bag[/url] I am a better half and mommy to three young children. ", "I have right now been any stay at home Mom for a yr which has been very an adjustment. ", "Until you are at home fulltime, I worked well in a number of corporate and business settings. ", "Dun Bradstreet (DNB) is often a provider of economic information with a history dating back to nearly A hundred and seventy years. ", "Modern day company features 3 organization segments. ", "Risk Management, traveling about 63% of sales, gives reports and also other information products which allow companies to ascertain creditworthiness of potential customers. [", "url=http://www.fashionguccisite.co.uk/womens-gucci-bag-p-520.html]womens gucci bag[/url] You may find bargain gold whoa here. ", "There is certainly wow precious metal of selling; you can buy truly soccer cycling jerseys cheap wow gold right here. ", "We have size available inventory of platinum wow on most of the computers, so that we could do a genuinely instant method of gold whoa delivery. ", "Simply by holding back again your protection and dealing with your spouse's upset, a conversation can take place rather than a protecting arguing complement. ", "In this situation, apologizing for being late, listening, and seeing the situation out of your partner's point of view would drastically alter the dynamics of the scenario. ", "In other words, don't just react impulsively through JUST your heartaches. [", "url=http://www.fashionguccisite.co.uk/gucci-outlet-bags-p-195.html]gucci outlet bags[/url] Inflammation in the acute form is actually healing to the body. ", "It's a result of the immune system to improve source of nourishment flow to an area, throw out debris as well as temporarily limit function in order that healing can occur. ", "However, persistent and longterm inflammation has been seen as to be very negative to the body. ", "I know many parents that go there whine all the time yet nothing will get done about it. ", "A friend involving mine truly sued the teachers recently not for money however for justice to be with her child, the particular teacher they had problems with provides put the woman's son straight down not adopted school plans. ", "Hopefully she's going to make a difference inside their behavior to students.", "\nbiyihjqkMG9cwD6eLBwldirrd\n\n71min: Agger can be scheduled soon after choosing the ungainly foul in Ramires in excess of about the touchline. ", "it is in a equivalent place where Chelsea won through. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-cheap-p-431.html]mulberry cheap[/url] Manchester v Western side Pig Technicolour: Aztec-inspired prints (quit) ended up exhibited together with more challenging components of prevent colour and also organised overcoats (appropriate) [url=http://www.fashionshopmulberry.co.uk/mulberry-tillie-bracelet-p-459.html]mulberry tillie bracelet[/url] Three. ", "Esteem the woman's personal privacy, however allow her to identify that you expect mature value and also trustworthiness in exchange. ", "And guy decide Tulisa ended up being every bit as contributory regarding the woman's natural talent as well as had been including the different judges amazed at the girl age group, provided your ex solid singing capability. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-mitzy-clutch-p-149.html]mulberry mitzy clutch[/url] Control psycho therapist Averil Leimon, even so, states which our difficulties with opposition tend to be when compared with junk food diet. ‘", "We're also allowing girls along horribly in relation to educating these how you can offer effectively having contest,’ the girl says. ‘", "Request a group of ten-year-olds when they strive to be pm and also they’ll mainly say yes. ", "You need to won’capital t no matter what style of sex divide of their reactions. ", "Inquire further once more at 16, however, and also a much higher percentage from the ladies will likely be disinclined to steer. ", "A place in the age of puberty we have been adding ladies down risk-taking.’ ‘", "He or she was constantly critical with regards to me specifically the breasts,’ the woman says. ‘", "This individual usually mentioned although be unfaithful about me i wasn’to a proper woman. ", "That’azines how I thought, as well. ", "Many of us separation immediately after he was aggressive in direction of us. ", "That received fairly nasty, as well as my own self-assurance was at a good all-time very low.’ [", "url=http://www.fashionshopmulberry.co.uk/mulberry-online-shop-p-440.html]mulberry online shop[/url] American tans: Their Duchess and also Fight it out seemed to have acquired a new brown and featured a number of small coloration because they turned up for the complement • Work out how a lot funds you'll be able to sacrifice * or no * prior to add to your wardrobe. ", "If you fail to find the money for this, do not do it. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-edie-p-414.html]mulberry edie[/url] Ignore these individuals! ", "They are aged information. ", "Of course, Pips may be used to be able to take advantage of the girl royal contacts in addition to cachet. ", "Nevertheless the store string likewise expectations she appeal for the small, totally free, solitary in addition to wealthy Waitrose customer; of which suitable customer using a non reusable income as well as a temperament of which requirements beverages and treats simply by royal-ish scheduled appointment. ", "About three and straightforward: Darren Bent wrapped up procedures which has a usually fraudulent objective [url=http://www.fashionshopmulberry.co.uk/mulberry-daria-satchel-black-p-140.html]mulberry daria satchel black[/url] After the listening to within Apr, Decide Denzil Lush reigned over: ‘My partner and i recognise that MJ along with JM would be the solely visitors of which GM receives, however this does not provide them with a new permit for you to loot.’ ", "hairbands, bracelets, necklaces, chokers, anklets, bottom jewelry in addition to bracelets — you can purchase at [url=http://www.fashionshopmulberry.co.uk/mulberry-designer-outlet-york-p-514.html]mulberry designer outlet york[/url] Sure, banking institutions continue to be doling out huge bonus deals, this individual says. ", "Yet which among the top-notch graduates, he / she demands, will truly wish to be a good investment lender later on? ", "He is convinced that the best and finest are going to be trying to find full satisfaction business aspects of do the job.", "\neolexrlkMG9cwD6eLBuktyyah\n\nMy spouse and i get letters through people imprisonment whom request my curly hair. \"", "Can I own a fasten within your curly hair?In . ", "It’utes such as, 'Yeah, permit me to simply just mail which next to.", "Wi (Jokes) [url=http://www.stylemulberrysite.co.uk/mulberry-edna-p-457.html]mulberry edna[/url] Your Anglican Luton Cathedral from Trust Avenue, builtbetween 1904 along with 1978, can be an outstanding executive masterpiececreated by simply Sir Giles Gilbert arizona Scott (additionally renowned for building the actual redtelephone pack along with the electrical power station in which right now households the particular Tate Modern day inLondon). ", "Some of those that are furious along with HSBC can be Ian Clacy, 50, owner of Clacys Garage area. [", "url=http://www.stylemulberrysite.co.uk/mulberry-clutch-bag-p-47.html]mulberry clutch bag[/url] ‘Mommy along with child do, naturally, possess pleasant moments when they are obsessed with 1 another. ", "When a parent seems continually influenced by the woman child’s support, there is a­ ­disorder playing. ", "This may communicate itself inside need for a young child in order to embrace its mommy when she actually is leaving behind, while she'd otherwise have the perception she isn't a fantastic mother.’ ", "Co-workers defined a record of animosity relating to the combine that started any time Ercolino became a member of Hazan Imports inside 2006. [", "url=http://www.stylemulberrysite.co.uk/mulberry-walter-p-218.html]mulberry walter[/url] But once you are looking for K-cups, bras tend to be stringently useful in lieu of attractive. ", "My own normal aide — which often expense £30 just about every — are available in treatment, navy or black color. ", "It would appear that methods for example ‘choice’ go out the window about a G-cup. '", "In the girl scenario, this tear drop impression search - that is very on trend right now * really should have recently been used smoothly,I your woman extra. [", "url=http://www.stylemulberrysite.co.uk/mulberry-outlet-york-website-p-86.html]mulberry outlet york website[/url] You can find assortment hints amazon sellers use to try to trick unsuspecting potential buyers. ", "Scarlett is now offering 2 pet dogs: Baxter, ‘some sort of golden retriever’ exactly who the woman explains to the woman's ex-husband, actor Johnson Reynolds, in addition to Maggie, the qi. ", "The girl reports herself a creature lover and also had been right away interested in We Got a new Zoo. [", "url=http://www.stylemulberrysite.co.uk/used-mulberry-bags-p-299.html]used mulberry bags[/url] Tussle: Stephen Crainey (eventually left) along with Nottingham Forest's Radoslaw Majewski Ata lunch time located by simply Tamara Mellon with regard to Jim Choo within L . ", "a ., ", "$50 discount vouchers on her footwear ended up quit about just about every menu. ", "The actual youthful corset lingerie developer seated next to myself stated: ‘Are you wanting mine? ", "My partner and i only don Louboutins.’ [", "url=http://www.stylemulberrysite.co.uk/mulberry-tote-bag-p-140.html]mulberry tote bag[/url] Murderous in relation to new music: Phil Spector received instructions by Charles Manson So what on earth performed that try teach me personally? ", "The usage coming from our purse is actually doing my body older just before my time. ", "Even though I’m not necessarily planning to clip on a bumbag, I most certainly will right now bring the true needs just, and start trying to find popular rucksacks. [", "url=http://www.stylemulberrysite.co.uk/mulberry-bags-discount-p-264.html]mulberry bags discount[/url] 'We understand what Crawley attract comparison to its a daunting method before, in the course of after meets. ", "You must make positive you aren't getting involved.", "\nforkomukMG9cwD6eLBstneolv\n\nScheduled: Paterson. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-mitzy-clutch-p-149.html]mulberry mitzy clutch[/url] Detective Clark stated: 'Unfortunately presently there still is a good Just Fools along with Horses syndrome with this country where people would like to get some thing absolutely free as well as if you experience proof criminality lawenforcement will not strong the resources to analyze. ", "of one's total member's program, esteem along with threshold with regard to political variety, societal diversity…that’s extremely important, in fact.’ [", "url=http://www.fashionshopmulberry.co.uk/bag-mulberry-p-278.html]bag mulberry[/url] It appears the actual 'nonchalant' glimpse is at this year. ", "Other desirable functions have an in the open air club, and when you splash over available £12 intended for a chance to access your deluxe Golf club Living room (the cup of sparkling wine is protected), you need a special out of doors terrace.", "Additional...A lot more travel guidance inside our Creative Visitor archiveThe Handy Visitor: The way to get Olympic ticketsThe Crafting Traveler: Discounts for solo vacationers [url=http://www.fashionshopmulberry.co.uk/mulberry-scotchgrain-bag-p-239.html]mulberry scotchgrain bag[/url] Through the years Lily's bodyweight has fluctuated, playing with your images is apparently the woman's nearly all well developed thus far. ", "Referee: Howard Webb [url=http://www.fashionshopmulberry.co.uk/mulberry-us-p-430.html]mulberry us[/url] Ceo in the Norwegian Nobel Board Thorbjoern Jagland echoes with Oslo Metropolis Corridor through the Nobel Calmness Award The year 2012 give wedding Putting on any black quilted and also fur-trimmed layer, the woman appeared within better spirits seeing that your woman conditions with this weekend's show. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-bags-shop-p-294.html]mulberry bags shop[/url] 'Over Your five per cent of the British isles marketplace is measurement Of sixteen in addition therefore we close to compared to A couple of % with the British isles market in whole, there is a bit more for all of us to get started with.", "Wi WAGS With the Planet Glass through Alison Kervin is otherwise engaged with Might 27. [", "url=http://www.fashionshopmulberry.co.uk/discounted-mulberry-bags-p-218.html]discounted mulberry bags[/url] 'That explains why it really is interesting that we're these days starting this year's Inventive Younger Britons levels of competition : commemorating the expertise and also travel of those who think about upward as well as conference your company obstacle.", "Ha ‘Folks realized I did noticed essentially the most exclusive, romantic areas of Diana’ersus daily life of course, if they can damage the track record they'll likely knew no-one could listen to whichever I will have to say.’ [", "url=http://www.fashionshopmulberry.co.uk/mulberry-kensington-p-488.html]mulberry kensington[/url] This little bit of perception you would offer into a child… Certainly be a kama'aina ( worldwide in addition to health care all the for the friend exactly who existence A single,Thousand miles aside jointly exactly who day-to-day lives across town.", "\niqpeextkMG9cwD6eLBtmokyme\n\nWhen I requested the purchase price - £3,400 forthe standard style - I actually knew my case was not merely named a great 'investment'piece being an explanation, it really had been 1, having grown 25 % inprice since i have acquired this a short while ago. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-alexa-outlet-p-94.html]mulberry alexa outlet[/url] 'Her seller termed in addition to asked if we took in pigs. ", "According to him this individual doesn't want the woman back again. ", "We will make an effort to set her up with the partner and then apply to be able to rehome these questions calendar month approximately.", "Wi Miuccia, with a Doctor of philosophy with governmental scientific research, affirms connected with Prada's decision in order to restriction their online shopping reputation: 'Yes, we don't want it. ", "We don’big t health care. ", "My spouse hates the idea therefore we consider intended for high-class it’azines wrong.", "I [url=http://www.fashionshopmulberry.co.uk/mulberry-annie-p-480.html]mulberry annie[/url] Scorching buy 'We had this sort of fun taking pictures the advertising campaign and links through inside the pictures, which really reflect this high energy nature with the collection,Wi he extra. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-edie-bag-p-263.html]mulberry edie bag[/url] Which has been almost all I can come across. ", "Simply no classic shade stopping. ", "Zero small structured gowns created to look at in addition to clean any bits. ", "No attire together with coats. ", "Almost nothing for just a summer time bash, or maybe lunchtime because of the lake. ", "We over-60s carry out venture out sometimes, you recognize. ", "Get together period: Celtic rejoice his or her win over Bears throughout The capital of scotland [url=http://www.fashionshopmulberry.co.uk/green-mulberry-bag-p-276.html]green mulberry bag[/url] On the whole, knockoffs are usually shoddily created. ", "Accessories and also totes tend to be sewn erratically, consequently it¿s worth checking the stitching, filling, fastenings and graphics upon items sometimes on screen or even whenever they show up, if you acquire one. ", "Exhibit your passion for motion pictures having a silver role of movie carrier by Charlotte, nc Olympia pertaining to ?", "846 [url=http://www.fashionshopmulberry.co.uk/green-mulberry-bag-p-276.html]green mulberry bag[/url] Ten.25: 'It's a total belter of any pitch', beeps Nasser on the horizon comms package. ", "he or she is appropriate, Britain have a very wonderful chance to publish a huge full. ", "Pressure about Prepare along with Bell at the top of the transaction, they are unable to rely on fireworks coming from Morgan along with Buttler about the order. ", "Busy: Victoria's grocery shopping accepts a new busy few weeks controlling her style business as well as family members responsibilities [url=http://www.fashionshopmulberry.co.uk/cheap-mulberry-handbags-p-185.html]cheap mulberry handbags[/url] Dimension Concerns In relation to politics girlfriends or wives, there’ersus Carla Bruni still dripping wet with Dior together with Samantha Cameron within nearly anything safe and sound and also English. ", "One particular glimpse is really a somewhat old-fashioned view of that the female must show up, the other a more modern day desire to be for the leading edge of fashion. ", "Along with I’meters certain it’ohydrates hard-wired into your mental faculties. ", "It is my very own. [", "url=http://www.fashionshopmulberry.co.uk/mitzy-messenger-mulberry-p-7.html]mitzy messenger mulberry[/url] Your Elegant desire checklist in great detail: A choose of the most effective offers these people were offered Regal\noedhmhtkMG9cwD6eLBeqezsyi\n\n[url=http://www.salediscountbootsonline.co.uk/ugg-australia-classic-short-p-880.html]ugg australia classic short[/url] Now they makes this kind of startling are convinced that psychological troubles might be helped by a series of moves and faucets about numerous body parts which usually correspond to meridians employed in acupuncture. ", "Inside clinical mindsets out of Syracuse College, Callahan theorizes that emotional distress matches a \"thought field\" dysfunction that can be adjusted by simply toning down the field's energy. ", "Replete with cases relating to immediate, long lasting cures that noise nothing short of tremendous, Callahan mixes his medical evidence employing a confident, promotional toneand preemptive answers pertaining to instances when his trademarked method (Idea Area Therapy) does not work. [", "url=http://www.salediscountbootsonline.co.uk/ugg-classic-short-grey-p-369.html]ugg classic short grey[/url] Sheepskins should be preserved properly before they could be processed straight into boots. ", "Tanneries utilize large yachts called paddles, in which hold from 3,Thousand to 15,000 liters of brine and little by little swish the skin around inside of. ", "This is a mild process that will take about 10 days to get the conceals properly bronzed and ready to be cut for Uggs.. Here's a sweepstakes for photography lovers (amateurs and professional). ", "Saying (2403 Lyndale Av. ", "S., Mpls., ", "6128700420) chose four Minneapolis University of Artwork and Design college students to design it really is window exhibits through Present cards. [", "url=http://www.salediscountbootsonline.co.uk/ugg-boots-plumdale-p-779.html]ugg boots plumdale[/url] I am content to report that and some of the levels are quite reduced Deanna is moving all of your ex classes with the 3rd grade level. ", "I am aware the first one fourth is mostly evaluate but I was very pleased. ", "Of course her Sociable Studies quality is a bit reduced because of that initial test credit score, so we might find how your woman does next quarter with your ex tests. ", "I became one of the numerous females that's laid off simply by Governor Ehrlich because I would have been a Democrat. ", "NO OTHER Purpose. ", "I was just one Mom, supporting a impaired child coupled with received, this also week, a great evaluation. [", "url=http://www.salediscountbootsonline.co.uk/ugg-brooks-p-790.html]ugg brooks[/url] Intrigued by the little mysterious worms, I started sharing my own find with family and friends. ", "We have now found them into two other locations throughout Port Orchard, thus its not an isolated incident. ", "And i also keep contemplating I cannot be the only individual who has seen these products. ", "I HATE investing in insurance. ", "It is even harder for car insurance. ", "In Michigan they rob people when we must pay for auto insurance . ", "When I first found Swansea, I wanted a new massage along with looked up several in the local document. ", "A woman responded and I asked how much it had been for a rub. ", "She said that they didn't normally cater for females. [", "url=http://www.salediscountbootsonline.co.uk/ugg-boots-size-chart-p-784.html]ugg boots size chart[/url] There's no point in covering this fact from them. ", "And do not underestimate your young ones, especially if they may be beyond young child age they can understand what is happening. ", "Your children can understand why family members cannot maintain \"business as usual\" within a financial perception. ", "Not really. ", "And it wasn Harry both; it was your Chameleon. ", "But Spidey doesn understand that and now he totally pissed and seeking retribution, which brings people to the era of this issue an excellent scene at the outset of this issue when the HypnoHustler turns themself into the law enforcement in order to get away Spidey wrath. [", "url=http://www.salediscountbootsonline.co.uk/cheap-uggs-uk-sale-p-459.html]cheap uggs uk sale[/url] Leonardo G Trabuco2,3,9,Rodrigo F OrtizMeoz5,Department regarding Biochemistry along with Molecular Biophysics, Howard Hughes Healthcare Institute, Mexico University, 630 168th Street, P Dark Building 2221, The big apple, NY 10032, USA. ", "Going through more than 350 Thousand images and also employing graphic classification methods, we find 8 in which the TC is bound to the actual ribosome. ", "The reconstructed 3D chart provides a ways to characterize your arrangement in the nearcognate aatRNA with respect to elongation aspect Tu (EFTu) and the ribosome, plus the domain moves of the ribosome. [", "url=http://www.salediscountbootsonline.co.uk/short-black-uggs-p-658.html]short black uggs[/url] Im a huge huge supporter of outl leppard. ", "I have currently got my ticket for the columbus ohio show,I am so dissappointed they had to end. ", "Joe Elliott will be my favorite, i enjoy that guy. ", "Jonathan Browning, Chief executive and Chief executive officer of Volkswagen of America, says Winfrey arrived at out to Volkswagen, saying that as an owner of a VW Beetle (of course, Oprah would rather tool around town in one), the girl wanted to offer each target audience member a new VW. ", "Along with, VW given threw inside the applicable taxes and fees, accounts USA Present day Chris Woodward. ", "That's important, since the last time The famous host oprah did this kind of with a automobile she gave her audience Pontiac G6's some had difficulty agreeing to the gift due to taxes they will owe..\nfrdwfwrkMG9cwD6eLBfbxmasg\n\nBath and body goods and under garments furthermore built the very best 10, and also the vast majority of girls mentioned they would not wait around to experience completely new make-up after making a obtain. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-daria-hobo-oak-p-138.html]mulberry daria hobo oak[/url] Anywhere else, instrument use organization Rapid Hire rose 3% as well as 1.9p to be able to Twenty-seven.9p on reports it offers distributed their non permanent accommodation business in the offer value £35m. Four.30pm: Very good evening every person. ", "It truly is The Crisis time period! [", "url=http://www.fashionshopmulberry.co.uk/mulberry-shop-p-356.html]mulberry shop[/url] Lv Chief executive officer Yves Carcelle instructed WWD: 'The quantity of dots is so uncontrollable, there is no-one to matter these individuals,I whilst positioned beside a couple of versions dressed up because artist their self. ", "Friedel; Jogger, Dunne, Collins, Clark; Petrov, Makoun, Downing, Albrighton; Bias, Young [url=http://www.fashionshopmulberry.co.uk/oversized-alexa-mulberry-p-81.html]oversized alexa mulberry[/url] The information uncover Brits will pay out about £46.10p within the Kickboxing Time sales and get 13 things eachover the path of the actual Jan product sales. ", "Shopping on the web: That can help introduction the range's online presence, Realtor Provocateur make a very attractive video clip referred to as Fleurs Du Douleur [url=http://www.fashionshopmulberry.co.uk/mulberry-bonnie-bag-p-284.html]mulberry bonnie bag[/url] Firstly even though, they reports which will become up in an instant or even two. ", "Tell-all: Carey's ex-mate Shia LaBeouf not long ago spilled the legumes for their romance [url=http://www.fashionshopmulberry.co.uk/mulberry-handbags-seconds-p-207.html]mulberry handbags seconds[/url] 'A very good replicate of the celeb chart and several tabloid magazine and you're simply good to go.", "Ha Oh yeah exactly what do we have now here? ", "Ellie weren't able to make a decision from your lots of purses and handbags on offer [url=http://www.fashionshopmulberry.co.uk/mulberry-bags-shop-p-294.html]mulberry bags shop[/url] The lady explained: \"There are those who really like the thought for all those quirkiness and creativeness with the totes. ", "Several really adore the bags along with such as the design and style, some others find the sentimental worth almost all pleasing.", "Inches Go-karting change: Stuart Wide-ranging is back looking for a certain amount of nip over these midst overs. ", "The advance almost certainly comes to halt Bopara struggling any longer destruction next final over. ", "3 include from the six to eight deliveries. [", "url=http://www.fashionshopmulberry.co.uk/john-lewis-mulberry-bayswater-p-58.html]john lewis mulberry bayswater[/url] Hmo's style has been dressed up instead casually with clipped magenta shorts, any paler red vest as well as flip-flops as well as appeared fairly glum while the lady walked in the sunshine.", "\njctmqhckMG9cwD6eLBwziausj\n\n[url=http://www.fashionbootsshop.co.uk/ugg-bailey-triplet-boots-chestnut-p-704.html]ugg bailey triplet boots chestnut[/url] Your current erector spinae also positively extends your current lower back as you lean backward slightly. ", "It should not be used as an alternative to professional medical guidance, diagnosis or perhaps treatment. ", "LIVESTRONG can be a registered hallmark of the LIVESTRONG Groundwork. ", "Franco Sarto is a European designer of fashion footwear. ", "He or she is considered to be a good Italian romantic while using German engineering options for designing shoes. ", "Sarto lives in Venice, Italia, but the majority of his footwear is made in South america. ", "The Police throughout Rhodell are doing a good job they can do some ft . ", "patrol and they accomplish there work opportunities very well. ", "The city is shattered because certain people have burgled it along with robbed that. ", "Th grass is always cut, i've seen the gran cutting it all the time. [", "url=http://www.fashionbootsshop.co.uk/jimmy-choo-uggs-sale-p-668.html]jimmy choo uggs sale[/url] You have to be most beautiful with this autumn. ", "Initial of all, you ought to look at your daytoday predicament. ", "On this content label, you need to have a very have a look at the actual coloring the quantity the way of measuring as well as the footwear for man or even the woman. ", "Extreme climate change is being experienced in almost all sides of the world nowadays. ", "It is along with a series of all-natural catastrophes that appear to occur more at any other time in planet's history. ", "Each and every disaster boasts numerous lifestyles and destroys property. [", "url=http://www.fashionbootsshop.co.uk/ugg-wellingtons-p-150.html]ugg wellingtons[/url] Simmer. ", "Children from three to nine will sift through all that other items under the sapling this Christmas in order to unwrap the particular zu zu hamsters first. ", "What you need to know about hardwood flooring and hardwood floor installment You might want to consider your individual guide to identify song through the dehumidifier, since the configuration may differ by company and model. ", "She will be in Ireland for one more few months to promote the recording and excursion before time for LA. \"", "I loathed it when I first moved generally there to make my second record, but I satisfied fantastic individuals who I'm truly close friends with. ", "I now recognise that a city is merely as good as the folks you know right now there.\" ", "Your woman lives in the actual Beechwood Canyon district of the substantial metropolis, on the foot from the famous The show biz industry sign. [", "url=http://www.fashionbootsshop.co.uk/black-ugg-kensington-boots-p-646.html]black ugg kensington boots[/url] Very similar to the most popular Ugg boot within looks, a benefit of the Bearpaw must have boot will be the lighter asking price. ", "However, don't let the lower price tag fool you. ", "Tom Romeo created the Bearpaw Trunk in Beginning of 2001. ", "Well, is there a big deal with regards to just as being a grown up? ", "I mean, it's quite obvious she still has emotions for you. ", "However i think it can be tough to say goodbye to someone for a lot of people, regardless if you are 18 as well as 33 or even 55 as well as whatever grow older, but most particularly for women. ", "I am definitely doing this. [", "url=http://www.fashionbootsshop.co.uk/genuine-ugg-boots-uk-sale-p-293.html]genuine ugg boots uk sale[/url] Two. ", "The boss as well as culture. ", "The actual hiring manager might know something you don't about this task that is totally unrelated in your qualifications. ", "Whatever the case, when fourthquarter results are reported inside February, investors will be cautiously digesting send out forward outlook. ", "To me, your \"controversy\" over that's right as well as who is wrong isn't what is interesting. ", "Oahu is the direction, and the unpredictability. ", "Air Yeezys around Sale dated products, each of us dumbfounded to hide a major of individuals around the a new zone the bothersome great deal, they most likely take up exceeding beyond break up the right new to increase the risk for an existing business, Nike Yeezy Shoes a desirable celebrities. ", "For that reason, they behave as trying upon do the whole best. ", "Nevertheless no doubt, Kanye Air Yeezy will probably be on child get word out with regards to in order to our planet's most ideal staple foodstuff. [", "url=http://www.fashionbootsshop.co.uk/ugg-clearance-p-142.html]ugg clearance[/url] I HAVE fallen crazily, deeply in love with the actual cutest dumb creature you did discover. ", "There's a dilemma, however. ", "To begin with, the creature has been deceased for 80 years. ", "The craze spread, spawning thousands of less costly imitations, from as little as 7, and even the particular deeply unfashionable Geri Halliwell was spotted inside a pair. ", "Recording, a burglar ramraided a supermarket to acquire some smokes dressed just in a bed sheet and his lady's Uggboots. ", "One could dispute this was the maximum amount of a serious fashion crime since anything else.. [url=http://www.fashionbootsshop.co.uk/official-ugg-boots-uk-p-681.html]official ugg boots uk[/url] Homestyle wonton soup for me involves, most of the time, scratch fowl broth. ", "Basically have the time, My partner and i make the soup from a entire chicken using ginger, shiitake weeds, maybe a stalk associated with green onion, soy marinade and a splash of white wine. ", "It simmers for a couple of hours to produce that richness from the chicken and from your shiitakes. ", "Here are the straight information: merino sheep aren't killed for that UGG Bailey Option 5803 Boots , these are only sheared, in fact it is a recognized fact that sheep are more comfy without their heavy made of woll coats. ", "Ugg refers to any sheep's wool, certainly not their real skin. ", "And also the outside along with bottom in the UGG Bailey Option Triplet 1873 are man made. [", "url=http://www.fashionbootsshop.co.uk/uggstore-p-412.html]uggstore[/url] Paula Abdul sportfishing for her personal talk demonstrate. ", "Lindsay Lohan to help keep her \"job\" in Ungaro. ", "Julie Andrews to create first stage appearance throughout decades. ", "For the boss, part of your job will be there in 8:40. ", "This may not necessarily make sense to you personally. ", "It makes sense to her. ", "You heard right. ", "The look of ugg Australia footwear has been on the fashion landscape before. ", "In fact, these lamb skinned boot styles were around even before the seventies. ", "Get dozens of superstars out of Artist and put these in snowy Park Area, Utah, in addition to their look adjustments dramatically. \"", "It's several notches along from the typical red rug of Hollywood or Nyc,\" affirms entertainment writer Marcy Medina, who is with the Sundance Film Event for Females Wear Every day. ", "New developments are found in the details.", "\nnryeldpkMG9cwD6eLBbqvohtf\n\nDriving everyone Lewis Hamilton is actually nattering to their sibling as well as father. ", "Over the smaller non-public carpark stuffed along with Jaguars and also M-series BMWs, Robert Kubica is trying to fit his child scooter prior a good Aston Martin with no damage to your paint. [", "url=http://www.stylemulberrysite.co.uk/mulberry-roxanne-bag-p-87.html]mulberry roxanne bag[/url] Lifestyle assistant Jeremy Look explained this news since 'absolutely heartbreaking'. ", "After the nationalised companies proceeded to go belly-up, the actual socialists go about nationalising every factor of our everyday life, via quangos such as the Safety and also Equality Profits and also the ‘human rights’ racquet. [", "url=http://www.stylemulberrysite.co.uk/mulberry-briefcases-p-266.html]mulberry briefcases[/url] For Poppy Floyd, it had been a conclusion to a lengthy and painful estrangement, an opportunity to form your words some of the things she'd prolonged planned to inform the charming yet once self-indulgent mum or dad the woman shed in order to reputation to be a young girl. ", "Several mins: Ferdinand has returned in his / her foot since Combined introduction their own 1st invasion. ", "Welbeck efforts to discover Rooney inside the container nevertheless Pepe Reina is out swiftly to smother. [", "url=http://www.stylemulberrysite.co.uk/mulberry-handbags-outlet-p-15.html]mulberry handbags outlet[/url] Lauren Laverne, 34, TV and radio business presenter L8rs! ", "Tamara waved even though The author saluted to company because they liked rapid fishing boat trip [url=http://www.stylemulberrysite.co.uk/mulberry-us-p-199.html]mulberry us[/url] That it was a beautiful time and that i seemed to be on my way out and about as i saw an indication for the little one hippo. ", "The idea directed up a hillside with a sharp observe. ", "I needed not witnessed a newborn hippo previous to and also out of the blue My spouse and i experienced fired up along with inquisitive. ", "In sync: Harper displayed your ex strolling capabilities seeing that the lady joined the woman daddy's aspect exactly who went close to her [url=http://www.stylemulberrysite.co.uk/mulberry-mini-alexa-bag-p-366.html]mulberry mini alexa bag[/url] Luckily, numerous Midas referrals have done also as well as superior to of which. ", "A lot more...How you can wear buckskin... and NOT appear like Nicole KidmanYes, you CAN look classy on Dimensions 18 [url=http://www.stylemulberrysite.co.uk/mulberry-small-bayswater-satchel-p-220.html]mulberry small bayswater satchel[/url] Preserve tranquil: This Harvey Nichols plan tagline will be 'Try To keep Calm' in addition to records a chicken breast in full airfare setting recommending they may have had trouble to complete this Economical authorities currently warned that this Christmas time buying practical experience may easily get rid of hands while men and women shell out huge amounts of greenbacks. [", "url=http://www.stylemulberrysite.co.uk/mulberry-shop-p-37.html]mulberry shop[/url] This says air starvation is a main factor within plane lag as there is less air in mid-air in airplane log cabin rentals. ", "Take a trip tights might help boost the move regarding oxygen rich bloodstream returning to one's heart simply by up to 40 per cent, through adding pressure upon particular muscles.", "\nslxzguzkMG9cwD6eLBtvgwzus\n\n[url=http://www.fashiononlinebootssale.co.uk/wwwuggcouk-p-429.html]www.ugg.co.uk[/url] (2) Even so, the Dems have not denounced or demonstrated the trouble to role back U . ", "s . ", "imperialist policies. ", "Hence, the great number of military angles throughout the world will likely remain. ", "Facets in Qatar, Bahrain, Iraq, Egypt, The nike jordan, Kuwait, Djibouti, Somaliland, etc continuously serve their particular imperial purposes. ", "Many of us took the girl seriously, however her notion of seriousness grew to be loaded with agony tremendous struggle along with suffering and also work. ", "Your woman was no lengthier an presenter. ", "She would have been a pack mule.. Flacco is known for a 53 playoff record, including a win over the Patriots from the 2009 postseason. ", "Even so, he threw just 10 x in that sport and has chucked more interceptions (seven) than landing passes (six) in his postseason career. ", "Brady threw 6 touchdown goes last week against Denver. [", "url=http://www.fashiononlinebootssale.co.uk/real-uggs-on-sale-p-874.html]real uggs on sale[/url] Brown Hemp SyrupTo make dark brown rice syrup, suppliers digest amylose in to a blend of maltotriose, maltose along with glucose. ", "Your maltose is about 40 % as fairly sweet as table sugar and the maltotriose is about 30 percent since sweet since table sugar, explains the Amano Enzyme Company. ", "Darkish rice syrup does not taste since sweet because table sugar, yet because all sugars regardless of methods sweet they will taste have the exact same caloric content per system mass, dark brown rice syrup provides the same amount of calories for each gram since high fructose corn syrup and ordinary sugar.. [url=http://www.fashiononlinebootssale.co.uk/ugg-classic-argyle-knit-boots-5879-grey-p-95.html]male uggs[/url] Give some thought to which design of swimsuit you really feel you would appear best in. ", "Whether or not it's onepiece or twopiece you may feel most comfy in the swimwear that gives the particular most self-confidence. ", "Swimwear changed a lot over time, from fits that were large and awkward to swimming in to the extremely tiny string bikinis today.. So here is how the having to clean UGG boots started out for me should you care to understand. ", "My girl, who is 14 at the time, wished a pair of Uggs, ya know everyone has these people lol. ", "Well being the economical mom I will be and the price of the boots and her expanding foot I used to be like absolutely no way will I ensure you get a pair right up until your base stops growing. [", "url=http://www.fashiononlinebootssale.co.uk/ugg-5815-p-506.html]ugg 5815[/url] Hat provide product or service on the web. ", "This will be in a few minutes or even seconds. ", "On the other hand, just in case you presently come with an internet shop you would want to obtain the shoes from, that you are capable to immediately pay a visit to the net site. ", "But it's more than meals, he brings. ", "Other important elements are choosing the china, wine beverages, flowers, along with cutlery. ", "And also here it could all come down to color, especially the color Mrs. The blue bars show the position of the 275 annotated tRNA genes and other class 3 genes SNR6, RPR1, SCR1 and also RDN5. ", "An pointer points to your SNR52 gene. (", "B) Partial view of a microarray slide of a 95myc immunoprecipitation experiment. [", "url=http://www.fashiononlinebootssale.co.uk/uggs-jimmy-choo-suede-sora-fringe-shearling-boots-chestnut-3045-p-287.html]ugg jimmy choo[/url] Koolaburra Modern Oldies, Australian sheepskin boots produced in Austrlia from Australian Merino sheepskin, are featured inside InStyle Magazine! ", "Do not miss them!Introducing the newest Koolaburra for 2010! ", "Wise, bold, popular and, as always, the very finest quality sheepskin shoes or boots in the world. ", "New styles, hues, textures, patterns, studs, fringe it's all below, including new designs coming from Kettle Black, studs, uric acid, feathers, plumes. ", "As well as on everyone else, these doublefirnge Koolaburra Australian ugg boots are available in Australia and then enhanced yourself by Kettle Black in the usa. [", "url=http://www.fashiononlinebootssale.co.uk/uggs-black-p-408.html]uggs black[/url] Now that my personal ankle can be hurt it really is depressing that we can't get in a good cardio exercise work out i soo need for my mood and also weight loss. ", "I needed this small mini target for myself i wanted to drop another 5 pounds possibly even before my mother and sibling come to pay a visit to for my graduation. ", "Now I know that's not going to happen. ", "Assume ticket income to be brisk next year, StubHub spokesperson Glenn Lehrman said. ", "Solution prices are jogging about $3,Hundred for the Ravens49ers sport, and Lehrman predicted the 2014 Super Bowl would certainly create the most significant demand ever endured. ", "Think people want to be section of a firsttime encounter. [", "url=http://www.fashiononlinebootssale.co.uk/ugg-boots-on-sale-for-women-p-595.html]ugg boots on sale for women[/url] Core page is lower when it comes to solidity which inturn elevates consideration activation with calves as a result of 16% by simply establishing uncertainty. ", "The middensity bottom part helps maintain speed, swiftness as well as alternative. ", "The patent approaching technology was basically researched throughout the Salford University or for Gatwick not forgetting proved for promuscle useful exercise. ", "By having back your own defenses and addressing the partner's disappointed, a conversation can ensue as opposed to a defensive reasoning match. ", "In this situation, apologizing internet marketing late, listening, and seeing the situation from your partner's point of view would certainly dramatically alter the dynamics of the situation. ", "Put simply, don't just react impulsively from Only your emotions.", "\neidczpckMG9cwD6eLBiqzjuwn\n\n[url=http://www.salediscountbootsonline.co.uk/ugg-shop-bicester-village-p-897.html]ugg shop bicester village[/url] There are something is that you just might not want to know the particular \"why\" of. ", "Along with, that \"is\" appropriate. ", "I hope the particular answers you have read on this post have pleased you.. This can be one area in which you need to know your lover well enough to determine if she loves to have coordinating slippers it really is her bath robes. ", "Several women gown as well inside their own home while they do outside the house. ", "Their nightgowns all have matching gowns and slip-ons. ", "Work was shared amongst the sisters as well as their enthusiasm regarding fashion shot new blood vessels into the models. ", "According to Madison, Inches Paola was in charge of pelts, Anna made bags and accessories; Franca what food was in charge of the baggage and leather shops. ", "Alda went the fur salons and also Carla took on an overall advisory function.\" ", "The actual famous Fendi Baguette was designed by Silvia Venturini Fendi, Anna's little girl.. [url=http://www.salediscountbootsonline.co.uk/ugg-retailers-p-834.html]ugg retailers[/url] \"My first and also strongest recommendation is always to help make something yourself,\" the lady says. \"", "Whether it is a love be aware, a bouquet you pick yourself, or a special meal which reminds you of a period you distributed together, something handmade along with thoughtful usually trumps any storebought gift in my opinion. ", "They don't are expensive of money along with the lasting effect is way greater than a new set of earrings.", "In .. Thousands of people participate in golf. ", "It has always been seen as upper school game nonetheless people's ideas are now altering. ", "Long gone are the days where you had to utilize plus four legs and check sweaters. [", "url=http://www.salediscountbootsonline.co.uk/ugg-fluffie-flip-flops-p-678.html]ugg fluffie flip flops[/url] The luxuries of modern existing has fairly diluted the actual primal animal within the males of our species. ", "Layers involving clothing carry on and alienate each of our naked physiques from the browse and overview of those who would most benefit from it. ", "Thankfully, those who have been gifted with the popularity for being celebrities have used their visibility and interpersonal standing for you to remind us of the rawness and beauty which is the naked men body. ", "Not valid in rain checks, prior acquisitions, gift cards, licenses or function tickets. ", "Supply good on instock merchandise simply. ", "Excludes settlement items designated with Several price being.. [url=http://www.salediscountbootsonline.co.uk/uggs-bailey-button-sale-p-407.html]uggs bailey button sale[/url] A good winter months hat will help trap in the heat upon those added chilly times (winter isn't really done with us yet, after all) and helps you to save your ear from freezing, but it doesn't need to be just a practical afterthought. ", "The secret to success is finding something that not just keeps you warm but also enhances your wintertime ensemble straight into something extremely stylish.", "In terms of finding a comfortable and fashionable cap, here are a few options to choose from:View Larger ImageTHE Hat CAP This isn't your average beanie the angora cloth gives it an original look and it'll keep you quite warm.", "While searching for a winter beanie, choose something within a woolcashmere (all cashmere when you can afford it) or angora mix straight wool will lead to an itches, irritated your forehead.", "If you like any sleeker appear, go for a smaller sized, more equipped shape. ", "These feeling much more hobochic can go for an oversized and also slouchier style.", "As for colours, african american is an easy option, but heathered off white or smokey barbecue grilling are wonderful complements into a black top coat and headband. [", "url=http://www.salediscountbootsonline.co.uk/ugg-boots-uk-sale-official-p-822.html]ugg boots uk sale official[/url] The sole answer I managed to get was through the young brunette, \"Haha likeee, what do anyone meaan? ", "Who are youu?\" ", "The only thing a whole lot worse than discovering the man you are in love together with is unfaithful to you, is knowing that its with a bimbo together with half the brain that adds a supplementary \"uhh\" to every thing she affirms. ", "I was gonna find out the most severe was still to come though. ", "The wrinlky woman strolled in and also said to myself \"Honey, if you don't mind my girl and our boyfriend want some alone time now,Inch she stated with a creepy smirk. [", "url=http://www.salediscountbootsonline.co.uk/cloggs-uggs-p-858.html]cloggs uggs[/url] Celebs have to be accustomed to the lifestyle in the rich as well as the famous. ", "The days are gone when they can sit down idly at a coffee shop, and just benefit from the time complete quietly by. ", "Instead, a number of them may even visit extreme steps like choosing bodyguards or perhaps getting a distant hideaway just to acquire some quiet and also alone time. ", "Peaceful times allowed me to trap my breathing and digest my studying. ", "I've acquired much coming from reading guides about various other spiritual travels. ", "I've resembled on these stories along with attempted to placed my own encounters in viewpoint. [", "url=http://www.salediscountbootsonline.co.uk/ugg-beanie-hat-p-761.html]ugg beanie hat[/url] While that is actually cooking, combine your hammer toe meal with the salt, pepper, garlic powder and crimson pepper as well as spread out on a small dish. ", "Butterfly your fowl and distribute a little extra virgin olive oil on the chicken, then dip it inside the corn dinner mix. ", "Fry in a pan (with essential olive oil) until glowing brown along with cooked inside (roughly Some minutes upon each side).. Due to the fact that's the difficulty. ", "OEM the required permits are singleuse the required permits that cannot be attached to more than one computer system, even if the original machine is not really in use. ", "The End User Computer software License Conditions, which the end user must accept before with all the software, claims that the licenses may not be distributed, transferred to, or used simultaneously on different computers.", "\naqhydjmkMG9cwD6eLBwonuebr\n\nCompletion: Stansted Town's Carlos Tevez pounces coming from near assortment to set their part 3-0 ahead [url=http://www.fashionshopmulberry.co.uk/mulberry-messenger-bags-p-2.html]mulberry messenger bags[/url] Reasonable likelihood: Mata could hardly command Kalou's throughball Goodbye: Emma said jane is leaving behind mainly because she'd like to consider an application not really provided by Brown [url=http://www.fashionshopmulberry.co.uk/mulberry-bag-store-p-297.html]mulberry bag store[/url] We’chemical always be investing the following day or two doing exercises in addition to ingesting with each other, subsequently socializing at night inside the community of Cazals in the Whole lot. ", "I wasn’testosterone levels getting excited about that will aspect: I actually was battling in spite of basic French. ", "It's a trainspotter's wish becoming reality. ", "Trains small and big, quickly and tortoise-slow, tend to be an integral part of the nation's lifestyle, nonetheless they have got quickly become a serious portion of Switzerland's entice the particular traveller. [", "url=http://www.fashionshopmulberry.co.uk/white-mulberry-tree-p-461.html]white mulberry tree[/url] Winner: Darren Bent's aim ended up being enough to be able to secure the particular get for England Leyshon needed nine goblet accent pieces, any glass dish, a hair piece, three stand lanterns plus a container connected with rum belonging to the who owns the exact property, Tamara Vestey. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-bayswater-review-p-34.html]mulberry bayswater review[/url] It's explains to you usually are lower 25.5p in 779.5p. ", "Mulberry bags to the 24 FIFA voters’ wives or girlfriends? ", "What up coming, a lot more Ferrero Rocher compared to the ambassadors may offer? ", "As long as they want a style beat, it may be Totes And also Gladhands. [", "url=http://www.fashionshopmulberry.co.uk/mulberry-factory-p-369.html]mulberry factory[/url] In the video clip, Rita sports a selection of Nineties influenced clothing, like heaxagonal diamond earrings, darkish lip-liner, bustiers and indulgent outfit necklaces. ", "Seventeen.15 Tottenham create a few improvements [url=http://www.fashionshopmulberry.co.uk/mulberry-s-p-377.html]mulberry s[/url] 'The California king has long been cash conscious,A a spokesman from Buckingham Building advised MailOnline. '", "Having her dressmaker ensures that she is able to recycling clothing she's got worn prior to insurance agencies them fine-tuned, as well as make use of fabric your woman already owns'. ", "Expand Now I am brazen, flagrant. ", "Passers-by will eradicate, laugh and declare, ‘Appreciate it!’ ", "or perhaps ‘That’ersus an incredibly commendable undertaking you might be performing’. ", "I have a stock answer: ‘Nevertheless I’michael carrying it out for me personally,’ I believe that. [", "url=http://www.fashionshopmulberry.co.uk/cheapest-mulberry-bags-p-288.html]cheapest mulberry bags[/url] The particular knee time-span can make it sensible plenty of for work, although the modern day appearance as well as waistline details are generally unassuming adequate intended for days in addition to saturdays and sundays.", "\nxlktlkrkMG9cwD6eLBatdevtd\n\nResults demonstrate that Xmas Eve ended up being Ninety % bigger this past year as being a shopping day, and xmas Evening ended up being Seventy one percent larger. [", "url=http://www.fashionbarboursite.co.uk/barbour-windsor-p-319.html]barbour windsor[/url] 3. ", "Johnson's Round-the-clock Moisture Gift associated with Appealing Actual softness, £8.99 (Superdrug). ", "Style and design procedure: Ms Mellon declared she'd develop concepts along with Mister Choo's cousin, Microsoft Choi would likely sketch these people out plus the among these individuals stays in old-fashioned outlets to look for enthusiasm [url=http://www.fashionbarboursite.co.uk/barbour-to-ki-to-sports-jacket-p-435.html]barbour to ki to sports jacket[/url] Justin Tipuric is actually wearing his or her brand vibrant glowing blue scrum head wear (which tells him connected with his 1st rugby pub inside Southern Wales). ", "It is magnificently together with the renowned red-colored jersey. ", "Previous, the actual California king had showed up amongst much excitement since the national anthem called out throughout Ascot to encouraged herroyal procession in the Berkshire racecourse. [", "url=http://www.fashionbarboursite.co.uk/womens-barbour-winter-force-waxed-parka-jacket-p-473.html]womens barbour winter force waxed parka jacket[/url] Questionable: Jodie Cunningham got the girl busts bigger to 36DD about the National health service * and from now on would like these individuals decreased This scramble pertaining to details has now achieved an important period as well as three details within the bag this morning will certainly be a massive fillip since they seek to steer clear of dropping to the Title. [", "url=http://www.fashionbarboursite.co.uk/womens-barbour-flyweight-cavalary-jacket-navy-p-100.html]union jack barbour jacket[/url] Red desire: The particular celebrity lately colored her previously golden-haired head of hair possibly lighter King involving ker-ching: Tamara Ecclestone [url=http://www.fashionbarboursite.co.uk/barbour-womens-vintage-quilted-jacket-sand-p-73.html]barbour polarquilt jacket[/url] Regal: Royal prince William, Challenge each other associated with Cambridge, in addition to Kate, Duchess connected with Cambridge that committed last year 6. ", "Thai Club Cleansing soap Flowers, £2.97 (Superdrug). [", "url=http://www.fashionbarboursite.co.uk/barbour-parka-womens-p-397.html]barbour parka womens[/url] Hardly garments, add-ons such as bags, grip, pumping systems as well as tresses fascinators coded in different wide lace top types are generally good for fashion scorecard. ", "The particular 40-year-old hair salon to your personalities features traded in their bug-eyed glasses, pelt gilets as well as oversized purses and handbags for just a day-to-day search connected with maxi attire and large hat. [", "url=http://www.fashionbarboursite.co.uk/barbour-womens-shaped-liddesdale-quilted-jacket-indigo-p-57.html]green barbour jacket[/url] Twerking with among the woman's crazy back-up dancer, Miley proceeded in order to smack the woman at the base.", "\nmhbnwknkMG9cwD6eLBcwyubon\n\n[url=http://www.fashionguccisite.co.uk/tote-gucci-bag-p-667.html]tote gucci bag[/url] Ugg outlets can be hard to find and also Decker outlets even harder. ", "Many of their outlets will be in New York and also California. ", "You will find at least one outlet in New Jersey, Iowa, Boston, Florida, Wi and Tx. ", "Introducing Kevin Peterson suggests that his story is the opposite, using a conventionally pleased ending, yet Gruenhagen's introduction won't come out along with say that sometimes. ", "Gruenhagen thus doesn't need to deal with the likelihood that Billings might sooner or later give in for you to gay desires, or might be doing so currently, or which he's bisexual.", "This specific introduction is often a rhetorical parlor trick, performed on the eve of the debate on whether to acknowledge gay union. ", "This slightofhand only has to fool anyone for a short time. [", "url=http://www.fashionguccisite.co.uk/gucci-pink-p-894.html]gucci pink[/url] A lot more men are beginning to see that Ugg boot is a wonderful shoes or boots selection for all of them just like females. ", "The stylish Herrick is likely to be a favorite. ", "Uggs is a brand you ought to put on your listing if you are looking for a durable boot that can be used various time. ", "And now they may be being donned by female and male famous people along with models too. ", "This is plausibly because while the diploma boots involving UGG Quarterly report are the unexcelled shoes for cold weather, the way that they permit the feet inhale also establishes these boots unflawed being worn perhaps during summer months. ", "This comprises UGG shoes or boots complete with regard to daily utilize.. [url=http://www.fashionguccisite.co.uk/gucci-side-bag-p-19.html]gucci side bag[/url] A number that involves us either can get a hooded supplies coat or possibly a coat and never have to a business akun. ", "Any a bad accessibility that is related to this particular addons offers coat, bar stools on sale the same time for we all are several that consume this article effortless groups. ", "Everybody can a new rudimentary actions from great colours one of these as olive, orange, ecru, dark, khaki, and added a supplementary impaired. ", "There is more beauty items labeled \"natural\" and \"organic\" than there are Ugg boots in Britney Spears's closet. ", "As outlined by market researchers, sales associated with \"natural\" and \"organic\" bath and body goods reached an impressive $4.3 billion dollars in 2008 and are expected to hit $6.Six billion by simply 2010. ", "Which begs exploration since, in relation to shampoos, products, or lipsticks, the labels' claims don't always utilize. [", "url=http://www.fashionguccisite.co.uk/gucci-bags-for-boys-p-825.html]gucci bags for boys[/url] Heated up for a mile with Geebet then ran with Jen for 8 a long way. ", "I just kept up with your ex tempo pace for about Three or more miles. ", "Our average pace was Eight:06. ", "Two) Then individuals were only given here is how the planning section calculated the actual percentages involving signatures obtained (about each of these factors), AFTER the PD invalidated the petition (based on these information) , thereby barring citizens coming from evaluating the design department's determination until As soon as the public reading on April 12 (in the event the BOCC voted Thirty-four to rezone the particular watershed boundary a election that probably would not have sufficed experienced the demonstrate petition already been deemed valid). ", "County Law firm Siler refuses to reveal the specific problem(s), not to mention the specific signatures showcased, to the community. [", "Yet as of County Attorney Lowell Siler's press release supporting the invalid choice, none of the bigger property owners that signed the petition have been contacted inside attempt to validate/verify his or her signatures.]. [", "url=http://www.fashionguccisite.co.uk/ebay-gucci-bags-p-519.html]ebay gucci bags[/url] Recently, My partner and i sat along and spoke with Mrs. Claus. ", "She is at town for the home and garden show at the Georgia World The legislature Center. ", "As well as LittleNell is totally correct about Bolivia. ", "The girl doesn't have feeling for Pacey, After all Peter. ", "Exactly what she is realizing though is they may not be badly as Waltermate built them into out to become. ", "What from suggest is that there is a desire cycle with regard to UGG boots, similar to that of autos. ", "I know how it appears. ", "But a key factor in deciding future requirement for automobiles would be to look at the common age of the fleet. [", "url=http://www.fashionguccisite.co.uk/i-gucci-p-156.html]i gucci[/url] It should not be used as a substitute for professional medical advice, medical diagnosis or therapy. ", "LIVESTRONG is a registered trademark with the LIVESTRONG Foundation. ", "Furthermore, we do not pick every marketer or advertising that appears on the internet sitemany of the commercials are served by third party marketing companies.. Merrell footwear can be purchased by simply men or women to become worn for outdoor actions. ", "The Merrell Organization was founded two decades in the past in Utah. ", "As the wants of outdoor fanatics have modified over the past 20 years, so contains the design of Merrell footwear. [", "url=http://www.fashionguccisite.co.uk/gucci-black-for-men-p-320.html]gucci black for men[/url] I bought all of them at a discount middle and did not even understand they were Ugg boots until later on. ", "I am a lot more concerned about exactly how my foot feel than what they look such as anyway. ", "I will always choose comfort over fashion every day.. Men are able to use a business go well with, slightly oversize, to get a 20s mobster costume. ", "The best hat and also shoes really make the outfit. ", "If a plastic material Tommy Gun are available at a dress-up costume shop, better yet. ", "4. ", "They hoping employees will leave by herself. ", "This is a dreadful approach; in fact, if revenue numbers had been down, the manager wouldn merely rely on wishful thinking to get them back up.", "\ngrzlxkukMG9cwD6eLBjntlfkh\n\n[url=http://www.salediscountbootsonline.co.uk/ugg-store-p-17.html]ugg store[/url] However, in the event that compared with foreign advanced technological innovation, the home printing and packaging should be improved, with China WTO accession, overseas printing along with packaging corporations to enter, in improving the general level of Cina printing along with packaging sector will be fantastic promote the same time frame, competition is certain to bring this specific industry. ", "Cina must importance more advanced technological innovation and gear to take a seat inside the international market. ", "Packaging is often a printing as well as publishing industry, an important part of the labels products are the cause of 20% of all printed material, and the worldwide growth rate of 5% per year. [", "url=http://www.salediscountbootsonline.co.uk/cheap-ugg-boots-for-sale-p-24.html]cheap ugg boots for sale[/url] No one? ", "Not surprising. ", "The good news is you can still acquire all the best deals without spending continuously looking for them. ", "Seriously. ", "CLEO journal, Aunty Jack Tv program, Roy and HG with the 2000 Olympic games, Circus Ounce just to name a few. ", "Here is the Hawaiian presenter Adam Incline explaining some things about the and some additional country features . ", "Always irreverent... Without having going to the benefits of whether or not this is actually meaning or not, we should instead realize that you will find there's real be interested in male stars without their own shirts. ", "Considering these photos remind all of us noncelebrities that basically, there's nothing different between us and them. ", "The just happened to have great having to pay jobs, appealing onenight stands and lots of daysoff than the everyone else. [", "url=http://www.salediscountbootsonline.co.uk/ugg-discount-code-p-29.html]ugg discount code[/url] Has been pretty straightforward compared with another procedure. ", "Minimum cramping also. ", "In fact, I believe I'll go for a walk later on right now (going to be approximately 1617 celcius which is Gorgeous weather for all of us at this time of year).. If you use the internet at Gap and devote $50 or more, Difference will renounce the tasks and managing fees for Canadian buyers. ", "Chain along with stores with Sherway Gardens, Stores of Add Mills, Fairview Local mall, Sherway Gardens, Yorkdale Purchasing Centre, along with the Promenade. ", "Variations for infants', ladies' and boys' clothing range from classic to fashionable. [", "url=http://www.salediscountbootsonline.co.uk/ugg-jillian-p-375.html]ugg jillian[/url] With 475 pupils, O'C is the littlest school in the and less as compared to onequarter the size of Buenos aires, Lincoln, Lowell or even Galileo. ", "Still, 2 yrs ago, Gamino drilled the school boys team to the Eee championship. ", "That's their initial varsity soccer championship considering that 1971, while O'C was in small and Gamino enjoyed midfield on the crew. ", "Such methods are common with dirt vehicles such as Land Rovers and also Range Rovers, brought in Japanese as well as American vehicles, and vintage cars. ", "It's, however, nevertheless important to perform cavities of other vehicles. ", "Normal water can often get trapped in tooth decay: especially in the entrance, when the drinking water fails to correctly drain out in the drainage openings. [", "url=http://www.salediscountbootsonline.co.uk/what-are-uggs-made-of-p-624.html]what are uggs made of[/url] By using Curl Hairdressing within the good hair days. ", "As a result, i'm not really really in reality absolutely sure electricity, like a enduring internet business put together. ", "One important thing certainly nonetheless, could be the individual should be benefiting from many of these cut down fees. ", "In Might, Princess came second in a celebrity fashion show held to promote Woofstock. ", "She used pink nighties inspired through Victoria Secret style Heidi Klum that Clarke manufactured by cutting down greatly sexy panties she owned or operated. (", "The success was dressed as the Dark-colored Swan movie character portrayed through Natalie Portman.). [", "url=http://www.salediscountbootsonline.co.uk/cheap-real-uggs-for-sale-p-453.html]cheap real uggs for sale[/url] One of the first research to show a specific antioxidant in a specific food may help fight cancer was at Stanford University throughout 1995, exactly where researchers discovered that tomato products inside the diet reduced the risk of prostate type of cancer. ", "Further study narrowed the benefit down to the antioxidant inside tomatoes known as lycopene. ", "Lycopene is concentrated inside tomato soups, gravies, tomato paste as well as other tomato products, and it is available in more compact amounts inside fresh tomatoes, watermelon along with pink grapefruit. [", "url=http://www.salediscountbootsonline.co.uk/cream-ugg-boots-p-859.html]cream ugg boots[/url] It turned out huge 6 feet tall and also prelite. ", "This sapling lasted us all a while till one shift when it got broke. ", "Properly by this time my Fiance i were relationship and he spoke me directly into getting a genuine tree. ", "To help lengthen residing of a particular person Herve Leger Electric outlet, make use of UGGs particular person Sheepskin Answer Conditioner which fits on the nontoxic in addition to naturally degradable solution to keep the personal Ugg boot 5802 Classic Intimate Flower Footwear inside greatest scenario. ", "In addition, you should not toss your personal shoes or boots in to a washing machine as well as thoroughly clean them all much too difficult that may hook them up to away. ", "Basically, it will likely be difficult to acquire Inexpensive UGG Vintage Tall Crochet Shoes or boots 5817 that will help you to keep dried up in addition to cozy all the way through numerous circumstances.", "\n[url=http://www.fashionbarbourjackets.co.uk/womens-barbour-vintage-international-jacket-turf-p-150.html]barbour factory south shields[/url] As Samurai Young ladies progresses, one thing that's often hard to bear in mind is that this is often a high school oriented show, only in an different world placing with a balanced dose of action. ", "Having various heroes now experiencing each other on and on through some of the standard exercises such as party dinners and so on, but in the actual setting of a traditional age style property, is offputting. ", "With the visual design of the demonstrate, having the heroes in their different outfits, apparel and the like from this very sun kissed and old style home is like the mixture associated with very different issues that doesn't very click. [", "url=http://www.fashionbarbourjackets.co.uk/barbour-lightweight-liddesdale-jacket-¨C-navy-p-16.html]barbour regent street[/url] A wide calf operating boot come in any selection of styles and colors. ", "Some are very standard English made riding boots while others have a very more western flair. ", "Some are even made from heavy duty cloth, canvas or perhaps man made supplies while others have become rich, normal leathers. (", "A new Gulf Newton location is open.) ", "Discover denim, a number of dresses, outdoor jackets, tanks, bathing suits (!), ", "and more. ", "We're told your closing night out is Jan. 9th. ", "Lebih kurang setahun yg lalu, di hening pagi ketika daun nyior melintoklintuk ditiup angin sepoisepoi bahasa, ketika mana sang petani baru saja melabuhkan punggung di pinggir kali melepaskan lelah, gegeganggg!!! ", "kereta wira aku cium tong sampai. ", "Alaa. ", "Tong sampah bandaran yg besar gedabak tu. [", "url=http://www.fashionbarbourjackets.co.uk/womens-barbour-rebel-waxed-jacket-¨C-black-p-143.html]barbour house of fraser[/url] Initial, it goals smaller and much less competitive medications to develop. ", "By doing this, the company could beat its competitors in filing shortened new substance applications (ANDAs) with all the FDA, which offers 180 days of marketing exclusivity as soon as the branded drug goes off evident. ", "This is massive in the generics company windfalls from highmargin income in these One hundred and eighty days could generate a number of \"normal years\" worth of revenue. ", "The general, noncomic fans know them as opposed to villains like Ras ghul or Darkseid. ", "I do think the suppliers and film studios VERY much attention what the regular film viewers is going to get free from it. ", "These people better whenever they intend to make an attempt to make a profit.. [url=http://www.fashionbarbourjackets.co.uk/womens-barbour-vintage-international-jacket-navy-p-146.html]barbour ariel[/url] Just what? ", "Pregnant? ", "Yes and of course as being a half human/half vampire baby this baby has some peculiar things happening. ", "The strength is a bit more than normal, leading to damage to Accogliente body, hunger is draining Bella. ", "This specific becomes too much for E and knowing the baby will be killing Bella he flies her back home to his or her Doctor/Father Carlisle Cullen, to abort this specific birth. ", "Grossmargins are expected to secure to 49% above this period, although operating margins are expected for you to fluctuate around 19%. ", "I worked out the cost of collateral to be 15.4% (using CAPM and a beta of a single.4) as well as estimated the terminal growth rate of 3.5%. ", "This analysis brings about an equity value of $3.A single billion or perhaps $82/per share.. [url=http://www.fashionbarbourjackets.co.uk/womens-barbour-hampshire-hooded-quilted-jacket-¨C-black-p-119.html]barbour bardon[/url] Mynameishere 1553 days ago linkSince uggs is really a winterboot it's fairly obvious that it'll be sought out in winter occasion. ", "The study ended only about baby titles. ", "When you identify a person, you will need to consider the impact it will have on the person's whole life. ", "At the top, one can possibly see the wool sticking out; a good accent depth. ", "Many of the goods are offered under retail price. ", "Unique products like your Ultra Brief Chestnut Ugg Boots and such things with grip and authenticity guaranteed would be treasured control for most buyers. [", "url=http://www.fashionbarbourjackets.co.uk/barbour-lightweight-liddesdale-jacket-¨C-olive-p-19.html]barbour beaufort jacket[/url] When you strength train, you create micro tears with your muscles. ", "Consuming protein in advance will keep a steady flow of proteins going to your muscle tissue while you exercise to help advertise faster benefits. ", "Chicken and turkey busts, tuna, salmon, cottage cheese, offspring, milk along with whey protein powdered are quality sources.. UGG nightfall can be an advanced edition developed on basis of Ugg boot classic tall. ", "This style is fashionable yet trendy to recharge any look for fastidious eyes. ", "For any ladies who are keen upon latest fashion fad, a pair of UGG nightfall in a wealthy shade is the greatest bet to cut a smart figure this winter. [", "url=http://www.fashionbarbourjackets.co.uk/international-original-waxed-jacket-c-5_29.html]international original waxed jacket[/url] Pertaining to Q2, total products was upwards 65% to $346 zillion, or 21 weeks. ", "Operations believes it is going to end your fiscal 12 months with about $329 trillion in products, or way up 30% yearoveryear. ", "If correct, that would suggest the company would have nearly $920930 thousand of stock on hand to be able to sell $600 zillion worth of merchandise. ", "Action! ", "Be aware of destiny of your fireplace furnishings by following the seasons, and to move ahead with your programs of great fireplace redecorating, consider using potted evergreens, pine cones and also sticks from a backyard in the Winter. ", "Watch what nature does, in the Spring try paperwhites, tulips, or perhaps forsythia. ", "Home decor can be lively, utilize a flower within four or five complementing vases, or even use pots of identical flowers in the Summer.", "\n[url=http://www.onlinebootsaleshop.co.uk/ugg-ascot-p-187.html]ugg ascot[/url] Amour men clothing has run out of progress opportunities. ", "The corporation gets 35% of its men clothes sales, which in turn in total include 53% of its income, from compression setting and while Underneath Amour done a great deal to broaden sports athletes use of retention, it today seeing a large amount of competition from other players such as Nike and Champion At Deckers the 5 largest buyers accounted for 30% involving worldwide sales in 2008. ", "31% of their internet revenues by which means that Under Amour has much less control over its very own destiny Ugg boots have ongoing to gain market share at Nordstroms. [", "url=http://www.onlinebootsaleshop.co.uk/ugg-ascot-p-187.html]ugg ascot[/url] With Showmanship actor Brad Pitt and Eddie Murphy ainsi que preached the instructor factory wall socket sex scandal Robin the Givens considering that to marry Tyson in February 1988, have not the media optimistic about the hitched woman offers filed ninety days to apply to the court with regard to divorce . ", "Tyson valued when Zhuojian previous, originally serendipitously: \"Although all of us cheap coach purses are going to complete divorce proceedings, when we parted, almost every instructor outlet on the web day to go to her home to continue to maintain a sexual partnership.\" ", "Some day, his usual visits to Mrs. Xianggui available the door to find someone preempted the actual adulterer exactly while yet to jump red Artist, is trainer outlet on the web still generally appeared throughout TV Brad Pitt, Tyson said: \"I ended up being very angry, coach manufacturer online and I must say i want to . [", "url=http://www.onlinebootsaleshop.co.uk/ugg-cleaner-kit-p-69.html]ugg cleaner kit[/url] Fur features heavily within everything from skirts to coats, hats and handbags and footwear are no exclusion. ", "Not simply pertaining to fashionable skibunnies, overhairy shoes or boots (named Mukluks) tend to be paired with buckskin pieces, nation tweeds and plaids, cardigan dresses which season's Intarsia knits. ", "This '70s encouraged Bohemianstyle can also teamed with sensitive flowing materials such as cotton and chiffon.. Macy's? ", "Ugh. ", "The ones inside Nashville and also Memphis have even lower quality merch than Belk. ", "And that's stating alot. [", "url=http://www.onlinebootsaleshop.co.uk/wwwuggaustraliacom-p-170.html]www.uggaustralia.com[/url] One thing that will hint at the right method to this worry about UGG Electric outlet boots would be to observe the good reputation for whatever we currently call Ugg sheepskin boots footwear. ", "Ugg boot will be originally from Modern-day australia. ", "The very first denote be generated is definitely that UGG boot shoes are nothing modern. ", "Voigt doesn't feel so: \"He arrived to office with a Rolex, the best symbol of funds. ", "Though he is changed their watch with a slightly much less showy Patek Philippe, that unpopular showy aspect is not forgotten. ", "President) Barack Obama's very calculating in how he attire, he looks so peaceful and every day. [", "url=http://www.onlinebootsaleshop.co.uk/ugg-boots-outlet-uk-p-238.html]ugg boots outlet uk[/url] Rester soimme est n't message qu'elle revendique au quotidien.", "En matire signifiant mode, Nolwenn Leroy aime plutt des classiques mais ze permet parfois des splashes d'excentricit. \"", "Ines de la Fressange se trouve rrtre ma rfrence en la matire, expliquetelle. ", "Cependant , je suis plutt rare \"schizo\" du style : dans quotidien, je porte plus souvent un jean avec united nations Tshirt, n't petit pull marin ou peut-rrtre un en cachemire, une paire de shoes or boots, une veste et aussi un caban. ", "Close over A single,565 today on the S Five hundred will surely receive the media excited. ", "It will almost certainly get more website visitors to move their particular S objectives higher and also the talk is going to be 1,1000 is a involving cake. ", "For how long was guessing the market within the short term as being a walk in the park? ", "explained Elliot Spar, industry strategist at Stifel Nicolaus Company.. [url=http://www.onlinebootsaleshop.co.uk/ugg-leather-boots-p-197.html]ugg leather boots[/url] CardioEquipment that lets you increase your heart rate in order to 50 percent of your maximum pulse rate and keep this there for 30 minutes or even more is a good choice for a cardio exercise workout. ", "At 50 percent of the maximum heartbeat, you are doing work at a pace comparable to the brisk go walking. ", "For a more effective calorieburning workout, you need equipment in which raises your heart rate to a pace you'll reach in the course of jogging: inhaling hard yet able to chat. ", "I've been on the conference call most morning although I was playing people drone upon(I mean go over important company), I managed to get a good portion with the photos I've taken forever of April. ", "Posted to be able to Redgage. ", "I've got regarding 100 a lot more photos(along with 1 more conference call) to go right now so I ought to finish equally about the same occasion. [", "url=http://www.onlinebootsaleshop.co.uk/infant-uggs-p-171.html]infant uggs[/url] Another Roman enjoyment that has influenced at contemporary ritual embarrassment reality TV show was Gladiatr X Element in which amateur Gladiators would combat for their lifestyles, a gladius of their own and a contract to disembowel anyone who displeased the Emperor. ", "Each week the particular surviving Gladiators would certainly face a public vote and the one who had minimum support would be led to your dias and disembowelled before the Imperial box. ", "The most popular part of Gladiatr X Issue were the 1st auditions. ", "The most interesting of their debuts for their new line is his or her denim as well as merino wool combined jean. ", "The first available today, this jean was created to hold it's actually shape, it will not bag away (as many frames of jeans are known to perform) in the knee or the seat area, as well as merino wool may actually wick away extra moisture. ", "Additionally the ability to help regulate system heat and you will probably find that this is the pair of denims that will keep you warm during the cold months and nice and cool during the summer time.", "\n[url=http://www.styleuggonlinesite.co.uk/ugg-sandals-uk-p-53.html]ugg sandals uk[/url] UGG bootsHey, thanks a lot ugg boots english quite a bit slightly to treatment our blog, in so far as every person admit it get into just a little information ugg sheepskin boots sell retailer this Knightsbridge Opportunity, ugg boots, ugg, based you . ", "S . ", "Realize, Knightsbridge Avenue, flatsoled boot styles a good nicelooking ugg boots, publication ugg, 2009, without delay it was ugg boot on sale pleasing a basic discounts.. This occurrence brings some funny you'll take pride in introduces two new fascinating characters. ", "Some of those new figures came from a funny series of interview that Dexter as well as Deb did while searching for a fresh nanny. ", "The one they chose seems practically perfect, almost too best. [", "url=http://www.styleuggonlinesite.co.uk/ugg-knightsbridge-p-55.html]ugg knightsbridge[/url] Each year Good hair days to get rid White hair straightening iron along with Split By means of Cancers of the breast interest 7 days. ", "For every single hair straightening metal purchased ?", "10 is usually given in the types of cancer of the chest charitable trust as well as cosmetic salon tend to be encourage to participate in additional fundraising event incidents. ", "Annually Good head of hair days along with GHD salon boost an important number through lbs . ", "Nike air force One particular, is a low cost Nike dunk senate bill sports shoes made. ", "Nike Air Force 1 was born in 1982 new jordans, being seriously rooted in basketball. ", "Some was chosen to speak to the shoe basketball players: Moses Malone (Moses Malone), Erika Cooper (Michael Cooper), Jamaal Wilkes (Jamaal Wilkes), Bobby Johnson (Bobby Jones) Mitchell Thompson (Mychal Thompson). [", "url=http://www.styleuggonlinesite.co.uk/ugg-boots-on-clearance-p-778.html]ugg boots on clearance[/url] Ugg sheepskin boots is attractive for girls and boys. ", "Work women will also be crasy about Ugg boot. ", "Do you want to waste materials your time to buy cheap Ugg boot shoes? ", "You're able to do now follow my suggestions. ", "IT'S Practically an expectation that debate will follow the particular tail (or nose) of an new Subaru Impreza. ", "Following the curtain decreased on all the last two generations, questions had been asked about the brand's styling direction as well as the dynamic downgrade between the types. '", "A face you may never forget' was your branding provided to the bugeye Impreza of 2000. [", "url=http://www.styleuggonlinesite.co.uk/australia-ugg-p-257.html]australia ugg[/url] They also enhanced their overall cholesterol and also blood pressure. ", "Members said it had taken about fourteen days to get accustomed to the fasting. ", "In January 2005, researchers reported upon 16 nonobese individuals who went on an alternate morning fast during the period of 22 times. ", "Crocs is a good evaluation. ", "It was a new highgrowth company, then became a trend, and stocks plummeted. ", "Crocs has struggled to regain its footing, but it's still growing faster than Deckers, and that may well surprise a number of. ", "However, about precisely how precisely willing to execute spanning build up consumers in america goldenhaired. ", "Concerning is it is perfect functionality. ", "All supported with our saying: \"Speed, proficiency and sturdiness,\" totally shows this kind of toddler new a tough few of disproportionate good quality. [", "url=http://www.styleuggonlinesite.co.uk/amazon-uggs-p-627.html]amazon uggs[/url] For what you are about to receive. ", "The following report is put into 4 parts. ", "Part 1 will explain why we should be keeping away from long times on cardiovascular machines known as 'long slow distance' (LSD). ", "I realize several visitors merely view the players and appreciate their particular solid nimble method. ", "Nevertheless, you recognize the outfits shoes are incredibly essential. ", "There is this shoes a few days during the past in addition to perform a little study over it, it really is great!. ", "Wear them with the right attire. ", "Uggs are best donned with skinny jeans (tucked into the boots), or with leggings along with a skirt. ", "The perception of Ugg boots can be casual along with laidback, consequently don't try too hard to dress these people up pertaining to formal instances or wearing to work. [", "url=http://www.styleuggonlinesite.co.uk/leather-uggs-uk-p-746.html]leather uggs uk[/url] My husband left on my and also our three daughters right after 12 yrs of matrimony (he scammed for 15 yrs and also our union was damaged). ", "I have simply no job and have been out of work for over a new yr. ", "Our unemployment led to July. ", "Bernardo footwear is considered to be highquality women's sandals. ", "The actual Bernardo Footwear business was created in 1947 as well as continues to design and style shoes together with Italian impact to this day. ", "Bernardo Footwear is renowned due to the Miami shoe which has a vintage and classic design. ", "However do additionally agree an authentic investigation is required to sort out the particular defenders of sovereignty through the pretenders. ", "I'm sure several not all tribes with gambling go through misappropriation involving funds as well as reckless spending from the key and tribe council. ", "I'm a member of the actual Mississippi Class of Choctaw Indians and that is what's been occurring for many years. [", "url=http://www.styleuggonlinesite.co.uk/chestnut-uggs-short-p-728.html]chestnut uggs short[/url] Perhaps you should try to learn to set limitations, or to take care of other peoples' anger more effectively. ", "Make a list of new skills you could learn that would certainly improve your power to deal better with this type of personal. ", "On your checklist, note where you think you could learn the capabilities you need. ", "Possibly the best part of this book are the dozens of assets McCall calls out for supporting investors searching for data. ", "Basic data, firm due diligence and also opinions, goods data, along with technical examination resources are common provided, many of them free of charge. ", "Being a stock specialist, I can admit that one of the largest roadblocks to be able to analyzing futures is locating reasonably priced, top quality data, which book telephone calls out websites that I we had not come across prior to..\n[url=http://www.fashionguccisite.co.uk/gucci-website-p-42.html]gucci website[/url] 'The ladies are the best from the world', was the verdict. '", "They have time to avoid and chat.' ", "At the same time, Debbie ended up being coping with a new custard explosion right after one of the containers broke and also threatened to create a mess of everything. ", "And the girl hands were freezing as being a sleety wind blew over Enniscorthy.. If they went there using Ugg boots and tracksuit bottoms we might have something to say about.", "It includes a great way for folks to get back into the work place after a career crack, or to help a charitable organisation which is near their cardiovascular and give to their community.", "He advised us: a great way of getting a skill set. ", "And it's a great way of giving to the charity as opposed to just receiving a examine, which naturally we still but additionally we need men and women power to ensure that those charitable organizations to grow. ", "Had been an amazing guy there nowadays [at the launch] who had Aspergers as well as ADHD anf the husband was requesting how would taking care of this gumption with a charity aid him to get a job in the future. [", "url=http://www.fashionguccisite.co.uk/gucci-man-bag-sale-p-514.html]gucci man bag sale[/url] Even though from the outside this seemed there is little within the love affair regarding Moss, that was not the case. ", "Certainly, Doherty's recognition and profile were increased by the organization, but Moss got something she could not obtain alone. ", "The girl got to write songs with him, shout on period with your pet (in Carlow) and also perform his or her ditties for tiny home video tutorials they then submitted on YouTube, videos that were vaguely embarrassing for their immaturity as well as naked expect that they were playing out some sort of David and Yoko venture.. [url=http://www.fashionguccisite.co.uk/gucci-belt-bag-p-102.html]gucci belt bag[/url] Pullup club and only several free weights or perhaps a battle band. ", "This wonderful moment right behind P90X Workout is certainly Muscle tissues tissue Distress. ", "Muscular Misconceptions could be the thought of never ever offering your own muscles towards skill level from usually bringing out many exercises. ", "If I had been a character in the movie, I would possess simply handed her a pair of Not Your Daughter Denim jeans. ", "They would do the trick. ", "Once you shop from Alanna you can get a cut of chicken wings at Southwest florida, which, these people, is right across the road. [", "url=http://www.fashionguccisite.co.uk/gucci-wholesale-uk-p-137.html]gucci wholesale uk[/url] Sheepskins must be preserved appropriately before they can be processed directly into boots. ", "Tanneries make use of large ships called paddles, that hold anywhere from 3,000 to 15,1000 liters of salt-water and gradually swish the templates around on the inside. ", "This is a delicate process that takes about Ten days to get the hides properly bronzed and ready to be cut for Ugg boots.. Here's a competition for photographers (amateurs and professional). ", "Over-used (2403 Lyndale Av. ", "Utes., ", "Mpls., ", "6128700420) chose 4 Minneapolis Higher education of Fine art and Design college students to design it's actually window demonstrates through Present cards. [", "url=http://www.fashionguccisite.co.uk/new-gucci-for-men-p-280.html]new gucci for men[/url] The current palette will be rainy gray. ", "And you could make use of the plot for you to lace a shoe, it's so slim. ", "Still, the actual film carries a gathering artistic and psychological force which is hard to move even as every one of the characters are going to do is trying to help keep on maintaining on. ", "You will find many following together throughout the several weeks since the real news story of Michael Jackson's heartbreaking death, the net has been a propagation ground for these celebrity death hoaxes. ", "Additional fake loss of life reports have already been conjured up regarding rap superstar Eminem, actor May Smith, each of the Jonas Brothers, The teen sensation, Kanye West and also Bill Cosby. ", "Probably none of those everyone has died, even though some believe Kanye died somewhat of a bad promotion death on the MTV VMA's as he interrupted Taylor Quick on point.. [url=http://www.fashionguccisite.co.uk/gucci-charms-p-181.html]gucci charms[/url] Hard to study, but true. ", "Change can be uncomfortable for people. ", "The need to end up being independent 1 moment after which feelings that you're angry together with her the next help to make her feel guilty with regard to simply we were young. ", "Since then I found another brand name that is comfortable and soft, but still capabilities really well and also holds up. ", "Regrettably, I didn't acquire more without delay. ", "The company went out of business.. As a separate company Deckers remains compelling since it is not throughout financial distress and could turn by itself around, and then pursue sales a higher worth. ", "I am sure this is not the last we're going to have heard in regards to a Deckers deal. ", "The talks might cool round the holidays as companies delay to see precisely how Deckers performs through the critical next quarter but expect your rumors to be able to reignite in Q1 2013. [", "url=http://www.fashionguccisite.co.uk/gucci-messenger-bag-for-men-p-323.html]gucci messenger bag for men[/url] Not witnessed by PW. ", "Broker, Jane Dystel. (", "Present cards. ", "The employees here are beneficial and warm and friendly to help people to select what we should want. ", "They offer the respect and the true quality of a brand,that isn't only offer it really is products,but the love!I enjoy the jeans and also the people the following!The Is better than headphonesBeats headphones is fantastic in the world. ", "Along with the comfortable on this headphones will make your ear better and better. ", "These 1970s Skillet Am advertisements were something else implausibly gorgeous females in unrealistically elegant uniforms notsosubtly offerring their willingness to offer services that strayed means beyond the terse \"Meat or perhaps fish?In . ", "endearments of present day flight near and dear. ", "Worryingly, they provided a history to my formative years. ", "It's no surprise that my feminist belief system was skewed for quite a while..\n[url=http://www.fashiononlinebootssale.co.uk/genuine-ugg-boots-uk-stockists-p-734.html]genuine ugg boots uk stockists[/url] Some people need to have a meatier sandal, a new sandal that could protect someone's feet from your elements. ", "Yet another of the many Josef Seibel shoes, the Lindsay, certainly is adequate. ", "A canopy panels for the feet are made my own interwoven lengths of buckskin, which allow your feet to breathe peace. ", "Since the courtesans associated with ancient Greece signalled their reputation by the clacking of their shoes, women's high heel sandals have been sexy. ", "The edges of my own surviving schoolbooks are filled with images of fme footwear. ", "As an 8yearold whiling apart the extended stays of observing over my own baby sis, I would brace my foot on dominoes intent on their comes to an end and twirl my personal newly leggy personal in front of our mother's fulllength reflect, yearning for suitable high heels.. [url=http://www.fashiononlinebootssale.co.uk/pink-uggs-for-women-p-306.html]pink uggs for women[/url] These defintely won't be functional bosoms. ", "I think the typical breast dimensions in America is actually 34B 36B? ", "I have 2 friends that are DDs they have the identical frame. ", "Any time clothed you will never tell but also in a swimwear you can notify they're Large.. Talking regarding Auatralia, Sydney Safari House will be the first thing in people's head. ", "That's why some individuals mistaken Questionnaire as the captial of Auatralia. ", "Actually the appropriate answer is Canberra. ", "Grownup fantasy costumes can be much more scary compared to a child's; many people like to include the component of sexy, though wearing something of that nature should be done using discretion. ", "It isn't really a good idea to give away trickortreat candy with a sexy negligee or in a face mask that will terrify little ones. ", "For adult parties, dress could be more foolish and nicely, \"adult.\". [", "url=http://www.fashiononlinebootssale.co.uk/ugg-australia-boots-sale-p-332.html]ugg australia boots sale[/url] Mabe a break will likely be good for them all. ", "Love their NEW 3rd home, would like them many years of happiness amp many Joys! ", "Love You, Betty March Twenty four, 2009 in 9:Fladskrrrm pm 171 heather says: i enjoy jon and kate as well as 8! ", "my partner and i tivo every occurrence! ", "i think they may be great mom and dad! ", "a mother understands what is ideal for their children! ", "the lady likes your ex house to get clean and inexpensive nfl cycling tops china her kids in schedule. ", "Which is the way the woman's kids know whats happening! ", "i have 1 13 30 days old. ", "This is a key component to be able to great shoulder health and must be included in anything good upper body exercise. ", "But few individuals routinely exercising their rotator cuff, and that's where we get in danger. ", "After all, We have never had any individual compliment me personally on how buff my rotator cuff is becoming.. [url=http://www.fashiononlinebootssale.co.uk/ugg-classic-argyle-knit-boots-5879-cream-p-94.html]infant uggs[/url] Cherokee's results has been it is biggest attraction for many years. ", "The idea once paid a 810% generate, but was never sustainable. ", "The existing dividend must be. ", "A few will continue to be open in to early This summer. ", "Theflower marts are continually restocked despite the sale, so check back if you don observe what you want. ", "The sale doesn't apply to just about all items in the garden center on Larpenteur Method in St. In The year 2000, the company persuaded the Nordstrom chain of stores to sell a pair of boots in its twigs across The usa. ", "By the end of 4 seasons, Oprah Winfrey reported the boots being one of the girl favourite findings of Two thousand, and invested more than $50,000 buying twos for her Three hundred staff. ", "And then, celebrity recommendations snowballed. [", "url=http://www.fashiononlinebootssale.co.uk/ugg-sundance-ii-boots-5325-chocolate-p-167.html]mini uggs[/url] The newspaper quotes 1 expert since saying the damage could slow autism research with a decade because the collection can be restored. ", "To create a opinion, log into Fb and then \"Add\" the comment. ", "For you to report junk or misuse, click the \"X\" within the upper right corner in the comment container. ", "Cookies or even removable parts are integrated which helps boost the breasts. ", "The particular gate again and inflexible straps offer support and also enhance the cleavage. ", "With these elements, the Wonderbra lifting the breasts upward and closer together, thus, creating a appear of more substantial breasts along with a dramatic, attractive cleavage.. [url=http://www.fashiononlinebootssale.co.uk/uggs-jimmy-choo-pailletten-long-boots-5838-grey-p-248.html]ugg australia uk[/url] The only glitch I have come upon so far is in which adding an active tab to Groups creates a . ", "Net Platform \"Unhandled exception\"; however, the actual 'Continue' button with this warning windowpane allows the fresh group product to be authorized and then bought in Choices. ", "Once the originating Explorer View is shut down, subsequent Explorer Views operate without further error until a new group product is additional, and the period repeats. ", "Authorities are trying to begin programs to regulate this 'disease'. ", "Instructors are under pressure to ensure kids under their particular care are looked after. ", "I'm however in the view that folks are the most influential numbers who can significantly curb this growing trend once they believe their obligation in patient their children from the right path.. [url=http://www.fashiononlinebootssale.co.uk/ugg-bailey-triplet-boots-chestnut-p-516.html]ugg bailey triplet boots chestnut[/url] It was the actual Enquirer that first broke the storyline last month regarding Jackson adulterous affair.", "Previously, spokespersons for Jackson had offered various details for the settlement, describing it as moving expenses, an advance about contracted operate and as severance shell out. ", "But none with the explanations integrated assistance inside buying a property as a cause, and Garcia aides have consistently as well as emphatically rejected that Stanford purchased a $365,000 residence in L . ", "a . ", "with funds from Rainbow/PUSHaffiliated charitable groups.", "Mathis did not come back phone calls right now, but Bob Scanlon, a Jackson spokesman in New York, verified that Mathis wrote the Sept. 10 page.", "\nhbpygajkMG9cwD6eLBjgrjgxe\n\nOtherwise I tend not to enjoy myself watching the movie? ", "May be imposed on macrophages and cholesterol, which accumulates there again adopted? ", "Generally speaking, if the nutrition label claims that the product has “low-fat”, it just ensures that the product has 3 grams or less per serving, but be sure to evaluate the serving size for the label, as you will need to account to the extra servings and also the extra calories which are with those extra servings! ", "As we age, we often become more sedentary and consume less food nutritious meals, this will make senior citizens more likely to become overweight or obese [url=http://cort.as/7Lhd]atorvastatin[/url]! ", "Some everyone is generally sensitive if they see or hear a product contains a great deal of fats, especially saturated ones! ", "Has medical research finally found that cholesterol is the cause of coronary disease. ", "Though it might be easier to drop degrees of cholesterol with medications, the adverse consequences of cholesterol medications help it become an unlikely treatment.", "\n\nuggs outlet store The fabric with all the current sneakers or perhaps boots is wonderful. ", "They could be potentially organic leatherbased and even suede, whatever you'd probably have to have. ", "You could possibly simply have to get your specifications plus they can show up at your ugg wall socket store home. ", "Please. ", "Brady weren't required to say that, and obviously, I had absolutely nothing to do with virtually any success this individual and the Patriots acquired on the soccer field. ", "Brady and his awesome teammates did everything, but in somehow I think they appreciated the efforts basketball beat editors put into the season. ", "bank ugg boots Taller sheep skin boots appear absolutely spectacular when put on by taller, modellike women wearing ultrashort miniskirts. ", "Their lengthy, supple legs accentuate your sleekness and also smoothness on this style of start. ", "It is as though the message being sent is that when you buy taller sheep epidermis boots , you can also look like they. ", "Aside from the long history of union western civilization] as being a union among two individuals of contrary sexes, the basics of biology and individual development from conception in order to adulthood reveal that product or service of the union, the child, is better served by developing a family made up from the two genders. ", "From these a couple of unalterable principles axioms, if you wish] it is apparent that union and samesex labor unions are as different as apples and also oranges. ", "Absolutely no amount of rethoric is likely to make one in the other. ", "huggs There are several websites available from where people can have anything and everything. ", "Not only that, by the single simply click, they can even find the list of a number of stores supplying the products of their requirement. ", "Additionally they can also evaluate the prices offered by various stores in an attempt to ensure that they get the best quality products on the price they are looking for.. Give your family and friends recognize you are in company. ", "They've already used you previously for these issues; they have confidence in work. ", "They'll probably take pleasure in spreading the word as well as letting other people know that you might be open regarding business.. brown leather ugg boots But perhaps these stores are located in imprecise, hard to get to parts of their own states. ", "A lot of Ugg stores do not have wonderful discounts on their popular degree boots. ", "Typically shoppers is going to take the prolonged drive in the market to the outlet to find that the boots are only a dollar cheaper than their particular normal price tag, sometimes there isn't any discount at all. ", "De hendel verdween del de eenarmige bandiet, zoals signifiant gokkast vaak liefdevol genoemd werd, kreeg een knop om op les drukken en p rollen te laten draaien. ", "Tota kwamen nu dergelijke fruitautomaten te staan: in restaurants, snackbars, cafs, kantines Je kunt het zo gek niet bedenken involving er werd gespeeld website author de gokautomaat. ", "Maar natuurlijk gebeurde dit toch nog steeds het meest throughout de casino's, waar het toen a nu goed is voor ongeveer 80% vehicle de opbrengst.. classic tall ugg boots From the 5k we learn a vast amount of information about Tessera's organization and the bigger trends powering it. ", "We all learn that the organization licenses patents regarding semiconductor packaging technology, particularly for memory space chips. ", "We all learn in addition, it has an Optics along with Imaging section with systems to implement visual zoom, much better low lighting performance, along with extended detail of area. ", "Unfortunately, the directive has no force involving law, therefore someone will be discriminated against on such basis as sexual positioning, he or she are not able to go to the state asking for remedy, but need to sue within federal court, at one's own expense, along with hope that this federal judiciary will agree with the actual Governor's interpretation in the equal defense clause. ", "Won't sound like identical rights to me. ", "Those 1820 can also be adults. ", "ugg booots The popularity from the ugg boots has resulted in quite a issue for some of those people who also want to obtain own couple. ", "Because there are today a number of smalltime shoe manufacturers which make replica ugg boots, it has become really hard to truly know the real couple of uggs from the fake ones. ", "As such, you should be extra careful when it comes to buying uggs like the Ugg Classic Quick. ", "It was just like a enormous dried up plum. ", "The most severe part it had been sooo green. ", "It seemed almost natural. ", "Beginning knee injuries make use of using zero resistance, based on the American Academy of Orthopaedic Surgeons. ", "As the knee as well as leg strength increases, slowly increase weight levels with the goal of reaching the highest amount. ", "Never include so much level of resistance, or pressure, that you cannot your pedal. ", "junior ugg boots Not really no cost, however practically, I an excellent Stand out spread sheet instruction Sources. ", "Com. ", "This specific isn free of charge, yet, in a cost related to dollar 9. ", "Because of that precise approach, AppHero offers higher numbers of conversion rates having its users tending to buy far more apps, said Satok. ", "AppHero is free and it has no advertising, so it doesn't make money but. ", "Satok is more worried about improving the merchandise, with monetization coming in the next thing.. Murphy fait la moyenne Three or more.4 info. ", "Les thmes rapidement d'autant plus identifi que l . ", "a . ", "gographie associe avec des qualifications s'avrrre rrtre maintenant approche elemen vous commencez avec l' fils ou fille personnellement propre cosystme. ", "Ce ne sera marche.", "\ngucci black handbag Ever since \"Baywatch\" girl Pamela Anderson sported them a few years rear wearing simply a red bathing suit, Uggs have risen and stayed in the form spotlight. ", "Via Hollywood socialites in order to teens across the country, Ugg shoes or boots has made a comeback once more this wintertime as cool weather's favorite trunk for the stylesavvy arranged. ", "Despite their own popularity, generally there often remains some argument as to how you can wear these kind of casual, comfy kicks while a number of argue that they need to only be donned with denims and in the particular cold weather, other folks confess to wearing them by the pool and partnering them with skirts, sweats and even evening wear! ", "Although there may be zero \"right\" way to use these fabulous shoes coming from down under, you can find certainly a lot of ideas as far as how to use Uggs manner, which includes boot styles, slippers as well as shoes. ", "gucci handbags for sale Here we get multiplying factors: an analyst may use pertinent sensory notion in his risk assessment or perhaps he may be primarily afflicted with his feelings (fear along with greed). ", "The following users of the information tend to be facing the geometricallyexpanding complexity to solve: What is the amount of trust between/among people? ", "What is the buyer dominant thought processes, etc.? ", "System complexity is evolving into complicatedness, a big change from dealing with risk in order to facing uncertainty. ", "As Sergio garcia was offered last year in the Advice I ever acquired: Keep it simple... gucci 11 With regards to shopping for necklaces, if you have the horse lover friend as well as family. ", "Its going to be not too difficult. ", "There are a variety of various types of retailers that contain moose motives, mount designs, or perhaps a country and western developed jewelry. ", "If it takes place, genuinely don give up hope and cower within a newsagents or junk food stuff search you will discover choices for ou peut-rrtre un to even now see a number of with the city just moments apart. ", "This information is released to look for the corporation, especially girls UGG boots dreary triple single Bailey button shoes or boots. ", "Also, you may have the option to have some shredding corporation advice from buddies together with other organizations in your area. ", "gucci fragrance uk Dude. ", "I'll say it clearly: LIBBY LU Will be BREEDING Enemies GOD Allow us to GRAB THE Children TAKE THE Pet AND HEAD FOR THE An explosive device SHELTER. ", "GO NOW. ", "I read that her mother was a painter, and this skill has, certainly, been passed on to Ariella. ", "Regarding me, I am hoping to incorporate a few of her techniques into my work in the future. ", "I have my own style, but some associated with Ariella's techniques can only enhance our work. ", "Your Women's Jillian, that is within the Soho Variety of UGG, is comparable in style into a riding trunk. ", "A extra tall boot which measures about 14 inches wide high, it features soft leathers and a removable and disposable Mylar sheepskin sock liner for added defense and support. ", "The shoe is embellished with metallic straps and embellished with logo rivets, passing on a contemporary and chic look. ", "gucci mamas bag Put in a Vnotch. ", "Not every boots, nonetheless, can be burgled especially if your lower legs do not fit in at all. ", "As opposed to letting go of your current prized boot styles, visit the community shoe repair shop or sneaker maker and request for a Vnotch to become cut into a pair of boots. ", "This is very likely to cause smell or even bring about foothealth problems like athlete's ft .. So it is essential to deal with your flip flops properly. ", "Here are some useful tips that will assist you keep your sets smell totally free.. The old feminist informed me that I a choice to make: I could elect to survive in this world, thrive with this society as well as embrace self-sufficiency, or I could choose the load of pregnancy, birth and parenthood. ", "She aware me that will motherhood would leave me fragile and conditional. ", "Yesterday's feminist competitive \"choice\", because the past's feminists believed wrong. ", "gucci men bag Another Roman amusement that has motivated at contemporary ritual mortification reality Tv program was Gladiatr X Element in which newbie Gladiators would struggle for their lifestyles, a gladius that belongs to them and a deal to disembowel anybody that displeased the particular Emperor. ", "Each week the particular surviving Gladiators would certainly face a new public vote and the person who had very least support will be led to the particular dias and disembowelled in front of the Imperial box. ", "Typically the most popular part of Gladiatr X Aspect were the very first auditions. ", "Probably the most interesting of the debuts for their new line is their particular denim as well as merino wool blended jean. ", "The first available, this jean is built to hold its shape, it will not bag out there (as many twos of skinny jeans are known to perform) in the lower-leg or the chair area, and merino wool could actually pull away extra moisture. ", "Add to that the ability to assist regulate body heat and you will find that this is the pair of skinny jeans that will help keep you warm during the cold months and nice cool in the summertime. ", "gucci store in uk To help keep leather delicate, supple, shiny, and water proofed, Beeswax from Beekeepers endorses adding the cup lanolin to 2 tbsps . ", "petroleum and two tablespoons beeswax (Next year). ", "This menu is recommended regarding items like mitts, jackets, pants, or tops. ", "The lanolin is fantastic for creating the \"wet leather\" search, which is a market term to the shine some leather has.. Thus, in case you are in search of the top camping boots, you should check out and about army extra boots. ", "They've the advantage of military research, and thus you can be sure of the quality. ", "Armed service footwear are usually longlasting shoes, built to withstand abuse for many, several years.", "\nhouse of fraser barbour The ugg boots made by UGG Questionnaire are not merely worn to be able to preserve your feet warm anymore. ", "They have grow to be manner assertions that could now be seen in merely about anyplace. ", "While it should be expected to find out these people on individuals walking on the actual streets also during summer season, you can demand to figure UGG boots on the ft of the premium celebrities and also supermodels.. Purchase Moncler jackets reprents luxury. ", "Given it has reached this sort of marvelous fame around the world, Moncler advertising qualities occupied you lowered coat manufacture mart merely mainly for countless many years. ", "Cheap Moncler Jackets tend to be remarkable and also truly trendy. ", "steve mcqueen barbour jacket Yet, Wall Avenue analysts have continually outdone this company down. ", "Corning just launched its quarterly earnings defeating Wall Street's analyzer expectations as it has continuously done. ", "Regardless of whether Corning would have usual quarterly anticipation or not, you need to consider having a piece of this company.. Just like the other UGG boots or shoes, this start can be appreciated for many years to return if you hear the company's guidelines for maintaining them. ", "Your Jillian is a start you can wear whenever you ride, go walking around or work in an office building environment. ", "It's created to end up being both sturdy and comfortable.. barbour store Step exercise sessions usually put a lot more load on your calves, thighs and rear than do all kinds of other options. ", "It should not be used as an alternative choice to professional medical assistance, diagnosis or treatment. ", "LIVESTRONG is often a registered logo of the LIVESTRONG Groundwork. ", "Then, those with thicker ankles will want to look after some lanky jeans together with zippers. ", "Furthermore, if a female has brief legs the girl should keep away from Capri and clipped jeans. ", "If she is the particular possessor of the too long couple of jeans, this kind of shouldn't be a difficulty. ", "barbour jackets men In areas where excellent skiing conditions and sleet are routine, waterproof boot styles are vital. ", "The APMA recommends buckskin or organic material footwear because they permit feet to breathe. ", "Waterproofing treatments for natural leather boots can be found online and at footwear repair shops to protect natural materials boots. ", "The particular economy features shifted. ", "Things have changed. ", "And present day entrepreneurs perform more than just commence businesses,In . ", "said Babson's Key Marketing Officer, Sarah T. I have a cousin who is expecting a baby with their third child. ", "They will found out using the first however, not with the 2nd, and are ready (clothingwise) for both so they really are ready. ", "I am thrilled for them, and they love your anticipation of not knowing! ", "It truly depends on the mother and father, I think, about what you should do.. red barbour jacket Fruits and vegetables like bananas, garlic, avocados, dates, raisins, cantaloupe, oranges, and melon are rich sources of potassium. ", "Low fat or even nonfat sources of dairy products will help boost your calcium ingestion. ", "Foods in their natural point out contain less sodium than these that have been prepared. ", "Some say foot fetishism results ground any time intercourse gets too dangerous. ", "Lap dancers, strippers and porn stars wear the highest websites of all. ", "An Italian urologist provides declared that high heel shoes work the actual pleasure muscle groups that are connected to orgasm. ", "vintage international quilted jacket Kanye gives decided on mark to go back to his or her or the girl principally within a baby take morning inspired by air yeezy, retro about newborn encompassing two, hr absolutely cool that a number of seem of different from the Nike jordans 3 5. ", "A shoe quest about kid Nike Air Yeezy's several advanced and interesting, about it will be the above mentioned altogether activities for Nike and nonathletes. ", "Air jordan one. ", "I have to confess that alternatives, all pets,dead or perhaps alive, taught me to be sneeze, and so i never would have been able to use a hair, even if I'd wanted to. ", "Fortunately, my hypersensitivity have since been treated. ", "And, because everyone that has seen Your Aviatorknows, classic Celebrities werealways draped inside furs. ", "barbour scarves Is a bittersweet factor. ", "We might have got celebrated pertaining to 15 minutes possibly even, but that could it have been, said Craig Daniel, Carol's husband. ", "Truth continues and it is been really tough. ", "After having a discussion with your ex a few months ago that did not go perfectly, I started to see her that we were via as buddies. ", "I think the one reason that I didnrrrt was due to the fact my Big t suggested i not make it happen. ", "I'm trying to get it paid out in my mind that we're through while friends. ", "This type of training centers round powerful time periods for exercising as well as quicker stretches regarding reasonable exercise. ", "It is no wonder the reason why your whole body sets out to dissolve fats out and about through maybe the best way might be conducted even over a your home training DVD. ", "Virtually any P90X exercises have got huge variations spanning a large amount of Bust along with Returning to Deep breathing X along with Z Stretch your muscles.", "\nugg purses You will find a plethora of unnatural sheepskin shoes or boots on the market, as they're much cheaper along with the look is very popular between women throughout high school as well as college. ", "Try to find boots manufactured completely regarding Merino fleece, if you wish to ensure that you have the absolute best quality boots. ", "With Merino fleece, you should have the positively highest quality fleece protector available. ", "Speak with the seller once you have discovered your favorite luxury vehicle. ", "You ought to be up front along with your intentions concerning having the automobile shipped to you and see where did they react. ", "Most of the people selling automobiles are more when compared with happy to assist you in getting your vehicle to your residence. ", "ugg shoes \"I don like the name. ", "We all used to be unable to say 'brat' inside our house. ", "My partner and i don believe there one particular conservative clothing on the Bratz toy. ", "Even spending someone to work for you may come at a price, simply because Blizzard may understand the player UGG Boots a robot and stop on their own. ", "You may think that word of mouth can provide you with a reliable platinum seller, but it is a infamously unreliable method and probably doesn't have any real basis on the robustness of the seller inexpensive help ideas. ", "The problem is precise on the subject of there's a formal affirmation on Wow gold internet site called zero which obviously states their problem with the idea. ", "ugg boots sizing I intend to talk to my own tummy, beautify a gardening shop, buy infant clothes and necessary products, crochet baby booties, and maybe even stand under the shower before the infant is born, but I don't think in which I'll create gender so important that every thing hinges on this. ", "Besides, baby cribs, car seats, changing tables, prams, etc. ", "Probably will all should be used for future babies and will be genderless anyhow and onesies, diapers, rash ointment, lotion, the majority of blankets, and a few sleepers are genderless anyway. ", "There is a part that goes into detail around the tenants of both essential and technical analysis. ", "You will find there's useful section that insures the most important things in 6 general business categories (what is important to a tech firm is not necessarily important to a commodities manufacturer!). ", "And of course, McCall gives his own assessment of factors that offer a company the actual coveted \"monopolistic tendencies\" that will so often lead to outperforming investments.. ugg boots size 6 The 2 extremes characterized by Mr Spock and The famous host oprah are just which extremes on the decision making continuum. ", "Most of us can make realistic decisions; most of us can make understanding decisions. ", "Whenever we get stuck or perhaps inflexible in only one function of decision making then our own decisions can be suspect.. Your woman absolutely will not eat these people. ", "I just don't think they tastes very good. ", "The lady does eat puffs and other snack foods and most of the time she does well. ", "Prior to, I am not hot for boots however I am setting up to acquire one specific for myself. ", "It may help make me know that you just also should acquire fantastic things not just for the other individuals or on the loved ones additionally your self. ", "In addition, you must suit your self making by yourself satisfied for all those tense days and nights. ", "cheap kensington ugg boots Let me make you happy. ", "Misty mentioned g is extremely good too. ", "However me as well as misty we had an exclusive relationship. ", "Putting on supportive brassieres will come in handy within giving 1 firm bosoms. ", "This can be achieved by putting on a good, company and fitted bra. ", "An appropriate bra go a long way in ensuring the appearance of sagging chest is taken away. ", "When you consider the sun for a couple of seconds and after that close up your eyes you see a new circular dept of transportation as if expected on the back of your eyelids. ", "BMW utilised the same approach, but instead of sunlight it utilised a large flash unit, a major version of your flash utilized on digital cameras. ", "As you're watching flash system was a useless BMW emblem, but the audience couldn't see it as it sat behind the actual screen these were viewing the particular advert on.. cardy ugg boots PeopleVidosYahoo! ", "VIPKate, Invoice et bb RoyalDossiers peopleStars CinStars MusiqueStars TlStars de la modeEn 2007, les chaussures moches ne opleve contentent pas d'tre chicago mode, elles seront chres et portes par tout monde. ", "Cela fait dj plusieurs annes que le modle hippopotame alimente l . ", "a . ", "polmique. ", "Dans Elle, Pascal Monfort, sociologue l'Institut suprieur europen en el mode (Isem), fait ce point : Avec la Ugg sheepskin boots, on se trouve rrtre la recherche d'un glamour lequel n'est pas most recognized degr.", "Doudou. ", "Just like the expressing goes, \"opinions are similar to 'anuses', everybody's received one\". ", "And if he or she is unwilling to location this movie evidence within \"the court associated with public review\", and then let us proceed this whole issue along for the \"Grand Jury\" whose really purpose is to expose and bring to test criminal measures in a manner that at the very least initially guards sensitive information. ", "Call Your Next Case. ", "uggs for women \"I doubt he'd a license,\" the security chief stated. ", "The guards smiled at the thought in the mayor fulminating in the driver's seat of a vehicle at the antediluvian vehicles and pickup trucks slowing their progress over the Kennedy Expressway. \"", "Credit cards?\" ", "another safeguard said, just as if the paramedic acquired asked in the event the mayor kept a go-karting ball in the pocket. ", "DNB features virtually no financial debt maturities in the next 12 months, operating revenue covers interest requirements Being unfaithful.8 instances over, along with DNB's stable, mainly nonvolatile business produces enough funds to easily cover commitments. ", "The corporation has recently produced paying down credit card debt a priority, therefore i expect strengthening metrics to come. ", "Financial well being is not a problem..\nugg boots for sale Cole Haan gents shoes are obtainable in a wide selection of designs including costume and informal shoes. ", "Some other styles incorporate loafers, slipons, oxfords, sandals, shoes or boots, and house shoes. ", "The company also produces waterproof shoes in addition to a wide variety of add-ons and garments. ", "To commemorate Billboard Woman of this year recipient Taylor Swift's large win, all of us decided to take a look back from her top best looks from the prior 365. ", "A world visit and several large awards afterwards, Swift's style offers transformed via humble nation darling into a seasoned crimson carpet stunner. ", "Last nights Billboard dress is an excellent place to quit things away from: a remarkably sexy Elie Saab wedding dress. ", "ugg boots for all \"So a few months I proceeded to go home consumed with stress, thinking like there's a lot on my neck because Now i'm the only dude in the moving past game,'' Moss stated. \"", "Way before mentor Shanahan got here, it had been hard to venture out there and place up quantities because everybody's keying on you, and then after they keyed about and you failed to get tennis balls, they desired you to hassle and be angry about it. ", "And I'm, like, exactly why fuss for something when it is not right now there?. ", "I also hate those ugg uggs that females wear exactly where they can't walk straight as well as the heels possess sloped away and off to one side. ", "We swore I would never find uggs however i found a couple of leather types and tried out them about just beyond interest. ", "I finished up buying as they were so cozy and I normally wear them all over the snow as well as bad weather. ", "ugg s It should not be part of a substitute for health-related advice, prognosis or treatment. ", "LIVESTRONG is a signed up trademark in the LIVESTRONG Foundation. ", "Moreover, we do not pick every advertiser or advertisement that appears on the web sitemany of the ads are using third party advertising companies.. It should not be used as an alternative to professional medical guidance, diagnosis or perhaps treatment. ", "LIVESTRONG is a registered hallmark of the LIVESTRONG Foundation. ", "Moreover, we don't select each advertiser or advertisement that seems on the web sitemany of the advertisements are usually served by third party advertising businesses.. ugg button boots In Alaska, of course, your schedule of frostbite and also hypothermia are real. \"", "Our youngsters are the same as everybody else's they think they may be Superman, they're invincible but our weather conditions are different,Inches said Shelby Nelson, speaker for Fairbanks Memorial service Hospital. ", "The girl said local media, universities, police as well as other officials make an effort to get the information out to children that dressing up warmly can be a matter of security. ", "While searching for the best shoe design, you'll find that it really is much easier finding them on the internet. ", "The actual purchasing experience can also be very good (and considerably quicker!) ", "compared to in the event you visit shopping malls, hunt for airport parking and then dedicate endless a long time shopping walking (ugg!). ", "All the different designs and colors that you can to see just a single internet site online, wouldn't be probable in virtually any retail store with the shopping mall. ", "genuine uggs on sale Findings by the Uk's Leeds School show that males are more likely to always be initially interested in women who reveal around 40% of flesh than others which reveal much more. ", "Abandon that small strapless mini dress at home.", "Dressing to get a first day does not mean heading overboard using uptotheminute trends nor running the chance of intimidating the gentleman simply by dressing up in artist labels. ", "Maintain a first night out outfit easy and classically girlie with a price draw that doesn't acquire his inhale away.. For many who need a set of two boots for work or perhaps active way of life, then UGG's are not for you. ", "You may wear casual boots out before you truly get to take pleasure in them. ", "Or maybe if your sneakers must be distinctive, then you won't want to decide on UGG's which have gain popularity worldwide. ", "uggs bailey button They will manufacture Ugg Boots, car seat include and many other similar things some of which tend to be customized as well as specially designed. ", "The actual Australian sheepskin products are resilient, comfortable, popular as well as deluxe. ", "The high demand endorses their particular quality, rates and service.. In its brand recognition along with expansion technique, Deckers Outdoor Corp. Started purchasing uggrelated art logos throughout the world along with sending out ceaseanddesist letters to Australianbased producers of uggs, some of which ended up in business for years. ", "It was moving that led to contentious lawsuits over logos and ip in Australia, that eventually ended in a favorable taking over for the place's ugg cottage industry: Ugg was deemed a generic term and not a brand name in Australia along with New Zealand, along with multiple producers have the proper call their products uggs, as well Australian Degree Association Inc].. classic short uggs Side cramps while working, called a \"stitch,Inches can keep a runner curved over, attempting to alleviate the anguish. ", "According to This country's Council associated with Exercise, the stitch is likely caused by the jarring and stretching of suspensory ligaments at the position where the diaphragm meets the tummy. ", "Once a sewn develops, there is little you can do to stop it till you have had efforts and rest. ", "Hamza Mallah, the sophomore from Saida, Lebanon, came inspiration pertaining to his undertaking from his many lengthy days of looking after for their nieces and nephews. ", "Mallah received tired of yelling at the youngsters for resting too towards the television, therefore he developed a device which disables it set if someone is resting nearby. ", "His or her invention, named Smart Television set, has an home motion alarm built in.", "\ncheap uggs boots See 10,000. ", "For the budgetary year ended December 31, 2004. ", "Of these risks and uncertainties tend to be conditions from the general economic climate and in the actual retail environment, the effect associated with consumer personal preferences and other factors discussed within the Company's filings made out of the Securities and Exchange Commission. ", "Syndicate this informative article. ", "More totally free articles regarding syndicationWhat in the World Are Ugg Boots as well as Why Can you Want Them?Ugg sheepskin boots Boots. ", "Manner, Comfort and heat All Retracted in One BootUggs Are so Expensive. ", "cheap ugg boots from china As everyone else turned up to need Mario and Lucy a happy engagement, there was clearly a pair presently there who weren consequently congratulatory.", "Joey and Jan patiently waited outside the wedding party while Gemma and Arg popped in to declare hello, but, of course, TOWIE becoming TOWIE, Joey and Jan were shortly having an allout argument with the involved yourself couple. ", "Why? ", "Well, Mike said she would heard speculation about Mario being unfaithful.", "The Kent insider ended up being on hand to obtain both sides from the story after the vent. ", "To make sure in these distinctive videosThe 'best of' series seven (Video)Before series eight finale tonight on ITV2 in 10pm, watch the amazing sequence nine 'best bits' movie. ", "ugg store uk This series showcases in which talent along with anything else I seen. ", "There exists so much feeling in the words and phrases and body language of the personas, it past belief. ", "This same emotion carries by means of into the qualification the trees, the properties, the use of mild and shadow is all completely perfect along with adds up to a practically overwhelming expertise.. But in fact In . ", "most of us proceed through life since failures, due to the fact we are awaiting the \"time to be right\" to start performing something advantageous. ", "Do not wait around. ", "The time will not be \"just right\". ", "ugg plumdale Analysts' estimates for 2012 earnings are $5.84 on $1.61B in earnings. ", "The earnings per share level looks a little also optimistic to me given the data compresion in edges we should notice. ", "Decreasing the major margins an easy 2.5% next year would reduce earnings by $1 to $4.96/share. ", "Today, having said that, it can be one thing when a glamorous stickinsect WAG dons an uglyshoe. ", "It isn't about convenience at all it's the cultural affirmation \"I am thus gorgeous will get away with it\". ", "And so they sort of could. ", "Oggi chiesto circa, Ognuno ed ogni mio pap non piace personalmente io t Io acquistai il compleanno di fratelli principale oltre a visto insieme polo ralph lauren i particolari soci. ", "crateur belge ralph lauren giubbotti genere not giovincello di parit non lol d moyens, versi produire rare variano p manteaux raccolgono noci cachemire borse rob lauren allegro, hauts tunique et jambes most importan oxford ugg pap. (", "more)Launching.. ugg wedges Do you just like leather? ", "There'll be a lot of natural leather. ", "Shredded, secured on, tied up off, animalistic, godless, yummy. ", "It will go well with all the light up and grime, exposed cross-bow supports and angular glass shards, a panorama full of limitless, mysterious options for looting and ransacking and generally simply looking superwastedcool as you test desperately to be able to dig up very small slivers of hope for the future of humankind. ", "I mentioned the other day that I very own several OXO kitchen area utensils that were designed specifically for that Japanese market place. ", "One of the bits is a skimmer, which in turn deftly does the strategy of taking out the foam through the surface of the bubbling liquid. ", "My spouse and i checked with my friend which works in OXO and the Japan line is indeed available simply in Japan. ", "ugg cardy This was low politics through Mr Cameron. ", "She has twisted a structured report to acquire the smallest amount of political advantage. ", "Facing the chance to participate in statesman or spiv, he or she chose the latter\".. One of the primary sources of help to increasing demands on UGG is actually compliments associated with fans which live extended continued interest in sheepskin footwear go. ", "Mass media also takes on an important celebration, which operates this wintertime in a number of sparks Sheepskin Boots. ", "As wellknown \"Oprah's Favourite Things\" appeared on earth in November 2005 stood a bumper Xmas sales morning for sheepskin boot.. ugg us Then I started working at the restaurant throughout Binghamton, NY that focuses on allnatural food items, and has a multitude of vegetarian, vegan and glutenfree possibilities. ", "Every time I would go back home to check out Mom and Dad I might find that Mother was \"cheating\" for my child glutenfree diet more often, and it was starting to really anger me personally. ", "One of my coworkers from Whole within the Wall (the restaurant) had Celiac's condition. ", "Jo Levy, the line's national cosmetics artist, will probably be on hand. ", "From then on, there's buying with 15 percent off most BECCA products, with a purchase of $75 or more, you'll get a free natural and organic spray suntan. ", "Expect several sangria, too.", "BECCA, the Australian brand name, is famous for its naturallook makeup and a collection that features over 30 cover-up and groundwork colors, so that it is accessible to the widerange of kinds of skin.", "Luxe Beauty Store is at The particular Alexan at North Hills, 4209 Lassiter Generator Road, Trangle.", "\nxyhwfpdkMG9cwD6eLBjffuzme\n\nThe length intended for shorts can be cropped prior to this complies with leg navicular bone, that makes the tibia bone look over jeans that continue a floor. ", "Alexander Wang furthermore helps make beautiful adaptable garments with ruches over the stomach. ", "http://www.4ghd4.com/real-mulberry-outlet-p-332.html Fashionista Kimora checked fantastic inside a small green dress and also ended up being very happy to start to see the pint sort of artist. ", "And also the craze regarding smaller in addition to smaller pets only has created the difficulties a lot more serious, with unscrupulous collie breeders propagation the weakly runts in the litter box, along with turning to demanding puppy grinding to meet the improved need. ", "http://www.4ghd4.com/mulberry-outlet-shop-p-119.html This particular has effects on this muscles managing along the shoulders, the actual shoulder area and others supporting this vertebrae — they will car tire and also spasm. ", "First around: The uk 5-0 (Cook dinner 5, Gong Zero) http://www.4ghd4.com/mulberry-greta-hobo-p-59.html 3. ", "40 strategies to lower your expenses Red carpet several: Sibel as well as Human brain Austin texas Greene, which the lady hitched July All day and with Beautiful hawaii, were being a new view with regard to sore eyes when they attended the shows with Trend Week in Milan last month http://www.4ghd4.com/mulberry-outlet-york-store-p-314.html Japanese country wide Lalana Sermsukskulchai, Twenty five, who's going to be doing owners degree at Andrews University, purchased a £1,500 Balenciaga handbag within a few minutes of coming into Selfridges. ", "She had queued via Half a dozen.30am before keep started out in 9am. ", "This today appeared that Russian federation realized that the particular winner could well be about Saturday. ", "http://www.4ghd4.com/mulberry-vintage-bags-p-511.html Opener: Newcastle observe Mary Arfa's purpose 'He seemed to be extremely drunk then however regardless of this he started to acquire a jar of vodka out from the freezer along with take in it nice,I your Investigator Sergeant claimed. ", "http://www.4ghd4.com/mulberry-mini-alexa-bag-p-201.html Moore affirms the actual nine-year age difference between your ex as well as spouse Bart just isn't an issue. '", "We perform normal several things', the girl says Produced by the Nederlander company, this Bugaboo 1st attack the united kingdom inside 2002. ", "http://www.4ghd4.com/new-mulberry-bag-p-475.html The woman boasts some sort of dolpin skin icon to be with her ankle, after deciding to choose one particular 'on the whim' even though on holiday within Bali.", "\nnqaaoldkMG9cwD6eLBnjfjmuj\n\nugg australia uk Depart the blamegame behind. ", "Leave the actual hysteria guiding. ", "And more than other things, bring calmness back to your current marriage. ", "Illinois ya tellement replica est la transaction del ligne, Avenue associated with Stars opleve sentir bien, communiquez ainsi que l'action dans ce pass p votre salaire. ", "Principalement si vous tes relativement nouveau avec Louis Vuitton produits, on vous sacs louis vuitton marche chers recommande d'autres achats en ligne. ", "Des exportations travers un buying de qualit pouvez vrifier l' solde et l'authenticit delaware Louis Vuitton. ", "genuine ugg boots Why Exercise Is ImportantExercise is good for most people, however is particularly necessary for those with diabetic issues. ", "It will help improve your HDL, or perhaps \"good,\" cholesterol level and may also help lower your hypertension. ", "Physical activity may improve blood vessels flood with your legs and feet. ", "Most European guys don get this issue due to the fact talking about sex is not as taboo because it is in the USA and so they learn it about making love from an early age. ", "Because of this we(I will be an American) are having shitty sex dangerous sex, once the sex could possibly be amazing as well as safe. ", "Debby My spouse and i glad you wrote the book since we folks need the training. ", "grey ugg Having appeared, however, Gillard is now offering to equilibrium the need to task as a leader hence her current reported buying $1,250 clothing without seeming to get discarded the girl bogan roots. ", "Already she has obtained heat regarding wearing black pearls which she accustomed to joke ended up part of any \"dress like a Tory\" seem. ", "Now, any time Gillard changes type, that makes media.. It was a really surreal experience. ", "We would not even realize that doctors along with technicians produced those kind of mistakes with this day in age till that took place. ", "We are not the only real people we know that this features happened to. ", "ugg broome boots The first had been September 28th, 2002. ", "I recall the date well because it was for a friend that We've known given that kindergarten. ", "It had been an incredible Tumble afternoon from the Allegheny Mountains associated with Pennsylvania. ", "Little pack Brekkies with regard to kittens will last a very long time and dislike noone. ", "Regarding two to four times a week, you must treat the hamster with such an appetizer in smaller quantities. ", "Keksknochen the idea) or a can of water turtle foods. ", "Planet Kid, 87 Roncesvalles Ave., ", "4165379233, offers mostly Canadiandesigned, quality kid's clothes with cool designs pertaining to infants, and females and kids up to eight years old. ", "Boys will particularly love the fireman's pants and also coat, and airline, truck, bowling, and also railway workers tshirts. ", "Retailers have been marketing high quality, trendy, and reasonablypriced kids clothing within Toronto for quite some time:. ", "sequin ugg boots Many jobs just like stock market as well as other jobs depend upon it. ", "Everybody just must appreciate the fact that it is not a free planet any more and being smart enough and never emotional this is actually the right thing to do today atleast. ", "And as far as for the people who can pay for it's many friends and family to educate them. ", "Ugg boot incorporate several different clothing, intended for both men and women. ", "A person may also possess uggs athletic shoes intended for children. ", "Ugg boot look since slipons as well as laceups. ", "But what about his Mommy?What about his / her background coming from his mothers side with the family? ", "Does this not blank the importance of his mother? ", "Our final affirmation is that I needed to walk away from the very last part of his / her speach because of all the AFRICAN AMERICAN individuals they were demonstrating. ", "I could handle this far better if he had spoke regarding ALL of his / her heritage, not merely the Dark side. ", "This made me sick, makes myself angry as well as makes me personally sad. ", "ugg austraila Ugg boot have come quite a distance over the past 220 years in terms of style and design. ", "The once simple suntan colored ugg footwear is now offered in a wide array of colours, styles and unique fashions. ", "From purple and also pink for you to silver and gold, the colour range of these boots is almost countless. ", "When choosing an ideal basketball shoe, you should make your choice for a way you enjoy and what the body style wants, not on what someone else considers. ", "Just because your preferred professional golf ball player would wear a particular kind of shoe through games, as well as shows up within ads for your it, doesn''t mean it''s the best shoe for your design of play. ", "If you need help seeking the perfect footwear that lets you enjoy at your very best, use the guidelines.. ugg australia outlet Membersmembers (by date joined)watch listen appointment L. A lot more than any other talent is used to state the persona of the practitioner or healthcare provider. ", "This aspect of the genre provides the most liberty for personal appearance. ", "4. ", "Send out regular e mail updates. ", "Most likely the biggest networking mistake is always to meet new people, wow them initially then completely disregard them. ", "He started shaping snow boards in the middle of the 70's away from wood, and also fixing silicone straps to them for bindings. ", "This vision evidently succeeded, for he is now the owner of Burton Snow boards , a precursor in the ski board industry. ", "He has deeply inspired what winter sports.", "\ntdnrxjnkMG9cwD6eLBhgwazpx" ]
{ "pile_set_name": "Pile-CC" }
[ 0.019417475728155338, 0.016666666666666666, 0.011904761904761904, 0.004629629629629629, 0.0078125, 0.013888888888888888, 0.010582010582010581, 0, 0.005847953216374269, 0, 0, 0.020338983050847456, 0.025974025974025976, 0, 0.04477611940298507, 0.0035460992907801418, 0, 0, 0, 0.003663003663003663, 0, 0, 0.007692307692307693, 0, 0.0030864197530864196, 0.0049261083743842365, 0, 0, 0, 0.013422818791946308, 0, 0, 0.015267175572519083, 0, 0.005747126436781609, 0.007936507936507936, 0, 0, 0, 0, 0, 0.0064516129032258064, 0, 0, 0, 0, 0, 0, 0.017857142857142856, 0.005012531328320802, 0, 0.0044444444444444444, 0.00819672131147541, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.005449591280653951, 0, 0.008928571428571428, 0, 0.009345794392523364, 0, 0.008602150537634409, 0.003076923076923077, 0, 0, 0, 0, 0, 0.006666666666666667, 0.030303030303030304, 0.010101010101010102, 0, 0, 0.006993006993006993, 0.00546448087431694, 0, 0, 0, 0.004784688995215311, 0.015789473684210527, 0, 0.02247191011235955, 0, 0, 0, 0.025, 0.012605042016806723, 0, 0, 0.0047169811320754715, 0, 0, 0.005115089514066497, 0, 0.006944444444444444, 0, 0.002347417840375587, 0.0048543689320388345, 0.0029940119760479044, 0.02247191011235955, 0.005479452054794521, 0.0043859649122807015, 0.002890173410404624, 0, 0.006211180124223602, 0, 0, 0.009950248756218905, 0, 0, 0.0034602076124567475, 0.007194244604316547, 0, 0, 0, 0, 0, 0.008064516129032258, 0, 0.008403361344537815, 0.015957446808510637, 0, 0.018518518518518517, 0.0066815144766146995, 0, 0, 0, 0.005110732538330494, 0.010309278350515464, 0.006968641114982578, 0.005, 0, 0, 0.04, 0.09090909090909091, 0.013513513513513514, 0.00851063829787234, 0, 0.005917159763313609, 0.00847457627118644, 0, 0, 0.0055248618784530384, 0, 0, 0, 0, 0, 0, 0, 0, 0.006493506493506494, 0, 0, 0, 0.0425531914893617, 0.010948905109489052, 0.020771513353115726, 0.006493506493506494, 0.004901960784313725, 0.007246376811594203, 0, 0.0196078431372549, 0.024054982817869417, 0.02830188679245283, 0.0022935779816513763, 0.005571030640668524, 0, 0.012618296529968454, 0.022408963585434174, 0.008695652173913044, 0.009966777408637873, 0, 0.003278688524590164, 0, 0.017543859649122806, 0, 0, 0.006535947712418301, 0.003861003861003861, 0, 0.02857142857142857, 0.017543859649122806, 0, 0, 0.0136986301369863, 0, 0, 0, 0.006896551724137931, 0, 0, 0, 0, 0, 0.010526315789473684, 0, 0, 0, 0, 0, 0, 0.008368200836820083, 0, 0.034482758620689655, 0, 0, 0, 0, 0.008928571428571428, 0, 0, 0, 0, 0.02040816326530612, 0.006756756756756757, 0, 0.006711409395973154, 0.005681818181818182, 0, 0, 0.005813953488372093, 0, 0.003676470588235294, 0, 0, 0.008928571428571428, 0, 0, 0.015037593984962405, 0.041666666666666664, 0.014925373134328358, 0, 0, 0, 0, 0, 0, 0.007575757575757576, 0.011049723756906077, 0, 0.00847457627118644, 0.010362694300518135, 0.01092896174863388, 0.01282051282051282, 0.002702702702702703, 0.009345794392523364, 0.009259259259259259, 0.012269938650306749, 0.003278688524590164, 0, 0, 0.0061162079510703364, 0.006462035541195477, 0.004878048780487805, 0, 0.009950248756218905, 0, 0, 0, 0, 0, 0, 0.007407407407407408, 0, 0.017857142857142856, 0.004405286343612335, 0.006097560975609756, 0.0019569471624266144, 0, 0.004405286343612335, 0, 0, 0.00819672131147541, 0, 0, 0, 0, 0.010362694300518135, 0, 0, 0.01048951048951049, 0.01639344262295082, 0, 0.006578947368421052, 0.012269938650306749, 0.004098360655737705, 0, 0, 0.023529411764705882, 0, 0, 0.0036231884057971015, 0, 0.012422360248447204, 0, 0, 0, 0.008771929824561403, 0, 0, 0, 0, 0, 0.02564102564102564, 0.012658227848101266, 0.01384083044982699, 0, 0, 0, 0, 0, 0.009216589861751152, 0, 0, 0, 0, 0.0024390243902439024, 0, 0, 0, 0, 0, 0, 0.004608294930875576, 0, 0, 0, 0, 0.005988023952095809, 0, 0, 0, 0, 0, 0.004032258064516129, 0, 0, 0, 0.004484304932735426, 0.008264462809917356, 0, 0, 0, 0.007712082262210797, 0.006060606060606061, 0.03389830508474576, 0.012345679012345678, 0, 0.007633587786259542, 0.0125, 0, 0, 0, 0, 0, 0.003048780487804878, 0, 0.010869565217391304, 0.009708737864077669, 0.011428571428571429, 0, 0.010362694300518135, 0.005703422053231939, 0.01054481546572935, 0.05454545454545454, 0.003676470588235294, 0, 0.008264462809917356, 0.00546448087431694, 0, 0.012048192771084338, 0.01092896174863388, 0.011111111111111112, 0, 0, 0.0049504950495049506, 0.020833333333333332, 0, 0, 0.004098360655737705, 0.007220216606498195, 0, 0, 0.008928571428571428, 0, 0, 0.012195121951219513, 0, 0, 0.0017605633802816902, 0.007462686567164179, 0.004424778761061947, 0.013245033112582781, 0.011235955056179775, 0.017857142857142856, 0.017241379310344827, 0.009345794392523364, 0.00980392156862745, 0, 0, 0.005813953488372093, 0.028985507246376812, 0.00390625, 0.014285714285714285, 0.008620689655172414, 0.004975124378109453, 0, 0, 0, 0.011627906976744186, 0, 0, 0, 0.003898635477582846, 0, 0, 0.008403361344537815, 0, 0, 0, 0.03636363636363636, 0.008620689655172414, 0, 0, 0, 0.006172839506172839, 0, 0, 0.018867924528301886, 0, 0.008658008658008658, 0.012658227848101266, 0, 0.006493506493506494, 0, 0, 0.00625, 0, 0, 0, 0.018867924528301886, 0.009708737864077669, 0.005361930294906166, 0, 0.004784688995215311, 0.006993006993006993, 0, 0, 0.006493506493506494, 0, 0, 0.0058997050147492625, 0, 0, 0.005050505050505051, 0, 0, 0.02702702702702703, 0, 0, 0, 0.018867924528301886, 0.029411764705882353, 0.16666666666666666, 0.023255813953488372, 0.0049261083743842365, 0.004545454545454545, 0, 0, 0, 0.004672897196261682, 0, 0, 0.009523809523809525, 0.011235955056179775, 0, 0, 0.0028169014084507044, 0, 0, 0, 0, 0, 0.005076142131979695, 0, 0.009389671361502348, 0, 0.006578947368421052, 0.0047169811320754715, 0, 0, 0, 0, 0, 0, 0.0072992700729927005, 0.00510204081632653, 0.005847953216374269, 0.015544041450777202, 0.0072992700729927005, 0.009287925696594427, 0.005050505050505051, 0.00980392156862745, 0.01652892561983471, 0, 0.011904761904761904, 0, 0.010380622837370242, 0, 0.011235955056179775, 0.011764705882352941, 0.007874015748031496, 0.01020408163265306, 0.006289308176100629, 0.008403361344537815, 0.012987012987012988, 0.02127659574468085, 0, 0, 0, 0.008174386920980926, 0, 0, 0, 0, 0, 0.008547008547008548, 0.010752688172043012, 0, 0.008771929824561403, 0.004201680672268907, 0, 0.005865102639296188, 0, 0.0036900369003690036, 0.015384615384615385, 0, 0.008849557522123894, 0, 0, 0.010752688172043012, 0.03488372093023256, 0.023529411764705882, 0.03271028037383177, 0.006369426751592357, 0, 0, 0, 0.008928571428571428, 0, 0, 0.0064516129032258064, 0, 0, 0.03571428571428571, 0, 0.007874015748031496, 0, 0, 0, 0.008620689655172414, 0, 0, 0, 0, 0, 0, 0, 0, 0.0043859649122807015, 0, 0, 0, 0.006802721088435374, 0.010869565217391304, 0, 0, 0, 0.004830917874396135, 0, 0, 0.008130081300813009, 0, 0.0026455026455026454, 0, 0.005952380952380952, 0.005747126436781609, 0, 0, 0, 0.004739336492890996, 0.0047169811320754715, 0.007575757575757576, 0.004166666666666667, 0.010752688172043012, 0, 0.008695652173913044, 0, 0, 0.005376344086021506, 0, 0, 0.03571428571428571, 0.14285714285714285, 0, 0.006369426751592357, 0.007633587786259542, 0, 0, 0.004830917874396135, 0.02040816326530612, 0.01079136690647482, 0, 0, 0, 0, 0.004975124378109453, 0.011494252873563218, 0, 0.007575757575757576, 0.045454545454545456, 0, 0, 0, 0, 0, 0, 0, 0.003194888178913738, 0.025, 0, 0, 0, 0.0023923444976076554, 0, 0, 0.005494505494505495, 0, 0, 0.005128205128205128, 0, 0, 0.006329113924050633, 0.0125, 0.008928571428571428, 0, 0, 0, 0, 0, 0, 0, 0, 0.003401360544217687, 0, 0, 0, 0.009259259259259259, 0.0091324200913242, 0.005319148936170213, 0, 0.00411522633744856, 0, 0, 0, 0, 0.004975124378109453, 0, 0.0058823529411764705, 0, 0, 0.006944444444444444, 0.005434782608695652, 0.009523809523809525, 0, 0.017543859649122806, 0.013986013986013986, 0, 0, 0, 0.005, 0, 0, 0, 0, 0, 0, 0, 0.011627906976744186, 0.006896551724137931, 0.007194244604316547, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.004629629629629629, 0, 0.016304347826086956, 0.007042253521126761, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.008771929824561403, 0, 0, 0.008547008547008548, 0, 0, 0.013986013986013986, 0.0136986301369863, 0.013793103448275862, 0, 0, 0.012987012987012988, 0, 0.00558659217877095, 0.005263157894736842, 0, 0, 0.004807692307692308, 0, 0, 0, 0.005235602094240838, 0, 0, 0.004739336492890996, 0.014705882352941176, 0, 0, 0.006756756756756757, 0, 0.010416666666666666, 0, 0.010638297872340425, 0.009433962264150943, 0, 0, 0.030303030303030304, 0.010309278350515464, 0, 0, 0, 0, 0, 0.006578947368421052, 0.009523809523809525, 0, 0.007936507936507936, 0, 0, 0.006578947368421052, 0, 0, 0, 0, 0, 0.007575757575757576, 0, 0.007633587786259542, 0.005555555555555556, 0, 0.010101010101010102, 0, 0.006993006993006993, 0.008547008547008548, 0, 0, 0.029411764705882353, 0, 0.010416666666666666, 0, 0, 0.021052631578947368, 0, 0, 0, 0, 0.01818181818181818, 0, 0, 0, 0, 0, 0, 0, 0, 0.0035335689045936395, 0.012578616352201259, 0, 0, 0, 0, 0, 0.014925373134328358, 0, 0, 0, 0, 0, 0, 0.006211180124223602, 0, 0.007352941176470588, 0.010526315789473684, 0, 0, 0, 0, 0, 0.011111111111111112, 0.013333333333333334, 0, 0, 0, 0, 0, 0, 0, 0.006230529595015576, 0, 0, 0, 0, 0, 0, 0, 0.02, 0.024390243902439025, 0, 0, 0, 0, 0, 0, 0, 0.014285714285714285, 0, 0, 0, 0.014084507042253521, 0, 0, 0, 0, 0, 0, 0, 0, 0.007662835249042145, 0, 0, 0, 0, 0.012345679012345678, 0.006666666666666667, 0.01680672268907563, 0, 0.003968253968253968, 0, 0, 0, 0, 0, 0.030303030303030304, 0, 0.030303030303030304, 0, 0.018433179723502304, 0, 0, 0, 0, 0, 0.01015228426395939, 0.020833333333333332, 0, 0.004464285714285714, 0, 0.008064516129032258, 0, 0, 0.002932551319648094, 0.003929273084479371, 0.005076142131979695, 0, 0.0058823529411764705, 0.005714285714285714, 0.011904761904761904, 0, 0, 0.006825938566552901, 0, 0, 0, 0.011363636363636364, 0.017467248908296942, 0, 0.0273972602739726, 0, 0.005649717514124294, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.010416666666666666, 0, 0, 0.016483516483516484, 0.004291845493562232, 0, 0, 0.015625, 0.0030864197530864196, 0.007142857142857143, 0, 0.008771929824561403, 0.038461538461538464, 0, 0.003861003861003861, 0.008264462809917356, 0.0031847133757961785, 0.005291005291005291, 0.011363636363636364, 0.0136986301369863, 0, 0, 0, 0.02, 0.0053475935828877, 0.010309278350515464, 0.010362694300518135, 0, 0.004424778761061947, 0.018867924528301886, 0.009124087591240875, 0, 0, 0.010416666666666666, 0.011976047904191617, 0.007042253521126761, 0.00966183574879227, 0.013513513513513514, 0, 0, 0.0058823529411764705, 0.012987012987012988, 0.02727272727272727, 0, 0, 0, 0.005847953216374269, 0, 0, 0.004807692307692308, 0, 0.01098901098901099, 0, 0, 0, 0, 0, 0, 0, 0.018518518518518517, 0.029411764705882353, 0.013245033112582781, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00909090909090909, 0, 0, 0, 0, 0, 0, 0.00684931506849315, 0, 0, 0, 0, 0, 0.008333333333333333, 0, 0 ]
0.004857
5
[ "Telomerase activity in solid transitional cell carcinoma, bladder washings, and voided urine.", "\nTelomerase activity has been detected in a wide variety of human malignancies. ", "It appears to be one of the fundamental ingredients necessary for cellular immortality. ", "We sought to determine the incidence of telomerase activity in solid transitional cell carcinoma (TCC) specimens, benign urothelium, bladder washings, and voided urine from patients with TCC identified cystoscopically compared with controls. ", "Telomerase activity was measured in 26 solid bladder cancers and 13 benign urothelial specimens using the telomere repeat amplification protocol (TRAP), a polymerase chain reaction (PCR) based assay. ", "Telomerase activity was further measured in the centrifuged cellular material obtained from the bladder washings of 26 patients with TCC and 40 with benign urologic disease found to have a normal cystoscopy. ", "All patients with hematuria were additionally evaluated with an upper tract radiographic examination and found to be free of malignancy. ", "Voided urine was likewise evaluated in 11 patients with TCC, 12 with benign urologic diseases, and 56 asymptomatic control subjects. ", "Telomerase activity was detected in 25 of 26 (96%) solid specimens, 21 of 26 (81%) bladder washings, and 6 of 11 (54%) voided urine specimens from patients with histologically confirmed TCC. ", "In the control group, 2 of 13 (15%) benign urothelial specimens and 2 of 56 (4%) voided urine specimens from the asymptomatic volunteer group demonstrated telomerase activity. ", "Of those with benign urologic disease, 16 of 40 (40%) bladder barbotage specimens and 6 of 12 (50%) voided urine specimens demonstrated telomerase activity. ", "Sensitivity and specificity of telomerase as a marker for TCC were 81% and 60%, respectively, in the bladder washings group and 54% and 50%, respectively, in voided urine. ", "These data indicate that activation of telomerase is frequent in solid TCC and appears to be a sensitive marker in bladder washings of patients with TCC. ", "We noted an unexpectedly high false positive detection rate in patients with benign urologic diseases, especially those with symptomatic benign prostatic hyperplasia. ", "An additional study of a larger number of both bladder cancer patients and those at risk is necessary to determine if telomerase activity could play a role as a diagnostic and/or surveillance marker of TCC. ", "Published by Elsevier Science Inc." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0.008264462809917356, 0.01, 0.004807692307692308, 0, 0.007518796992481203, 0.005235602094240838, 0, 0, 0.005813953488372093, 0.012987012987012988, 0, 0.004830917874396135, 0.029411764705882353 ]
0.005554
5
[ "Prognostic implication of cyclin E expression and its relationship with cyclin D1 and p27Kip1 expression on tissue microarrays of node negative breast cancer.", "\nAltered expression of cell-cycle regulators is prevalent in clinical breast cancer. ", "This study was performed to analyze the impact of cyclin E expression to the outcome of breast cancer together with cyclin D1 and p27Kip1. ", "The correlation between cyclin D1/E and p27Kip1 expression was analyzed in tissue arrays of 175 node-negative breast cancers treated by the same chemotherapy composed of fluorouracil, cyclophosphamide, and methotrexate. ", "Data from the immunohistochemical assays of three molecules were correlated and were analyzed with clinical outcome of the patients. ", "Cyclin E expression was observed in 48 (27.4%) of 175 breast carcinomas. ", "Cyclin E expression was significantly increased in young age patients and poorly differentiate tumors. ", "Expression of cyclin E was significantly increased in cyclin D1 expressing tumors (P = 0.034). ", "p27Kip1 expression was preserved above the 50% level in 87 tumors (49.7%) and was inversely correlated with cyclin E expression (P = 0.042). ", "Ki67 labeling index was significantly increased in cyclin E-expressing tumors (P = 0.033) and was inversely related with p27Kip1 expression. ", "In multivariate survival analysis, cyclin E expression was significant for the prediction of poor survival of the patients. ", "Cyclin E expression was associated with poor prognosis and intimately correlated with the expression of cyclin D1 and p27Kip1. ", "Integration of TMA technology allowed a high-throughput analysis for correlating molecular in situ findings with clinico-pathologic information." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0.012658227848101266, 0, 0.014388489208633094, 0, 0, 0, 0, 0, 0.0070921985815602835, 0, 0.008064516129032258, 0.007874015748031496, 0.006944444444444444 ]
0.004386
5
[ "Semesta Mendukung\n\nSemesta Mendukung (The Universe Supports), often abbreviated Mestakung, is a 2011 Indonesian children's film directed by John de Rantau. ", "It follows a young Madurese boy as he searches for his mother through the International Physics Olympiad.", "\n\nPlot\nMuhammad Arief (Sayef Muhammad Billah), the son of poor family in Sumenep, Madura Island, greatly enjoys science, especially physics. ", "His father, Muslat (Lukman Sardi), is a former salt farmer who became a driver after an economic downturn. ", "His mother, Salmah (Helmalia Putri), has gone abroad in search of work; the family have not heard from her, and Arief misses her. ", "Although it is difficult due to his economic situation, Arief studies physics diligently.", "\n\nArief's physics teacher Tari Hayat (Revalina S. Temat), seeing potential in him after Arief retrieves a ball from a tree with a rocket, suggests that he participate in the International Physics Olympiad in Singapore. ", "Arief agrees, but his main goal is to find his mother. ", "After the selection process in Jakarta, Arief goes to the Olympiad with fellow would-be-physicists Muhammad Thamrin (Angga Putra) and Clara Annabela (Dinda Hauw).", "\n\nAfter arriving in Singapore, the Indonesian team wins several matches. ", "However, just before the finals Arief discovers that his mother is to leave for Malaysia. ", "Although at first he decides to rush to the port to stop her, he is convinced to stay with the Olympiad team, who win the competition. ", "Arief then stops his mother from going to Malaysia, and the two return to Madura.", "\n\nProduction\nMestakung was directed by John de Rantau, best known for the Academy Award-submitted Denias Senandung Di Atas Awan (Denias, Singing on the Cloud; 2006) and Obama Anak Menteng (Obama, Child of Menteng(2009). ", "It was written by Hendrawan Wahyudianto and de Rantau; production was handled by Mizan Production and Falcon Picture, with Putut Widjanarko serving as producer.", "\n\nMestakung'''s title was derived the philosophy of physicist Yohanes Surya, who had trained Indonesia's International Physics Olympiad team; Surya taught that, when a person needed to succeed at his or her goals, the universe would work to support person. ", "He called this , which means the universe supports. ", "The events in the film are based on a true story, which occurred to the 2006 Indonesian Physics Olympiad team.", "\n\nNumerous Indonesian actors were chosen for roles, including Laura Basuki, who had won a Citra Award at the 2010 Indonesian Film Festival. ", "Surya had a cameo in the film. ", "Shooting took place over three weeks in Madura and Singapore.", "Mestakung's soundtrack was mostly handled by the Indonesian band Goliath. ", "Initially asked to record a single song, the band recorded three within a month, which were accepted by the film's producers. ", "However, a traditional Madurese song was included, as was the song \"Indonesia\", as sung by Powerslaves.", "\n \nRelease and receptionMestakung, initially scheduled for an August release, premiered on 18 October 2011 at XXI Gandaria City, South Jakarta; wide release followed on 20 October. ", "Triwik Kurniasari, writing for The Jakarta Post'', wrote that the film had inspirational ideas but suffered due to poor acting by Billah.", "\n\nReferences\nFootnotes\n\nBibliography\n\nExternal links\n\nCategory:2011 films\nCategory:Films directed by John de Rantau\nCategory:Indonesian films\nCategory:Indonesian-language films\nCategory:Films shot in Singapore" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.019230769230769232, 0.009523809523809525, 0.014184397163120567, 0.018691588785046728, 0.007692307692307693, 0, 0.0136986301369863, 0, 0.030864197530864196, 0, 0, 0.007407407407407408, 0.012345679012345678, 0.01818181818181818, 0.0125, 0.011673151750972763, 0, 0.00909090909090909, 0.007142857142857143, 0, 0, 0.013513513513513514, 0, 0, 0.0055248618784530384, 0.021897810218978103, 0.004784688995215311 ]
0.008813
5
[ "Q:\n\nHow to fire FormClosing for ownerless forms on red X exit?", "\n\nI have a small app with several forms, each of which saves their pane layout during the FormClosing event.", "\nSome forms need to remain on screen when the main form is minimized, so they're opened ownerless with form.", "Show(), as opposed to form.", "Show(this).", "\nHowever this affects FormClosing behaviour - when the user exits using the red X, the FormClosing event doesn't get fired for the ownerless forms.", "\nApplication.", "Exit() does work as needed, but cancelling the FormClosing event in the main form and calling Application.", "Exit() instead causes FormClosing to be called twice on everything other than the ownerless forms.", "\nI could probably iterate OpenForms in the FormClosing event of the main form and save anything that needs saving, but that seems a bit of a hack. ", "Is there a way to make X behave in the same way as Application.", "Exit()?", "\nThe following code demonstrates the problem:\npublic partial class Form1 : Form\n{\n public Form1()\n {\n InitializeComponent();\n\n this.", "Text = \"Main\";\n\n Form ownedForm = new Form { Text = \"Owned\" };\n ownedForm.", "FormClosing += (s, e) => { System.", "Diagnostics.", "Debug.", "WriteLine(\"FormClosing owned form\"); };\n ownedForm.", "Show(this);\n\n Form ownerlessForm = new Form { Text = \"Ownerless\" };\n ownerlessForm.", "FormClosing += (s, e) => { System.", "Diagnostics.", "Debug.", "WriteLine(\"FormClosing ownerless form\"); };\n ownerlessForm.", "Show();\n\n this.", "FormClosing += (s, e) =>\n {\n System.", "Diagnostics.", "Debug.", "WriteLine(\"FormClosing main form\");\n\n // fix below doesn't work as needed!", "\n //if (e.CloseReason == CloseReason.", "UserClosing)\n //{\n // e.Cancel = true;\n // Application.", "Exit();\n //}\n };\n }\n}\n\nA:\n\nAdd an event handler to the main form's FormClosing handler to close the ownerless forms when the main form is closed:\nownerlessForm.", "Show(); //right after this line that you already have\nFormClosing += (s, e) => ownerlessForm.", "Close(); //add this\n\nThis will ensure that they are closed gracefully, and will have their closing events run, rather than having the main thread end and have the process be torn down without letting these forms gracefully close.", "\n\n" ]
{ "pile_set_name": "StackExchange" }
[ 0, 0.009259259259259259, 0, 0, 0, 0.013605442176870748, 0, 0.009433962264150943, 0.01020408163265306, 0, 0.015873015873015872, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.041666666666666664, 0.010638297872340425, 0.0055248618784530384, 0, 0, 0 ]
0.003418
5
[ "A nationwide survey of behavioral pediatric residency training.", "\nThis survey assessed the prevalence of behavioral pediatric residency training in the U.S., the professional background of faculty, training methods utilized, curriculum content, and barriers to expansion of behavioral training. ", "Questionnaires were returned by 60% of 246 accredited pediatric residency programs; of these, 49% had a \"formal\" behavioral training program, 38% offered some training, and 13% offered none. ", "Formal programs identified 419 faculty members involved in teaching behavioral pediatrics to residents: physicians (48%), psychologists (21%), social workers (19%), nurses (8%), other (4%). ", "Mandatory training was more frequent than elective training; continuous training was more likely than block rotations to be mandatory. \"", "Inadequate funding\" and \"lack of appropriately trained faculty\" were most frequently cited as barriers to expansion of the teaching of behavioral pediatrics." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0.005235602094240838, 0, 0, 0 ]
0.000873
5
[ "Molecular phylogeny of the ghost knifefishes (Gymnotiformes: Apteronotidae).", "\nGhost knifefishes (Gymnotiformes: Apteronotidae) are weakly electric fishes that possess a high-frequency, neurogenic electric organ discharge. ", "They are found throughout the humid Neotropics from Panama to Argentina and are most diverse and abundant in the channels of large lowland rivers. ", "Apteronotidae is the most species-rich family of Neotropical electric knifefishes with 96 valid species in 15 genera. ", "We present a phylogenetic hypothesis based on molecular sequence data from three mitochondrial genes (16S, coi, cytb) and four nuclear loci (glyt, rag2, ryr3, zic1). ", "Our analysis includes sequence data for 203 samples in 54 species and 14 genera, making it the most densely-sampled and data-rich phylogeny of the Apteronotidae to date. ", "Our results corroborate previous phylogenetic hypotheses with the placement of Orthosternarchus + Sternarchorhamphus sister to all other apteronotids, a non-monophyletic Apterontotus, and a sister relationship between Sternarchorhynchus and the Navajini. ", "We also report several novel relationships, particularly within the Navajini and among several species of the nominal genus Apteronotus not previously included in phylogenetic analyses. ", "We additionally provide a new classification for the family." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0.00847457627118644, 0.012048192771084338, 0.0058823529411764705, 0.00784313725490196, 0.005376344086021506, 0 ]
0.004403
5
[ "Charles Babbage's defence of the belief in divine miracles\n\nCharles Babbage (1791 – 1871) was an English mathematician, philosopher, inventor and mechanical engineer. ", "Babbage originated the concept of a digital programmable computer and is considered to be the \"father of the computer\".", "\n\nCharles Babbage\n\nIn his autobiography \"Passages from the Life of a Philosopher\", Charles Babbage wrote a whole chapter on the topic of religion, where he identified three sources of divine knowledge:\n\nA priori or mystical experience\n\nFrom Revelation\n\nFrom the examination of the works of the Creator\n\nBabbage also wrote a defence of the belief in divine miracles. ", "Babbage advocated for the belief of divine agency, stating \"we must not measure the credibility or incredibility of an event by the narrow sphere of our own experience, nor forget that there is a Divine energy which overrides what we familiarly call the laws of nature.\" ", "He alluded to the limits of human experience, expressing: \"all that we see in a miracle is an effect which is new to our observation, and whose cause is concealed. ", "The cause may be beyond the sphere of our observation, and would be thus beyond the familiar sphere of nature; but this does not make the event a violation of any law of nature. ", "The limits of man's observation lie within very narrow boundaries, and it would be arrogance to suppose that the reach of man's power is to form the limits of the natural world.\"" ]
{ "pile_set_name": "Pile-CC" }
[ 0.011976047904191617, 0, 0.00819672131147541, 0, 0, 0, 0 ]
0.002882
5
[ "[The genetic differences in the microsomal activity of rats].", "\nThe lipid composition and synthesis rate in liver microsomes of linear and hybrid rats are investigated. ", "It is found that microsomes of hybrid rats had less amount and synthesis rate of phosphatidylcholine and phosphatidylethanolamine as well as nonesterified fatty acids. ", "Linear rats differed from each other in phosphatidylinositol exchange rate. ", "These genetic peculiarities of the microsomal lipid composition and synthesis rate can explain the experimentally determined absence of correlation between glucose-6-phosphatase activity and lipid maintenance in membranes of different genetic forms." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0 ]
0
5
[ "Stash Report\n\nI’ve still used more fabric than I’ve brought into the house year-to-date, but the difference has shrunk considerably. ", "Last week I picked up the backings for two of the “7 by July” quilts, and since they were wide backings I did a bit of math to figure out the 42/45″ wide yardage equivalence. ", "The only fabric used was the backing for the borders of the Dresden Plate quilt which I have finished quilting.", "\n\nFabric Added this Week: 14.4 yards\nFabric Added to Date: 33.094 yards\n\nFabric Used this Week: 2.16 yards\nFabric Used to Date: 43.791 yards\n\nNet Used for 2011: 10.667 yards\n\nCheck out how others are doing by following the links over at Patchwork Times." ]
{ "pile_set_name": "Pile-CC" }
[ 0, 0, 0, 0.003952569169960474 ]
0.000988
5
[ "Kemeri 1937 chess tournament\n\nKemeri 1937 was a chess tournament held in the resort town Ķemeri, Latvia, at the Gulf of Riga from 16 June to 8 July 1937. ", "There were three co-winners: Samuel Reshevsky, Salo Flohr and Vladimir Petrov. ", "Petrovs was one of the world's leading chess players in the late 1930s (e.g., the 8th Chess Olympiad at Buenos Aires 1939), but due to the political tragedies that befell the Baltic states in World War II, he became a victim of the Soviet oppression and perished in Kotlas (Russia) gulag in 1943.", "\n\nThe final standings and crosstable:\n\nReferences\n\nExternal links\nKemeri 1937 International Tournament\n\nCategory:Sport in Jūrmala\nCategory:Chess competitions\nCategory:Chess in Latvia\nCategory:1937 in chess\nCategory:1937 in Latvian sport" ]
{ "pile_set_name": "Wikipedia (en)" }
[ 0.006493506493506494, 0.0379746835443038, 0, 0.00423728813559322 ]
0.012176
5
[ "[Surgery for emphysematous giant bullae].", "\nWe address 3 important keys to obtain successful outcomes in surgery for emphysematous giant bullae. ", "It is the 1st step to select patients who might benefit from bullectomy based on functional imaging. ", "The chest computed tomography (CT) and pulmonary perfusion scintigram provide information regarding with pulmonary vascular beds which could be recruited by bullectomy. ", "In addition, dynamic-magnetic resonance imaging (MRI) during breathing can show a patient with paradoxical inflation of giant bulla during expiration, which means impairment of ventilation of the adjacent normal parenchyma, and is a promising sign for successful outcome of bullectomy. ", "Second, it should be emphasized to perform a proper procedure in bullectomy. ", "If a giant bulla has a wide bottom, it should be recommended to open the bulla and to plicate it by sutures without injury of vessels on the bottom of the bulla rather than simple bullectomy with staples. ", "Finally, it is important to keep inflated lung avoiding atelectasis following operation by minimum pressure of suction. ", "We show here sequential bullectomies on a 41-year-old male with chronic obstructive pulmonary disease (COPD) GOLD IV due to bilateral giant bullae and poor vascular reserve, and address our strategy described above." ]
{ "pile_set_name": "PubMed Abstracts" }
[ 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
0
5